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

learn more… | top users | synonyms

1
vote
1answer
20 views

What is the backport of Rails 3 style finders (.where) to Rails 2?

I know I've heard of a library that provides Rails 3 style finders (.where) to earlier versions of Rails, but web search is failing me. I've got a 2.3 project that needs a new feature, and I'd rather ...
0
votes
0answers
33 views

file_column as nested attribute in rails

I have Product Model and It can have multiple images.So I have Created another Model ProductsImages.Code for both of these are: Product: class Product < ActiveRecord::Base has_many ...
1
vote
1answer
71 views

Could not able start rails server when upgrading from 3.0.7 to 3.2.11

I am using ruby 1.8.7 and tried to upgrade the rails version from 3.0.7 to 3.2.11 for the existing application. I have installed all the relative gems and bundle install is also complete but when I ...
0
votes
1answer
72 views

How can I create a concern in a Rails engine?

I'm trying to create a concern inside an engine in order to add/override this functions in the main application which is going to mount this engine. The problem is that I have had problems including ...
1
vote
2answers
51 views

How to persist a gem model instance?

I have a model defined in a gem (Google::APIClient.new) and I've created an instance of that gem in my controller. I want to share the instance across controller actions per each user so I need to ...
-1
votes
2answers
83 views

Ruby on Rails Client Account System [closed]

I appreciate any help in advance. I am trying to make a ruby on rails website for my dad's business. Basically, what I have so far is a simple set up that has 4 models. The first model is the ...
0
votes
1answer
202 views

Allow AJAX Through Devise (Rails)

I've just added and configured the devise gem. It's working great except for blocking my form's autosave AJAX calls. At the top of my controller, I have: before_filter :authenticate_user! My AJAX ...
0
votes
2answers
123 views

How do I add an index column to Datatable?

I want to add a row number for each row in my data table. I am using plugin from http://datatables.net The page which tells how to add the index is ...
0
votes
1answer
37 views

How can I make my plugins work in a location other than “vendor” in Rails 3.2.8?

I followed some instructions, which I'm unable to locate again, to move my plugins to the "lib" directory. So I have this structure now: /lib /lib/plugins /lib/plugins/plugin1 ...
0
votes
1answer
35 views

How to configure the name in the MIT License when using rails plugin new generator

When I run rails plugin new my_engine, one of the files generated is MIT-LICENSE. The top line of this file is Copyright 2012 YOURNAME, which means that developers have to remember one additional ...
1
vote
1answer
87 views

Generating models and migrations for an engine

So I'm working on a new project that seems like a great choice for using the new Engine functionality. It's as engines say, its own little app, w/ its own views and controllers and models. Here's ...
0
votes
1answer
66 views

Ruby on Rails: 'rails generate plugin' error on rspec

I've been self-learning developing rails plugin. One referenced tutorial I'm using is here. Unfortunately, it seemed I got stuck since the first step when I run "rails generate plugin. It's returning ...
0
votes
1answer
69 views

How to install database schema from a Rails 3 plugin in another plugin

I'm writing a Rails 3 plugin that uses another Rails 3 plugin that I recently wrote. Let's call them July and August. So in August's gemspec, I add the line: s.add_dependency "july", "~> 0.0.1" ...
0
votes
2answers
92 views

rails plugin isn't installing

I am trying to install restful_authentication plugin use following git... git://github.com/Satish/restful-authentication.git and i am trying to install using following command... ...
4
votes
2answers
368 views

Dependency included in gemspec not added to asset pipeline in rails engine

I'm writing a rails engine that has some dependencies. I've specified the dependencies in the gemspec and the engine is finding them when I run bundle install (i.e. Gemfile.lock looks correct). When ...
0
votes
1answer
227 views

upgrade from 3.2.2 to 3.2.8 breaks jquery-tooltip

I just upgraded my app from 3.2.2 to 3.2.8. I use jquery-tooltip. Once I upgraded, the tooltip changed behavior. Prior to the upgrade, the tooltip would popup positioned relative the element that ...
0
votes
0answers
46 views

