Reputation: 2237
I am creating an app, and want to create a specialized gem for it, because not all deployments of the app require the features that are going to be tucked in the gem, the feature being gemified will have its own MVC's so its more like a detachable small Rails app.
For the sake of explaining, say its a blog application, the blog applications core feature obviously is to be a blog.
I would like to add a newsletter feature to this app. which would need
Ideally I would like to be able to add a specialized gem 'blog_newsletter' to the blog app, install, and would be able to access to the subscription sign up page, write one and send newsletters.
Is there a gem that I could look at for reference? or some tutorial? I can find tutorials and examples for normal gems, but not ones for this.
Upvotes: 0
Views: 103