Tagged Questions
0
votes
0answers
10 views
How to display different feed data (using feedzirra)
So, I'm using feedzirra gem (https://github.com/pauldix/feedzirra) for parsing and displaying RSS data. However, I'm having trouble displaying different feeds. The code in my view is displaying ...
0
votes
1answer
17 views
How can I load only a subset of Foundation 4 JS files?
I'm running a Rails 3 app and am including the zurb-foundation gem to bring in Foundation 4. I noticed (in my local dev env) that every single Foundation JS plugin/lib is being loaded. I'm only using ...
1
vote
1answer
33 views
How to set up the recipient id in public activity
I am going over Public Activity Gem Railscast Vid. (http://railscasts.com/episodes/406-public-activity)
My current DB looks/stores everything but the recipient_id....it shows up as nil
...
0
votes
1answer
39 views
Can't convert from Fixnum into String
I am using the rmeetup gem to grab information from the meetup group.
When I try to pull information from the results, all works except time and I receive a 'can't convert Fixnum into String'
My ...
0
votes
0answers
8 views
ruby socketerror with dalli
any ideas on the below error?
SocketError: getaddrinfo: nodename nor servname provided, or not known
from /.rvm/gems/ruby-1.9.3-p362/gems/dalli-1.0.0/lib/dalli/socket.rb:17:in pack_sockaddr_in'
...
0
votes
0answers
16 views
Internal Server Error after adding Rails gem
I'm trying to use the rack-timeout gem on Rails. I added the line gem 'rack-timeout' to my Gemfile and ran bundle install. (It shows Using rack-timeout (0.0.4)) When I modified a file in my controller ...
0
votes
1answer
20 views
I'm looking for a Gem that assists in monitoring and reporting on various tasks that run in my rails application
I have a rails application that will be running various tasks and scripts throughout the day. I'm planning on using Active Admin as my administration framework, but I'd like to find a Gem that I could ...
0
votes
2answers
32 views
Facebook like user search as you type
I am creating a messaging system for my web app and need help with searching for users to send messages to. So far I have it so that if you type a persons name (who is on the site) you can send a ...
1
vote
1answer
62 views
How to make Rails 3 JSON parse doubly quoted strings and single number
Background
On the json.org website, a string is defined as "char+" where char+ is one or more char. A char is any unicode character except " or \. A subset of control characters are allowed, just ...
0
votes
1answer
24 views
add has_many through association with simple_form and cocoon not found
I'am trying to create Package objects with nested attributes for Poi(Point of interest) objects using Cocoon gem. When I create a new Package I want to add existing Pois selecting them for a ...
1
vote
1answer
14 views
use forked version of a gem - rails 3.020 & ruby 1.9.2
I am trying to use this fork of a gem:
https://github.com/hoyaemt/capistrano-syntax-checking
In my gemfile I have:
gem "capistrano-syntax-checking", :git => ...
0
votes
2answers
16 views
Rails MonkeyPatch changes not being picked up
I'm trying to 'MonkeyPatch' this controller in my implementation so that it can handle a third parameter ('productname').
The original activate method in the gem reads
def activate
if ...
1
vote
1answer
24 views
acts_as_votable one-to-many and only one option votable
I'm trying to figure out how I can work with the acts_as_votable gem to implement a voting system with a one-to-many relationship. I have the AgendaItem model, which has-many Conclusion items. ...
0
votes
2answers
27 views
find the version of a gem install in system programatically
I am trying to get the version of a gem in the system through Rails code in the initializers.
The issue is I have latest version cached in my application/vendor/cache directory and older version is ...
0
votes
1answer
27 views
Array order by reputation | Active Record Reputation Gem
I'm trying to order a big array by reputation using the ActiveRecordReputation gem.
Is it possible?
I have a model call Microposts, It has a reputation system called :votes.
Those microposts ...
1
vote
0answers
39 views
How can one add a blogging engine to their app?
So I've followed the installation instructions on their(KatanaCode's) GitHub (see here:https://github.com/KatanaCode/blogit), however, I am unsure as to what to do next.
In otherwords, the gem is ...
0
votes
0answers
23 views
Seedbank, nothing happens when doing rake db:seed anymore
I just installed seedbank gem : https://github.com/james2m/seedbank which is exactly what I was looking for! (I'm actually surprised this kind of feature is not in the core Rails, but anyway, thanks ...
0
votes
1answer
78 views
Cannot install therubyracer
I recently forked a repository from github, however, when I try to run "bundle install," I get the following error output:
Robert-Quinns-MacBook-Pro:~ robertquinn$ gem install therubyracer
Building ...
2
votes
1answer
47 views
Rails 3 Gemfile Gems not Loading After Bundle Install
I'm writing an application in Rails 3 with Ruby v2.0.0.
I have a helper in app/helpers/posts_helper.rb:
module PostsHelper
def markdown(text)
@redcarpet = ...
0
votes
1answer
43 views
use closure_tree to represent ordered list in Rails
Would it be advisable to use the closure_tree gem to represent an ordered list? e.g. this Rails model:
class OrderedSet < ActiveRecord::Base
acts_as_tree, order: 'position' #order is a supported ...
0
votes
1answer
24 views
Using CanCan within a gem
I am unsure if this is possible, but I want to use CanCan within my own gem. I've tried the following code:
module DynamicMenu
require 'engine' if defined?(Rails)
require 'cancan'
module ...
1
vote
0answers
54 views
How to associate multiple emails for a single user in rails Devise gem
I am developing an application which uses Deivse for user authentication. It performs all standard task that Devise handles(e.g: Email verification during user sign up).But a user may have multiple ...
0
votes
0answers
26 views
Connecting to legacy database from a gem
I am trying to create a gem to provide models for a legacy database but my gem can't see the app's configuration:
In my database.yml:
firefly:
adapter: mysql2
database: ...
username: ...
...
0
votes
2answers
116 views
rails bundle error Gem::Installer::ExtensionBuildError: ERROR
I'm trying to install rails, but have some problem:
ruby 2.0.0
rvm 1.19.6
gems 2.0.3
bundler 1.2.3
when I run 'bundle install' or 'gem install json -v "1.7.7"', I have:
...
0
votes
2answers
50 views
rails 3 upgrade - You're using the old API in a mailer class
I'm trying to upgrade an application from rails 2.3 to 3.0.6
which has the following code in rails 2.3
class MessageSender < ActionMailer::Base
def ...
0
votes
0answers
22 views
Ruby Gem configuration from command line
I am creating my first gem and it is a ruby wrapper to a tax software. I have a configuration class that allows for a user to create a yaml file in the rails config/constants directory and then ...
1
vote
1answer
54 views
Custom Gem in /vendor/gems not Loading
I recently decided to take some functionality that I have in several of my Rails apps and extract it into an Engine. I have now finished the Engine and I'm trying to install the finished gem into one ...
0
votes
1answer
54 views
How can I save whole package of Rails App including gems being used?
I'm using a lot of gems. They are really sensitive about dependencies each other.
Now, current combination of the gems is just perfect. I want to save this whole App, and re-use this when I'm going on ...
0
votes
2answers
62 views
How to implement versions by country on Rails web app
I need to create a web app that would be different for each country (and not only different language). Let's say the website lists insurance solutions in the country.
For example, users in France ...
0
votes
1answer
65 views
Error when bundle install-ing - `Bundler could not find compatible versions for gem “rails”`
I'm trying to install a gem, I updated it in the gemfile, then bundle install.
I received the following error message:
Bundler could not find compatible versions for gem "rails":
In Gemfile:
...
0
votes
1answer
92 views
Rails Wicked Gem - Using two (nested) models in one wizard
I'm trying to use the Wicked-Gem for my wizard after a user has signed up successfull.
The first step is that the user should enter his "general infos" (bio and interests). After submitting these ...
0
votes
2answers
56 views
Rails on ubuntu not found - but in list of my gem installs
I'm trying to install rails on ubuntu, doing so using rvm and not the apt-get which is outdated.
so far I had no troubles - rvm working good, so does gem and ruby.
but when I'm trying to load rails ...
0
votes
1answer
40 views
Gem for Finding Associated University of Email Addresses
I don't think this exists, but I thought I should ask before reverting to finding some CSV table with this data. I receive a college email from the user and I want to find the name of the University ...
0
votes
1answer
43 views
Rails how to create an initializer inside a gem
I am trying to build a gem in Rails 3 and inside it i am trying to pass an initializer:
Credentials.configure do |config|
file = File.read("#{Rails.root}/config/twitter.yaml")
file_config = ...
0
votes
1answer
69 views
Can't add parameters to the picture model with the use of Ckeditor, Paperclip and Ruby on Rails
I have a CKeditor picture model like this:
class Ckeditor::Picture < Ckeditor::Asset
before_save :set_vars
has_attached_file :data,
:url => ...
1
vote
2answers
55 views
Rails twitter gem causing error Missing required parameter: status
I am using twitter gem with rails in order to retrive the user timeline and post an update:
def index
@tweets = Twitter.home_timeline
end
def tweet
text = params[:text]
...
1
vote
1answer
42 views
paypal recurring gem - cancel or suspend?
I am using https://github.com/fnando/paypal-recurring but I am not sure which method - cancel or suspend will stop the money from the subscriber to my site. I looked at the code on github but I ...
1
vote
1answer
22 views
Require failing with bundled gem using rails 3
I'm currently trying to include a gem for fuzzy string matching into my Rails project and am getting an error when I actually try and use it, and would love any suggestions as to where to look to ...
0
votes
1answer
46 views
make is not recognize as an internal or external command
I am using Windows-7. I installed Ruby 1.9.3p327 and Rails 3.2.9.
Now, I create a project then run command in command prompt "rails install json -v 1.7.7" but get error below
make
'make' is not ...
2
votes
2answers
53 views
Rails Gem: Running All Generators for given Namespace
I'm developing a gem core with multiple sub modules, each it's own gem. As a developer, you'll be able to install the core and any other of the gems. How can I create a rake task or generator to run ...
0
votes
0answers
57 views
LinkedIn gem - where am I going wrong?
I'm trying to get the LinkedIn gem working, but I've been struggling for 2 days now. I've tried the following sources but still don't understand how to get it working: 1, 2, 3, 4, 5, 6, 7, 8...you ...
2
votes
1answer
89 views
Strategies for gem tests to ensure the gem works with Rails 3.x and 4.0?
I've seen a few examples of dummy Rails apps (for testing, so they live under test or spec dirs, typically) for use with the Appraisals gem that supposedly work with both Rails 3.x and Rails 4, but ...
0
votes
0answers
40 views
Error Installing mysql2 gem for Rails 3 on windows
I tried all the methods but still I'm getting this error please some one helpm to resolve this error.
Installed versions:-
Ruby: ruby 2.0.0p0 <2013-02-24> [x64-mingw32]
Gem: 2.0.3
MySQL: Ver ...
0
votes
1answer
30 views
sitemap_generator with friendly_id produces just id in URL instead of :name
I'm using kjvarga's sitemap_generator gem and the friendly_id gem
gem 'sitemap_generator', '3.4'
gem "friendly_id", "~> 4.0.9"
If I create a sitemap using rake:sitemap:refresh I get URLs like ...
0
votes
0answers
42 views
Rails gem for advertisement statistics
I'm looking for the gem that would help me to collect statistics about site visitors and purchases. Basically for each campaign, I need to know by campaign/site id/banner id the following:
1) # of ...
1
vote
1answer
51 views
Extending classes from a gem
I have a gem, that declares the class FulltextRow
I created an initializer called hacks.rb were I open classes from different gems.
I added the following code:
FulltextRow.class_eval do
....
...
0
votes
1answer
77 views
rake install fails but gem install works fine, any idea why?
The problem:
I have this gem that I am working on. While trying to install it locally to do some tests, rake install fails after building the gem. Rake suggested that I run gem install for the built ...
1
vote
2answers
84 views
No route matches [GET] “/” Devise
I have these routes available to me after i configured devise:
new_user_session GET /users/sign_in(.:format) devise/sessions#new
user_session POST /users/sign_in(.:format) ...
1
vote
2answers
39 views
Uninitialized initializer constant
I created a settings.rb file under the initializers folder containing values I need initialized once the application starts. However, on running rails s I get a "Uninitialized contant ...
1
vote
2answers
54 views
understanding groups in ruby on rails gemfile
I've seen some syntax where
group :development, :test do
gem "rspec-rails", ">= 2.0.0.beta.19"
gem "cucumber-rails", ">= 0.3.2"
gem "webrat", ">= 0.7.2.beta.1"
end
or
group :assets ...