Rails Application: Libraries conflict while used in two different plugins

I am writing a rails plugin named B. Rails application uses two plugins A and B. Plugin A uses jquery time picker for which it included jquery library and Plugin B uses jquery dialogue box for which ...
0
votes
1answer
73 views

Rails: Trying to separate a model into an engine gem

I'm new to here an to Rails so excuse any dumbness on my part. I'm trying to do something really simple and can't seen to find a guide that's up to date and properly demonstrates how to do this. ...
0
votes
2answers
249 views

How to use soundmanager2 wilth rails?

I have installed soundmanager2 within my rails application as a plug in. after installation, I tried following command to use sound manager rails generate sound_manager2 it shows generator not ...
3
votes
3answers
891 views

CanCan: load_and_authorize_resource in namespace other than that of MainApp

I'm using CanCan for permissions in my Rails application in which I have built my own engine for some generic form functionality. I would like to lock down permissions in my system so that users ...
0
votes
1answer
183 views

Dynamically/at runtime set jquery variables from Rails view?

I'm looking at the Sharre social mediq jquery plugin http://sharrre.com/# Below is an example of how to use it. simple_jquery_social.js example: $('#sharrre').sharrre({ share: { googlePlus: true, ...
-2
votes
1answer
31 views

facebook link recognizer for rails? [closed]

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 ...
0
votes
1answer
137 views

rspec [not found]

I am using gem cells for shopping cart and use following command rails generate cell cart display -e haml it generate cells and give error create app/cells/cart_cell.rb invoke haml create ...
1
vote
0answers
88 views

Mailboxer issue in development

I'm using the mailboxer gem, and I have extended it slightly by adding a belongs_to to the Conversation model (the gem is not currently namespaced, code is found in lib/): Conversation.class_eval do ...
-1
votes
1answer
42 views

Changing default MIT License of the Plugins generated in Rails [closed]

We have a rails web app licensed under Apache License 2.0 The license of plugins developed for this app can be under the choice of the developer. By default the Rails Plugins are generated with MIT ...
4
votes
3answers
3k views

JQuery AJAX exception only in Firefox: “Node cannot be inserted at the specified point in the hierarchy” (HierarchyRequestError)

Very strange problem: I have a 2-part dropdown, where selecting a State will then add a second dropdown giving you a list of MSA Areas in that State. This is done using a JQuery Get request to a ...
0
votes
1answer
110 views

Rails 3 plugin - how to access app's model file in require statement?

I am writing a plugin in Rails 3.2.6 - my plugin is supposed to modify my User model (located in app/models/user.rb) - however, I cannot find the proper way to reference that file from the plugin in a ...
0
votes
1answer
73 views

How to Pass Variable to PDF in Rails

This questions is somewhat related to this question Prawn + Prawnto Issue. I've noticed that if something is really hard to do in rails, you're probably doing it wrong. I have prawnto and prawn ...
0
votes
0answers
118 views

Rails 3.2 - forcing Devise to load before plugin (or vice versa)

After some more research, I've discovered the root cause of the issue I originally posted about (see original question, below). My plugin is loading before config/initializers/devise.rb, so when it ...
0
votes
0answers
273 views

Redmine - Gmail setup - 504 5.3.3 AUTH mechanism PLAIN not available

I followed the steps as mentioned in the link http://afterthoughtsoftware.com/posts/How-to-setup-Redmine-email After that, I edited the environment.rb to set action mailer to true which was ...
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
0answers
61 views

Loading a Rails 3 plugin that is not a gem

I have a Rails 3 plugin. It is not a gem. It is located in 'lib/myplugin'. There is only one file in that directory. It is 'myplugin.rb'. This file contains a definition for a Railtie. This Railtie ...
0
votes
0answers
96 views

Rails query_reviewer breaking on large datasets

