Tagged Questions

A Rails plugin is either an extension or a modification of the core framework.

learn more… | top users | synonyms

26
votes
43answers
4k views

Most useful Rails plugins, Ruby libraries and Ruby gems?

I have seen many sites which provide the whole list of Rails plugins, Ruby libraries and Ruby gems, but we hardly use few of them and some may not suit our requirement and we spend a whole lot of time ...
25
votes
3answers
3k views

Rails 3.1: Engine vs. Mountable App

Can someone help me understand the differences between a Rails Engine and a Mountable app? In Rails 3.1, you can create either one with the "rails new plugin ___" command. rails plugin new forum ...
23
votes
4answers
1k views

Rails Admin vs. ActiveAdmin

I've been looking into some rails admin plugins and came across these two: https://github.com/gregbell/active_admin https://github.com/sferik/rails_admin Any suggestions as to which one to go with. ...
23
votes
13answers
10k views

Exception Notification Gem and Rails 3

I'm trying to get this up and running, but I see "uninitialized constant ExceptionNotifier" whenever I start my server. http://github.com/rails/exception_notification In my Gemfile I have gem ...
23
votes
5answers
8k views

Is Cassandra production ready for Ruby on Rails?

I'm working on a project that is considering using Cassandra as a database. We would like to eventually migrate to Cassandra even if we use MySQL to start with, given its scalability. I know that ...
18
votes
4answers
5k views

Ruby Geolocation Gem/Plugins

