A Gem refers to a bundled piece of code managed with RubyGems. Gem is also the name of the command line tool used to manage RubyGems.
4
votes
5answers
138 views
Is it right to avoid using third-party gems?
I am using Ruby on Rails 3.2.2. and I would like to know if the following thought (born from my previous question) is correct:
I tend not to use third-party gems (at least when it is possible and ...
4
votes
1answer
271 views
consuming gems from jruby-complete
I can make my jruby-complete consume gems from a jar passed to it. But I'd like to use a central gem repo.
This is what I can do now:
$ java -jar jruby-complete-1.6.5.jar -S gem list
*** LOCAL ...
4
votes
2answers
2k views
“stack level too deep” while compiling assets
After running brew upgrade, or something else which updated my gems/ruby version, my rake assets:precompile task no longer works.
I get this error:
rake aborted!
stack level too deep
(in ...
4
votes
3answers
2k views
How can Bundler/Gemfile be configured to use different gem sources during development?
I have a Sinatra application that requires another gem I'm developing locally. I'm having trouble configuring Bundler to use my local gem code during development but my vendored gem code in ...
4
votes
2answers
4k views
Embedding youtube video in markdown?
i use the ruby gem formatize to parse my markdown-formated text. now i want to embed a youtube-video into the markdown text, but whenever i add the iframe snippet, the gem (or markdown?) just removes ...
4
votes
1answer
1k views
Sharing models between Rails apps using gems
So I'd like to share models between two Rails apps and do not like the submodules solution (burned me in the past). I'm thinking about using gems to solve this and have this basically working:
...
3
votes
1answer
246 views
seeing different gem lists in cygwin and powershell
I used the gem list command in powershell and cygwin and both show different gem lists.
Cygwin shows
*** LOCAL GEMS ***
bundler (1.2.3)
json (1.7.5)
minitest (2.12.1)
rake (0.9.2.2)
rdoc (3.12)
...
3
votes
2answers
116 views
How to automatically include Gem in the path?
I have foo.gem and there is lib/foo.rb in there.
When I add gem to Gemfile it's foo.rb is automatically required in my path. But I need to include it automatically. Reason for this is I am making ...
3
votes
3answers
6k views
Could not find i18n-0.6.0 in any of the sources
I just upgraded from Rails 3.0.3 to 3.2.1. The upgrade went smoothly on my Mac but I'm having trouble getting a 3.2.1 instance of my app running on my Ubuntu production server. The error I'm getting ...
3
votes
3answers
6k views
Facebook Graph API gem
I wanted to use the Facebook graph API in my rails app.
What is the recommended gem to work with the FB graph APIs?
Thanks
3
votes
2answers
1k views
actionwebservice and rails 3 /
I'm on a rails 3 project trying to install actionwebservice using:
gem 'rails', '3.0.4'
gem 'actionwebservice', :git => 'https://github.com/ywen/actionwebservice.git'
And I get the error:
...
3
votes
1answer
300 views
Can I rename my Gemfile to Gemfile.rb
Without a file extension I can't get syntax highlighting to persist. That's not the end of the world, but I'd appreciate having it.
Will it break Rails if I rename Gemfile as Gemfile.rb ?
3
votes
1answer
529 views
Bundler and gems on github
So when you have bundler install a gem from github, it doesn't actually get installed, does it? gem list won't list those gems.
Which brings me to my conundrum: I'm working on a script that wants to ...
3
votes
1answer
990 views
unable to update gems on mac osx - Gem::RemoteFetcher::FetchError
Jon-MacBook-Pro:rubygems-1.3.7 jon$ sudo gem install rails
Password:
ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError)
SocketError: getaddrinfo: nodename nor servname provided, or ...
2
votes
0answers
47 views
+100
Rake build is operating in an incorrect context
I have a gem that exists simply to collect several engines together for ease of implementation, as well as to provide a few utility methods to all of the included engines. One such utility method is a ...
2
votes
3answers
923 views
Why is my rake call causing an 'undefined method `source_index`' error?
I am trying to run bundle exec rake db:migrate then encountered the following error.
bundle exec rake db:migrate --trace
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** ...
2
votes
1answer
70 views
Ruby autoload conflicts between gmail and parse_resource gems
Earlier, I asked about autoload in the gmail gem not being able to find the files it wanted to load. In building a minimal script, I found the gmail gem loaded it's files when I didn't include the ...
2
votes
1answer
407 views
Attempting to install termios gem results in make errors
I'm attempting to install the termios gem on OS X 10.7 with ruby 1.9.3-p194. It used to install fine, but now, even when i try to install it in 1.9.3-p125, i get the same errors:
...
2
votes
2answers
902 views
Compass (ruby) encoding error
I had Compass 0.12 (a ruby gem) installed on Ubuntu Oneiric with no problems I have updated to Precise formatting / and keeping /home, so I needed to reinstall ruby (1.9.3).
I get this error now when ...
2
votes
3answers
3k views
ruby - require & cannot load such file
I'm new to ruby and I have a problem loading gems.
I've read every topic about this on SO but I couldn't figure out how to make it work :/
I'm on a fresh install of Ruby 1.9.3 and RubyGems 1.8.11
...
2
votes
2answers
2k views
pg gem install on Mac OS Lion with rvm
212-178-13-214:~ igorfedoronchuk$ gem install pg Building native extensions. This could take a while...
...
2
votes
1answer
759 views
Ruby gem wrong installation directory
I had Ruby 1.9.2 install, but I uninstalled it long ago. Today I installed a brand new version of Ruby 1.9.3, downloaded gem and set it up with ruby setup.rb.
I then noticed that installing gems ...
2
votes
1answer
2k views
Ruby Gem for mysql 5.5 in windows
We are going to use mysql 5.5 in our application for production. I did some online search and it seems that mysql2 0.2.6 is the one for mysql5.5. Is this gem good for windows as well? Any tips on how ...
2
votes
0answers
4k views
invalid date format in specification [duplicate]
Possible Duplicate:
Invalid date format specification in gemspec
I am beginner in ruby on rails. When I try gem list it displays message below:
Invalid gemspec in ...
2
votes
0answers
1k views
curb gem installation: bundle install fails, but normal gem install works [closed]
solved: the openvz container did not have enough memory assigned to it.
I could need some help:
I want to install the curb gem through bundler.
My config (please request more details if needed):
...
2
votes
2answers
582 views
Passenger misses development gem in production environment
I've got a strange behaviour on my production server: I deploy my Rails 3 application via Capistrano to the production server. The Capistrano script restarts passenger at the end of deployment. When I ...
2
votes
3answers
829 views
Ruby on Windows7 - could not find gem
I'm setting up a ruby Apache Buildr on a fresh Windows 7 machine.
I've installed Ruby, the DevKit and installed buildr via
gem install buildr
wich all ran perfect.
Until I tried to execute ...
2
votes
1answer
2k views
Ruby error UTF-8 to ASCII
I have a Ruby 1.9.2 install on Centos 5.5. Every time I install a gem, I get the error
ERROR: While generating documentation for (gem)
... MESSAGE: U+2018 from UTF-8 to US-ASCII
... RDOC args: ...
2
votes
2answers
587 views
ruby gem install error on MAC pc due to behind corporate proxy
I am trying to install ruby gems on my MAC (OSX 10.5.1) behind corporate firewall proxy
but i am getting error for connection refuse.
kindly help me out to resolve this problem.
2
votes
1answer
521 views
How to silence gem errors after switching to bundler
I recently switched to using bundler and now anytime I run a script under the scripts/ folder in my rails app I get the following warning:
config.gem: Unpacked gem environment.rb in vendor/gems has ...
2
votes
2answers
1k views
How can I make a Ruby gem package copy files to arbitrary locations?
Suppose you have a software package. You want to make it a gem, because gems are the de facto standard way to distribute anything in the Ruby world. Gems are great -- for libraries. But for real ...
1
vote
2answers
36 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
1answer
3k views
What can I do about a Bundler::GemfileNotFound error?
I just installed bundler-1.3.3 successfully. However, when I try to run bundle install I get
Bundler::GemfileNotFound
What is wrong here?
1
vote
2answers
643 views
env: ruby_noexec_wrapper: No such file or directory error
I am getting this error pretty frequently after running this command once....
bundle clean --force
in my rails project..
How can i fix this?
1
vote
2answers
209 views
Nokogiri native extension failing to build (Not libxml2 or libxslt missing issue)
As the title says, it doesn't seem to be failing because libxml2 or libxslt is missing. I'm not really sure what to make of the error. (Get it? Because the issue is during make? hehe...)
Anywho, ...
1
vote
1answer
259 views
Rails - the newest gem is installed but the applicaiton is old
I'm working on Bluehost. I installed the 3.2.8 gem of rails, and now I get this:
> gem list --local | grep rails
rails (3.2.8)
But:
rails --version
Rails 2.3.11
How can I make the "rails" ...
1
vote
1answer
42 views
Developing helper functions that generate HTML: should I rather use nested content_tag()s or partials?
I'm at the start of developing a Rails engine (and gem) that should provide many small helper functions that generate HTML for views.
Now I wonder whether it's advisable to rely on the use of many ...
1
vote
2answers
241 views
Problems getting my sinatra based app to work on Heroku
I made a simple Sinatra app to run a homepage. It's already working on my computer. Now I wanted to host it at heroku, but I can't manage it to make it run. I am not really familiar with concepts like ...
1
vote
2answers
223 views
Resetting position attribute when using acts_as_list gem? (Rails)
I have a simple Rails 3 app where a Goal has many Objectives. In my views, I allow the user to-reorder the Objectives for any given Goal, and I am using the acts_as_list gem to achieve some of this ...
1
vote
1answer
116 views
How to get working a local gem on heroku?
I have a modified version of the gem declarative authorization on my RoR app.
It's under vendor/gems/declarative_authorization.
My gemfile has
gem "declarative_authorization", '= 0.5.5', path: ...
1
vote
2answers
3k views
Unable to install mysql2 gem OS X Mountain Lion
I'm new with RoR and I'm trying to install Mysql2 -v '0.3.11'.
I have OS X Mountain Lion, rails 3.2.6 ,ruby 1.9.3.
Below is the error I get. I looked everywhere and didn't find anything.
$gem ...
1
vote
2answers
70 views
Modifying core classes in a gem
I'm developing a Gem which I think will be useful for more people than just me. One issue I'm facing is that I need to merge nested hashes. I found this useful Gist to accomplish that, but now I'm ...
1
vote
1answer
295 views
How to execute Ruby program with locally installed gems?
I have installed my dependencies using
bundle package
Then transferred them to the offline server and running:
> bundle install --local
Using mime-types (1.19)
Using rest-client (1.6.7)
Using ...
1
vote
1answer
1k views
WickedPDF missing layout
I have a controller like this:
def show
@professor = Professor.find(params[:id])
respond_to do |format|
format.html
format.pdf do
render :pdf => "file_name"
end
...
1
vote
6answers
641 views
Re-open an ActiveRecord model that's provided by a gem
I'm trying to extend an ActiveRecord model (Vote) that a gem (https://github.com/peteonrails/vote_fu) provides to my application. (I.e., there is no vote.rb in app/models)
My first approach was to ...
1
vote
1answer
3k views
Could not find a valid gem 'rails' (>= 0) in any repository
I'm on a fresh mac and just installed ruby 1.9.3 using rvm. Now I'm trying to install rails and getting the error on the title of this post. I'll post below all info I have from the command line to ...
1
vote
1answer
405 views
How do I create thor::group generators as args of my_command
In my gem I'd like to have a an executable command with args like so:
foo generate project
foo generate config
foo say_hi
So I made
foo/bin/foo
#!/usr/bin/env ruby
require 'foo'
Foo::Foo.start
...
1
vote
1answer
189 views
Ancestry db:migrate
I am trying to install the Ancestry gem but I am having problems with rake db:migrate.
I am following the instructions on the Ancestry github page. After I have done rails g migration ...
1
vote
2answers
666 views
Unable to install or update Ruby bluecloth gem on Windows Ruby 1.9.2
I'm getting an error message while trying to update my version of bluecloth gem on Windows. Is there a different version that I need to install for Windows or an alternative to bluecloth that I can ...
1
vote
1answer
321 views
Device & ActiveResource
I want to have 1 database for few projects and only one of them have direct connection to db, first of all I want to implement user authentication.
I should work over REST , without connecting to ...