I'm not certain what the problem is, and the error is a bit cryptic. I'm hoping somebody here has seen this before and can point me in the right direction. I am working on a moderately large data ...
1
vote
1answer
372 views

require gem in a Redmine plugin 'init.rb' fails

I am building a plugin for Redmine 2.0 and for the following line in plugin's 'init.rb' require 'ice_cube' I get the load error even though the 'ice_cube' is installed and show up when I do 'gem ...
0
votes
0answers
76 views

How to change job parameters in resque same as delayed_job?

Here is an example of changing job parameters in Rails: config/initializers/delayed_job_config.rb Delayed::Worker.destroy_failed_jobs = false Delayed::Worker.sleep_delay = 60 ...
4
votes
2answers
1k views

Anyone knows good private message gem for rails 3.2?

I spent day and day to figure out how to make good messaging system between registered member via devise. But in all cases, those gems are out of date and they don't support rails3. If you guys are ...
0
votes
1answer
388 views

activeadmin 0.4.4 crashing on heroku Missing helper file helpers/layout_helper.rb

I'm trying to deploy an app on Heroku that works just fine on my PC. It crashes on heroku with: /app/vendor/bundle/ruby/1.9.1/gems/activeadmin-0.4.4/lib/active_admin/namespace.rb:191:in `eval': ...
1
vote
4answers
197 views

User Model Patch works only for a few requests

I needed the patch for my Redmine plugin in order to add a new 'has_many' relation for User Model. It works for a while after I start the rails server in dev mode however strange enough stops working ...
0
votes
2answers
170 views

RoR: Use Feedzirra to pull different feeds and display as one

I can successfully pull different feeds using the Feedzirra gem and get feed updates. However, each feed that I'd like to pull has different content (ie: Github Public Feed, last.fm recently played, ...
0
votes
1answer
329 views

pdf is not generated in production

right now i'm generate pdf using wkhtmltopdf gem.In development it is working fine. if i'm run my project in production i got this error.already i'm install these two gems "wkhtmltopdf" & ...
0
votes
0answers
82 views

How to hidden the popup window in wicked_pdf

Right now in using rails 3.0.0. I generate the pdf file using wicked pdf.now i wants to display only the view page (html)in the browser and the generated pdf should be saved automatically in public ...
0
votes
1answer
69 views

devise error on rails 3

Im getting the following error message: undefined method `user_registration_path' for #<#<Class:0x10f227cd8>:0x10f5f6d50> Extracted source (around line #3): 1: <h2>Sign ...
0
votes
2answers
2k views

How to Install wkhtmltopdf?

Now i am working on rails 3.0.0.i am using Ubuntu 11.10 ,64 bit os.i want to install wkhtmltopdf.please tell me the static version of wkhtmltopdf.
0
votes
1answer
360 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
0answers
456 views

How to display fckeditor in mobile devices like iPhone, iPad or Kindle Fire

Can anyone please tell me how to display the "fckeditor" in mobile devices like "iPhone, iPad or Kindle Fire". As, it is working fine in desktop. I am using rails 2.3.11 and easy-fckeditor 2.6.4 for ...
6
votes
2answers
377 views

Rails: Act_as_taggable_on vs. Rocket_tag

Looks like Act_as_taggable_on is the more established gem, but Rocket_tag is the newer and hotter one. Which one would you recommend, and why? Most of the posts I found that compared Rails tagging ...
3
votes
3answers
1k views

Render engine within application layout

Background I am creating a application that is made up of a core and several modules. The modules are rails engines, and provide the actual functionality as the core itself only acts as a host. The ...
0
votes
1answer
165 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
491 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 ...
2
votes
2answers
426 views

How do I create a rake task for a Rails engine which is not exposed to the host application?

# lib/tasks/test.rake task :hello do puts 'hello' end $ rake app:hello To run the task I need to prefix it with "app:" and it runs in the context of the dummy app. It is also exposed to the host ...

1 2 3 4 5 14