What are the available (best) ruby IP-based geolocation gem/plugins? How do they compare to one another in terms of functionality, performance and ease of use (e.g. do they interact with a web ...
16
votes
4answers
10k views

Paperclip image uploads in Rails - Paperclip::CommandNotFoundError

I'm using paperclip to handle image uploads to rails. it worked fine on my dev OSX machine, but now on my web server I get this error: [paperclip] /Users/marky/bin/identify '-format' '%wx%h' ...
14
votes
6answers
3k views

A copy of ApplicationController has been removed from the module tree but is still active!

Whenever two concurrent HTTP requests go to my Rails app, the second always returns the following error: A copy of ApplicationController has been removed from the module tree but is still active! ...
14
votes
11answers
1k views

Rails Plugins

What are some of your favorite rails plugins that you would consider "must haves"? This entry lists some of my favorites that I use in a large majority of my rails applications: My favorite rails ...
12
votes
2answers
3k views

Warning while installing the rails plugin

I am getting the following warning while installing any plugin in my rails application. /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/agnostics.rb:7: ...
12
votes
5answers
7k views

Best Rails Tagging Plugin/Gem

what plugin or gem do you recommened for tagging? There are many of them, acts_as_taggable, acts_as_taggable_on_steroids, acts_as_taggable_on,... What do you say?
10
votes
2answers
1k views

Mahout Plugin for ruby on rails

I want to use Apache Mahout in my project on Ruby on Rails for implementing recommendations and collaborative filtering. In Particular my requirements are: suggesting related tags. suggesting ...
9
votes
4answers
750 views

How can I force my plugin to reload with each request?

As I understand it, plugins are not reloaded in Rails with each request in development mode. Which makes sense, as generally you add plugins to your app and it's the app you're developing. But if you ...
9
votes
3answers
3k views

Building a ruby gem for Rails applications

As a Rails developer I feel a bit stupid asking this question but hopefully I will learn something new and someone can put me out of my misery! In my rails applications I use (other peoples) gems all ...
9
votes
5answers
9k views

Supporting Mobile Devices in Ruby on Rails

What is the best way to develop a rails application that has special views for different mobile devices? Basically I'm looking for something like this ASP.NET MVC solution: ...
8
votes
2answers
364 views

Error generating test routes for Rails 3 plugin?

I'm trying to develop tests for plugin "foobar" that modifies some of the standard Rails helpers. In vendor/plugins/foobar/test/foobar_test.rb, I have the following: # create the test model class ...
7
votes
1answer
293 views

How do I convert an existing Rails 3 Application into an Engine?

How can I convert the Forum application I've been developing into a Rails Engine, so that it may be embedded inside other applications? What should I add, keep, or remove? Should I offer a way to ...
7
votes
7answers
939 views

Which Ruby on Rails admin plugin do you use and why? What are the pros and cons of different admin gems?

We need a dead simple, but secure, admin plugin for Rails. We're on 2.x but are considering a port to 3.x. Which admin plugin do you use, and why? What are the pros and cons of others? There are a ...
7
votes
3answers
3k views

rails flash graph/chart plugin

I am looking for a rails flash graph/chart plugin, for drawing bar chart, stacked bar chart, pie chart, stacked area chart, and line graphs which support the below criteria, 1. Customizable tool ...
6
votes
3answers
2k views

Devise within namespace

I'm trying to split my rails project in a front-end for regular users and a back-end for admins. Therefore i have created a namespace 'admin' so that i can easily control admin specific controller ...
6
votes
2answers
786 views

How do i test routes in Rails 3 plugins?

I've tried to use the recommended way (from the Rails Guides) to test routes generated in plugins, but the test keeps failing. What's odd is that if I reload the routes AFTER creating the route (or ...
6
votes
2answers
860 views

Creating a Ruby on Rails 3 gem with a generator (incl. namespace)

I am trying to create a gem with a generator for Rails 3 (beta 4). I followed these instructions, and but I couldn't get it running. The problem is that when I am defining a module in the generator ...
6
votes
8answers
6k views

Rails3 and Paperclip

I have migrated my application from rails 2.3 to rails3 and i have a problem with paperclip. I saw there was a branch for rails3 on paperclip git. So I added "gem 'paperclip', :git => ...
6
votes
3answers
2k views

Problem with require rack/openid in Rails 3 [native require work properly]

I install plugin open_id_authentication and have this error: /usr/lib/ruby/gems/1.9.1/gems/activesupport-3.0.0.beta/lib/active_support/dependencies.rb:167:in `require': no such file to load -- ...
5
votes
2answers
226 views

What's a Rails plugin, or Ruby gem, to automatically fix English grammar?

Facebook just re-launched Comments, with a automatic grammar fixing feature. What does the grammar filter do? Adds punctuation (e.g. periods at the end of sentences) Trims extra whitespace Auto ...
5
votes
2answers
618 views

Get a value of object field inside fields_for loop

i Have a scenario, i need to check the value of the object property in the fields_for loop. <%= f.semantic_fields_for :review_details do |rd| %> <%= rd.input :review_criteria_id, ...
5
votes
2answers
2k views

OmniAuth + Pulling Tweets, FB Places, etc

I'm using OmniAuth + Devise to allow users to register using Facebook/Twitter/Gowalla/etc attached to normal user accounts. Now when a user logs in using any of these, or their account, all their ...
5
votes
3answers
4k views

Rails Devise: get object of the currently logged in user?

I've recently installed Devise on a rails application, and I am wondering if it is possible to get an instance of the currently logged in user in either one of the other models or controllers, and if ...
5
votes
5answers
404 views

“Like”, “Dislike” plugin for rails

Is there any "like" , "dislike" plugin for rails... I went through rating plugins... but all of them were 5 star rating plugins...
5
votes
3answers
2k views

Installing and using acts-as-taggable-on

This is going to be a really dumb question, I just know it, but I'm going to ask anyways because it's driving me crazy. How do I get acts-as-taggable-on to work? I installed it as a gem with gem ...
5
votes
2answers
2k views

Problem running Thinking Sphinx with Rails 2.3.5

I just installed Sphinx (distro: archlinux) downloading the source. Then I installed "Thinking Sphinx" plugin for Rails. I followed the official page setup and this Screencast from Ryan Bates, but ...
5
votes
2answers
783 views

Best way to implement Categories and Subcategories with flexible depth in Rails?

I have a Category and Subcategory models in my project. I would like to have many sub-levels in a flexible way. I thought making a self referential "parent" foreign key but I'm not quite sure how to ...
5
votes
2answers
814 views

How to pre-process CSV data for FasterCSV?

We're having a significant number of problems creating a bulk upload function for our little app. We're using the FasterCSV gem to upload data to a MySQL database but he Faster CSV is so twitchy and ...
5
votes
2answers
942 views

acts_as_list with has_and_belongs_to_many relationship

I've found an old plugin called acts_as_habtm_list - but it's for Rails 1.0.0. Is this functionality built in acts_as_list now? I can't seem to find any information on it. Basically, I have an ...
5
votes
3answers
555 views

RoR && “coming soon” page

I am looking for a simple way to implement simple "coming soon" (pre-launch) page for my project on Ruby on Rails. User should be able to leave an email in order to be notified when project is ...
5
votes
5answers
396 views

What are alternatives to find_by_sql for computationaly-heavy queries?

Our company loves reports that calculate obscure metrics--metrics that cannot be calculated with ActiveRecord's finders (except find_by_sql) and where ruport's ruby-based capabilities are just too ...
5
votes
3answers
1k views

How to make model IDs in Rails unpredictable and random

I'm writing a rails app that, by its nature, CANNOT require users to register, and thus cannot use authentication as the usual means to protect records. (I know, I know...) User information here is ...
5
votes
8answers
4k views

Logout with http basic authentication and restful_authentication plugin

I have the restful_authentication plugin installed in a rails app, with a sessions_controller that has a destroy method like this: def destroy self.current_user.forget_me if logged_in? ...
5
votes
6answers
427 views

What Rails plugins would you like to see?

What behavior have you had to implement in your Rails applications that you feel could exist nicely as a plugin? What plugin functionality have you searched for in the past but couldn't find? What ...
4
votes
2answers
449 views

Rails 3.1 Mountable Engines : How to use/template it inside another application?

Let's say I created a mountable engine called 'Soho' that has a controller for 'Users'. I can go to /users/1 to see my user with ID 1. Inside 'Soho', I have a application.html.erb for layout. Now ...
4
votes
1answer
222 views

Differences between railties and engines in Ruby On Rails 3

I read a few documents on these arguments, but I did not understand clearly what they are, what are the differences between them and if one of them fits my needs. I need to write a piece of ...
4
votes
2answers
414 views

How to override Rails app routes from an engine?

I have a Rails app that I am trying to integrate a Rails engine in to. The host app has some catch all routes: # magic urls match '/' => 'admin/rendering#show' match '*path/edit' => ...
4
votes
2answers
202 views

Rails Generator: generate files based on already existing rails files

I wanted to make a generator that created files (and directories, etc...) based on already existing files in the app (for instance, the views or controllers). So if we had views set up like this -app ...
4
votes
1answer
632 views

Order Solr/sunspot search results by geo location

I'd like to be able to order my search results by score and location. Each user in the DB has lat/lot and I am currently indexing: location :coordinates do Sunspot::Util::Coordinates.new latlon[0], ...
4
votes
1answer
319 views

Rails 3: Including a plugin inside an engine

I know it sounds kinda nuts, but I'm building an engine that will power and tie several applications, and since all applications will use a given plugin, I was wondering whether I could just put the ...
4
votes
2answers
329 views

Rails 3: Creating app with internal plugin system

I want to create an application in Rails with plugin system. Potential user should be able to upload (or better install from repository) a plugin and install it enabling my application to do something ...
4
votes
1answer
192 views

Does acts-as-taggable-on work on heroku?

I have a question: does the acts-as-taggable-on gem work on Heroku? I'been trying but it doesn't seem to work. In my development machine works okay. I'm wondering if it's maybe because Heroku uses ...
4
votes
1answer
368 views

Acts-as-taggable-on - Trouble putting all of the pieces together

I'm having a heck of a time getting acts-as-taggable-on working. I am new to Ruby/RoR, and I feel that sometimes these plugins (although great) lack the very basic implementation instructions for ...
4
votes
2answers
1k views

Rails3 dynamic_form plugin not recognized?

Using Ruby 1.9.2 and Rails 3 - When attempting to use <%= error_messages_for 'story' %> I get this error: DEPRECATION WARNING: error_messages_for was removed from Rails and is now available as ...
4
votes
3answers
321 views

How to get Capybara to see Javascript in plugin directory when creating plugins?

We're developing a plugin for rails, and I've got Cucumber working with Capybara wonderfully. BUT, when developing, I've been (erroneously, I guess) putting the Javascript files in the parent test ...

1 2 3 4 5 14