Tagged Questions
1
vote
2answers
60 views
Confused about gems/plugins and how I would add functionality to a Rails project
So I am looking to make some changes to a rails project (https://github.com/fatfreecrm/fat_free_crm).
So far the added functionality has come from plugins written for it. But it seems plugins are ...
0
votes
1answer
351 views
how to generate pdf file using prawn in rails 3
Right now i am using rails 3.0.0 version.i already installed prawn gem.please tell me.how to generate pdf file in rails code and how to save that pdf file inside the public folder.
0
votes
1answer
160 views
Rail Devise creat own sign_in and sign_out actions
I have the following problems with dives in rails.
All requests and response are JSON
After I sign in /partners/sign_in I get the following response:
HTTP/1.1 200 OK
{"success":true}
And ...
1
vote
1answer
489 views
what gem/method to use to generate PDF's from static hosted pages using thoughtbot high-voltage
I have a static set of help pages that I serve in a Rails 3.2 application using Thoughbots high-voltage gem. I'm just using this in a 'vanilla' way, without serving up the html pages via the ...
0
votes
2answers
377 views
How to keep log of user actions in a Rails 3 app?
I want to keep automatically track of user's actions in my rails 3 app.
I mean, when a user buy a stuff or delete a record, I want to have something like this:
| User | Action | Model | IP | ...
5
votes
2answers
529 views
How to include a controller with a Ruby on Rails gem?
I'm trying to contribute to an open source project and I need a controller to handle a couple of forms that need to be submitted in.
I created these controllers inside a directory inside the gem ...
0
votes
1answer
377 views
Client side validation for rails 3.1.X
The normal client_side_validation gem does not work with rails 3.1 so i would like to ask if anybody knows any gem that works like the client_side_validation gem in rails 3.1 and can be compatible ...
1
vote
0answers
127 views
Error in Rails Best Practices
I have installed RailsBestPractices by gem install rails_best_practices and then I went to a Rails project home directory, when I want to execute it I get this:
$ rails_best_practices -g
Invalid ...
2
votes
3answers
195 views
Which method should I use to create my first open source Ruby Gem with Rails 3.1?
Should I use the new Rails 3.1 rails plugin new command, jeweler or bundler to create my first Ruby on Rails Gem? Which tutorials would you recommend to help me get started with writing open source ...
0
votes
1answer
31 views
How do I easily set devise in ruby on rails 3 to email forgotten password information?
Is there a quick way to do this? I've never used mail in rails before.
Isn't this all set up in devise leaving me a small modification to make to make it work?
Thanks in advance
3
votes
2answers
71 views
Is Devise fully compatible with ruby on rails 3.1? It seems to be working but several files are missing
I can't seem to find certain files .. e.g. files for validation (i'm aware we can override this anyway). Where is the devise controller located etc?
Would appreciate some advice on this.
Thanks
5
votes
1answer
950 views
Accessing a model from a Rails 3.1 Engine
I have been wrestling with this for the last day and it's driving me NUTS!
As an learning exercise I decided that I would package up some of my code into a Rails Gem. This code has a controller ...
1
vote
1answer
124 views
Rails site searching an awful lot of directories for files when starting up?
We were experiencing some intermittent slowness of various Rails sites on our server -- Apache 2, Passenger, REE 1.8.7, various Rails versions (mostly 2.3.11). Had a fellow come in and look around to ...
1
vote
2answers
64 views
Working on a new project, is it wise to continue working on ruby on rails 3.0 or start working on 3.1?
Working on a new project, is it wise to continue working on ruby on rails 3.0 or start working on 3.1?
This question came to my mind when I realised how deep I was getting in my current project. ...
0
votes
3answers
120 views
In ruby on rails 3 is a database only accessible from a user_controller?
Is it possible to pull a user object from any controller? For me it seems to only work in my users controller.
I'm trying to render a form that a user can use to update the details they signed up to ...
0
votes
1answer
166 views
Organizing the view directory in ruby on rails 3
I have a pages controller and my pages view directory.
Say I have a settings page that when visited displays a few links e.g. privacy, notifications, etc.
When each link is click the content of the ...
0
votes
1answer
248 views
Problems updating Paperclip from plugin to gem
I am apparently having a huge problem switching from the plugin version of Paperclip to the gem version in my app. It's been my impression that there should be no difference whatsoever between a ...
1
vote
1answer
339 views
Rails 3 - Passing Parameter into search Model for Nested Searching
I am using a nested search resource in my Rails 3 Application where I am following Ryan Bates Railscast on Advanced Searching. The problem Arises however when I call Will_Paginate on my Search Model ...
1
vote
1answer
32 views
Database help trying to get Functions from a group through users
I need to check whether a USER is a part of a group which has functions which give them access to a usermanagement page.. what i current have is
def user_managment
# If they are in group 1 ...
2
votes
1answer
541 views
I'm using RVM, what is the difference between using bundle install and rvm bundle install?
I would like to know the difference?
I can run both and they install but what is the actual difference?
I'm doing a tutorial/screencast by michael hart and he uses bundle install, how does this ...
0
votes
2answers
644 views
Combine 3 select fields and validate as one in my User model in ruby on rails 3
Ok I have 3 select boxes for selecting date of birth.
I have constants setup in my User model to provide months, years etc..
Anyway I can successfully validate these select boxes separately.
What I ...
1
vote
1answer
596 views
How to easily validate date select boxes in ruby on rails 3?
validates_presence_of doesn't work on my date field. Is there a simple way to check that user has selected a date (a birthday, for instance)?
I'm using blank values of "Day:", "Month:", and "Year:" ...
2
votes
1answer
445 views
Rails 3 - differences between Engines and Plugins
Unfortunately official guide for creating Rails plugins is outdated: http://guides.rubyonrails.org/plugins.html and I didn't find any good tutorial for creating engines only this code: ...
0
votes
1answer
140 views
Running before filter in plugin. Is there any other way?
I am writing my first plugin, and in that plugin, I need to run a method for some controller/action pairs. For this plugin the configuration yml looks like this -
track1:
start_action: "home", ...
0
votes
2answers
254 views
Are there any application/frameworks/gems/plugins for making a Webshop in Ruby on Rails?
I need to make a very basic international webshop(2 different kind of products) Paying online, basket etc etc.
I am wondering if there are any gems/plugins to help me to make a webshop very very ...
9
votes
8answers
2k 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 ...
2
votes
3answers
419 views
Role based security mechanism for attributes in Rails
I'm looking for a plugin that provides a role based authorization mechanism for securing read/write access to attributes. I'm picturing something along the lines of declarative_authorization for ...
6
votes
3answers
495 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 ...
2
votes
2answers
800 views
How to get the list of all engines in Rails 3 app
According to Rails engines extending functionality in Rails 2.x one could do
Rails::Initializer.new(Rails.configuration).plugin_loader.engines
This code is not working in Rails 3
...
4
votes
2answers
2k views
Any good Rails example/framework for sorting, filtering, pagination with Ajax
Is there any open source (or example) code for Ruby on Rails which can filter, sort, and paginate a certain model? Also, it would be great if the results could come back via Ajax. A good example of ...
0
votes
2answers
162 views
ruby on rails id not appearing in my model
I'm trying to add basic id number to a title slug
here is my model:
class Post < ActiveRecord::Base
before_save :title_to_slug
def title_to_slug
self.title_slug = "#{id}-" + ...
2
votes
2answers
156 views
Searchlogic: Strange behaviour when combining scopes with OR
I'm currently implementing a search form in our users database. I would like to search by id , by login or by email.
Naturally, I think that the best aproach is to combine scopes and simplify the ...
2
votes
3answers
648 views
Rails - how to use a plugin from github (how to install, utilize, etc)
I'm trying to install a couple of different plugins for my rails 3 app. I cd to '/vendor/plugins/', then type git clone the_git_src_url.
I see the files in the /vendor/plugins/ directory. However ...
0
votes
1answer
72 views
How to validate if keyword matched is highlighed or not in Ruby and Rails
I am writing a testing script using Ruby and Rails. I have to validate whether proper keyword is highlighted or not. How do i do in rub. For eg. "confidential" is my keyword and want to validate ...
0
votes
1answer
91 views
Rails 3: Using a gem as my main app
I want to use the code of a gem as my main application code instead of just installing it with "bundle install".
How can I create an entire rails app based on a gem and using that gem as my app?
...
1
vote
1answer
136 views
Railties - When to use
After reading some posts about the railties, I've didn't understand if i should only create railsties for gem/plugins that direct interfere with the rails initialization (e.g. create a generator, ...
0
votes
1answer
482 views
Getting gcal4ruby gem to work
I'm trying to create a RoR web application that allows people to connect to their accounts to google calendar.
I found a gem called gcal4ruby that seemed to do the right things based on looking at ...
3
votes
2answers
4k views
generating excel in rails
I am trying to create an excel sheet in ruby on rails. So I used the plugin Rexcel. When I am running the application I am getting the following error.
uninitialized constant ...
2
votes
1answer
245 views
Rails Document Conversion Suggestion
Hi I am currently learning rails, day to day i get more attached. I would like to use Rails to build a Web app with similar functionality like http://www.scribd.com/ or docstoc . What ...
1
vote
1answer
40 views
Switching from plugin to gem — issues?
What, if any, issues can you expect to encounter if you replace plugin with a gem version? For ex, paperclip plugin to paperclip gem.
0
votes
2answers
368 views
Rails: Implementing a search form for compound filtering
I have a model containing products. I would like to create a search form to allow users to apply compound filters to products as required. For example:
Products with a price of between '10' (text ...
0
votes
1answer
386 views
In Rails, having a Gem extending all its methods to application controller, is it a good practice?
Is it actually common practice to extend all methods of a Gem into the application controller in Rails?
Because it seems that Facebooker gem doesn't that, and there is no telling whether the method ...
2
votes
2answers
211 views
In Rails, if not using Bundler, what is the most preferred way of freezing a gem into the project?
Our project is Rails 2.2.2, maybe it can't use Bundler? (or maybe for some other reasons, Bundler cannot be used)
Then in that case, what is the most preferred way of freezing the gems into the ...
0
votes
1answer
173 views
In Rails, can “script/plugin install ___” install things from rubygems.org?
If for some reason, the project cannot use bundler and gem install, we can use
script/plugin install git://github/<author name>/ ... /foo.git
but what if it is not on github and for sure it ...
0
votes
2answers
43 views
In Rails, if “gem install ___” installs 6 gems total, will installing as plugin require installing the other 5 gems manually?
If installing a gem using
gem install ______
actually install 6 gems, because of the dependencies, then if the gem is installed as plugin by
script/plugin install git://github.com/author/____.git
...
0
votes
2answers
50 views
In Rails, what is the difference between installing a gem, and then rake gems:freeze into the vendor folder vs installing it as a plugin?
Both methods put the gem into the project's folder to be a self-contained project. Is there advantage / disadvantage of these methods or one better than the other method?
(the project is a Rails 2.2 ...
4
votes
1answer
1k views
gems/plugins for affiliate system?
Do you remember any gems/plugins out there to support an affiliate (referral, partner) like system?
e.g the 37signals affiliate program
Any help/links would be appreciated.
3
votes
3answers
380 views
In Ruby on Rails, what's the difference between installing something as a gem or as a plugin?
On http://github.com/collectiveidea/delayed_job
it says:
To install as a gem, add the following to config/environment.rb:
config.gem 'delayed_job'
Run rake gems:install
versus
To ...
1
vote
1answer
615 views
Email client within a Rails applicaton
I need my application to have a module with email functionality.
This will have all the functionality of an email client. Each user will
have an inbox, outbox, sent folder, custom folders, sub ...
2
votes
1answer
91 views
Ruby Debugging Open Source Libraries
I would like to debug and possibly contribute to some open source gems but am fairly new to Ruby and Rails. What is the best way to go in and start setting breakpoints, etc?
Right now I just use ...


