A Rails plugin is either an extension or a modification of the core framework.
Questions tagged [ruby-on-rails-plugins]
714 questions
0
votes
1 answer
Charge user per request - rails application
I'm working on a project that aims to charge user by request. He will have an account, and monthly a receipt should be sent to him describing how much of the service he used on the month. Is there some gem or documentaion about this?
My concern is…

João Daniel
- 8,696
- 11
- 41
- 65
0
votes
2 answers
Authlogic and Namespace in Rails
Does anyone have an example of setting up Authlogic with a namespace in Rails? I have an "admin" namespace, which contains many "admin" related controllers (products, categories, etc.).
map.namespace :admin do |admin|
admin.resources :products,…

Intelekshual
- 7,444
- 1
- 21
- 28
0
votes
1 answer
Rails Nested resource access problem in resource_controller
I using the Rails resource_controller plugin. I have a ReleasesController, which is nested within a UsersController and a ProjectsController.
Resource_controller fails when it attempts to pull the release from User, but succeeds from Project. The…

dr.
- 247
- 1
- 5
- 13
0
votes
3 answers
How to find and display a group of objects with a specific tag using acts as taggable (redux)?
I want to display a list of articles in my tag's show view. I'm using the acts as taggable redux plugin in a Rails 2.3.2 and SQLite3 app. I've got as far as the basic example takes me, assigning tags and then displaying a list of them with the…

Nick
- 35
- 6
0
votes
2 answers
Is rails reporting its own action as deprecated?
Sorry if it is a dumb question, but the issue is quite straight forward. If I do,
$ rails new testproj
$ cd testporj
$ rails plugin install git://github.com/technoweenie/attachment_fu.git
Which should just create a empty proj and install…

filippo
- 5,583
- 13
- 50
- 72
-1
votes
4 answers
The perfect way to upload file in Rails 3.1
I'm new in Ruby/Rails, so, my question: what is the perfect way to upload file and save filename in database with rails? Are there any Gem? Or maybe there are good build-in feature?

Mark Pegasov
- 5,109
- 9
- 26
- 30
-1
votes
1 answer
Custom RBAC with CanCan (or other plugin?)
i'm looking for a customized RBAC solution for an application i am making. The main difference than casual CanCan would be that the RBAC is not relying on a User model, but rather on some other models, totally custom.
For instance, a user belongs to…

Spyros
- 46,820
- 25
- 86
- 129
-1
votes
1 answer
Render layout from rails plugin to all pages
I am using rails2.3 for my client.I want to render a layout to all of the pages in the application from plugin.How can i made this thing.I need not change any thing in core application.How can i render layout from plugin.
Thank you

Rajesh M
- 1
- 5
-2
votes
1 answer
facebook link recognizer for rails?
I am developing an app that allows users to post to walls/groups very much like facebook or a classic forum. I really like the way you can post a link on facebook and the link will be recognized as a video, pic, or other media and will automatically…

flyingarmadillo
- 2,131
- 5
- 21
- 37