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.
0
votes
1answer
19 views
Getting error importing assets files after installing gems
Everytime I install a new gem and we must include a new script or a new CSS, it simply doesn't work.
I put the gem in the Gemfile, run bundle install, everything works fine, gem is installed. Then ...
0
votes
0answers
45 views
RoR server inexplicably fails
I'm new to RoR. I'm running a 64-bit Ubuntu 10 box. I encounter the following when running a server.
root@censored:~/canvas# $GEM_HOME/bin/bundle exec script/server
Starting delayed jobs worker ...
1
vote
2answers
77 views
Gemfile gem installation and gemspec dependencies
I have an app whose Gemfile requires a gem that is also dependent on another gem that is currently found on github.
So
app/Gemfile reads
gem "my-gem", :git => ...
0
votes
1answer
34 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 ...
0
votes
1answer
32 views
Why is 'gem list' not showing the available gem that 'bundle install' show?
On my production server :
When I do a bundle install I can see 'using schema_plus (1.0.1)' message
When I do a 'gem list' I don't see it anymore.
Why is there a difference between both ?
That should ...
0
votes
0answers
60 views
Getting Iconv::InvalidEncoding error on trying to export xls from Redmine
I tried searching the solution, but could not get it working
I have installed xls_export plugin for redmine, but every time I try exporting an Excel sheet of Issue list, I get the following error
...
3
votes
3answers
98 views
Trouble installing passenger gem on Mac
From terminal
$ sudo gem install passenger
Building native extensions. This could take a while...
ERROR: Error installing passenger:
ERROR: Failed to build gem native extension.
...
0
votes
2answers
46 views
npm nested dependencies, why not imitate gem?
I was installing today sailsjs, and see how it install the same package over and over again (dependencies of my app dependency), so why npm not use a gem like system? keep it globally the libraries ...
0
votes
1answer
109 views
while creating blog
While creating a new blog I got this error:
Installing coffee-script-source (1.6.2) Errno::EACCES: Permission
denied -
...
2
votes
0answers
16 views
no method error for 'name" when I try to paginate news items with kaminari
I have been struggling to correct an issue with "undefined method name'" when I have installed the kaminari gem.
Error message:
undefined methodname' for nil:NilClass
Extracted source (around line ...
9
votes
2answers
407 views
Writing a Ruby extension in Go (golang)
Are there some tutorials or practical lessons on how to write an extension for Ruby in Go?
0
votes
1answer
194 views
gem jquery-ui-rails couldn't find file 'jquery.ui.all' (
I'm trying to add jquery ui datepicker to my application with help of jquery-ui-rails gem. I've checked Railscast I seem to do everything right, but i get an error upon application startup
couldn't ...
3
votes
1answer
31 views
How do I discover what gems my code is using (aka create a post-facto Gemfile)?
I started out writing a little hack and did a few "gem install xxx" along the way. Now the little hack has grown large, I don't recall all the gems I've installed and, for portability, I'd like to ...
3
votes
1answer
45 views
Why can't I deauthorize Rack-mini-profiler for non admin users
I am trying to install Rack-mini-profiler on my ROR application.
I installed the gem and the profiler works great in development but I can't deauthorize specific requests for non admin users.
I placed ...
3
votes
1answer
94 views
Rails app: using a gem vs. including source with Twitter Bootstrap
I've gone through my app and am having trouble finding where exactly the Twitter Bootstrap source goes when I include it through a gem. If I wanted to view the Bootstrap .css for example, how do I ...
-3
votes
1answer
139 views
rake says “cannot load such file — spec”
I am using:
Ubuntu 12.10
Rails 3.2.12
ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]
rake rake-10.0.4
When I run rake db:create I get this error message:
rake aborted!
cannot load such ...
0
votes
1answer
10 views
Can the high_voltage gem handle .haml.html files?
The documentation doesn't mention haml, and I couldn't find the answer by googling. Has anyone gotten this to work?
0
votes
1answer
44 views
how to use stocktwits library?
I am building a stocktwits app in Ruby. I want to retrieve data through Stocktwits.com API. I found this library on github: https://github.com/jesseyoungmann/omniauth-stocktwits. But i am a newbie to ...
0
votes
0answers
39 views
Accessing system resources from ruby
I'm writing a ruby wrapper for Hitachi-44780 library for Raspberry Pi. The library itself is written in C.
I have the following code that tries to open /dev/mem
void setup_io()
{
/* open /dev/mem ...
0
votes
1answer
102 views
Installing Rmagick issues in Mac OS X lion
Problem:
Fetching: rmagick-2.13.2.gem (100%)
Building native extensions. This could take a while...
ERROR: Error installing rmagick:
ERROR: Failed to build gem native extension.
...
3
votes
0answers
114 views
UML diagram generator [closed]
Is there a good UML diagram generator for Ruby? I saw RailRoady and RailRoad, but they require Rails.
1
vote
0answers
29 views
jquery-rails producing old jquery version
I am using rails 3.2.2, jquery-rails 2.0.3, with asset pipeline enabled. For some reason, require jquery is producing jQuery 1.7.2 in my application.js file. I would like to use the latest 1.9.1. I ...
1
vote
1answer
70 views
rails json gem cannot convert nil into hash
Just deployed a rails application to my BlueHost server, installed all of the gems and launched the application with Passenger.
However, when I go to the app I see:
Any idea why the error can't ...
0
votes
0answers
7 views
Unable to find own build ruby gem in rubygems.org
I've built a gem and gem push it to rubygems.org, everything seems fine but I just can't find the gem that I just push even I use the following commands:
gem list --remote | grep my_gem_name
or
...
1
vote
1answer
127 views
installing libxml in ruby 1.8.7 on linux mint
this is the result when trying to install -> extconf failure: need libm
virtualrails@jay ~ $ sudo gem install libxml-ruby
Building native extensions. This could take a while...
ERROR: Error ...
-1
votes
1answer
90 views
RVM not recognizing gemset?
After creating the gemset, cd out of and back into the folder throws the error that the gemset does not exist.
Here is my shell session
dewet-mac:~ dewet$ cd ruby/routerscript/
Gemset 'routerscript' ...
0
votes
0answers
36 views
pdftk wrapper for Ruby
There are several Ruby wrapper gems for pdftk. Among them, is there any gem that installs the pdftk binary automatically cross major OSs at installation of itself? I want to require it in a library, ...
0
votes
0answers
39 views
How can I choose between install a x32 or x64 version of a gem in ruby 2.0?
Let's suppose that there are two versions of a gem, one for x32 technology and the other for x64. How can I choose which version install. Im running on Windows 7 64 bits. Will rubygems detect what ...
0
votes
1answer
45 views
ruby on rails with gem pdf-reader: Uninitialized constant error
i got stuck trying to use the pdf-reader(V1.3.2) to dive in to a PDF unsing ruby on rails (ruby V1.9.3). I basicially get this as an error:
Uninitialized constant PDF::READER
I found some answers ...
2
votes
2answers
49 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
2answers
75 views
Testing a ruby class without the required module files
I'm working on a project in Ruby on Rails. We have a controller action that uses a module within a gem. This gem isn't finished yet and it isn't on the file system.
I was told to mock the module in ...
0
votes
1answer
36 views
NSIS to install ruby gems
this is a function I have in nsis script:
Function rubyDependencies
DetailPrint "Installing Web Runtime Environment dependencies..."
ExecWait "gem install rails –v2.3.8"
ExecWait "gem ...
0
votes
0answers
24 views
Proxy in ruby gem “twitter_oauth”
My test environment for my ruby (sinatra/ twitter_oauth) project is behind a proxy.
On the documentation I read how to use the twitter_oauth gem with a proxy. But there the author says:
First you ...
1
vote
1answer
48 views
What is the correct path video using Streamio FFMPEG on Rails
I follow this gem https://github.com/streamio/streamio-ffmpeg , then I do this :
movie = FFMPEG::Movie.new("#{Rails.root}/public/aaa.mov")
but the result is :
Errno::ENOENT: No such file or ...
1
vote
2answers
36 views
How to get Properties of Video
Does anyone know how to get properties of video on Ruby on rails (methods or gem) ?
eg : just like image properties (width, height, dimension.. etc).
Thanks
0
votes
2answers
93 views
How to secure RESTful API in a proper way with a dynamic token Rails
What I am trying to achieve:
I'm looking to create a (REST) API for my Rails application. I have looked for Securing an API, Versioning of API and API Gems Railscast for implementation of API calls.
...
1
vote
0answers
109 views
Can't install eventmachine, error building gem native extension
I'm trying to install helios but I'm getting an error when it tries to compile the native extensions for eventmachine.
I'm on OS X 10.8.2, Ruby 2.0.0, Xcode 4.6.1 with updated Command Line Tools.
...
0
votes
0answers
46 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 ...
1
vote
1answer
110 views
Hosting Ruby gems using Apache
I'm having trouble figuring out how to host a Ruby gem of my own creation using Apache. I was wondering if somebody could help me figure out the problem.
Here's what I've done so far. I began by ...
0
votes
1answer
45 views
English word capture
I have a big text file which contains many English words. However it contains German and French words as well. I need to capture all English words in it.
I reckon, firstly I read all file from the ...
2
votes
0answers
1k views
ROR can't fine rake 10.0.4 despite being in vendor/cache
So this is annoying. When I put
bundle exec rake db:migrate
into terminal, the following error occurs:
Could not find rake-10.0.4 in any of the sources
Run `bundle install` to install missing ...
2
votes
1answer
1k views
'Could not find pg-0.12.2 in any of the sources' when running rspec
I'm working on building the twitter clone app in Hartl's Rails Tutorial. I cloned my git repo (https://github.com/stewartmccoy/rails_tutorial) and put code on to my personal computer, which had ...
1
vote
0answers
263 views
How to enable C extension support in jRuby?
I want to install a gem but I get the following error:
Building native extensions. This could take a while...
ERROR: Error installing twitter-login:
ERROR: Failed to build gem native ...
1
vote
2answers
53 views
POST with ruby: best practise and how to?
I want to make a simple post request using ruby.
At first I tried it with the gem open-uri. But this answer to a so- question says that it doesn't work. So instead of this I want to use the ...
0
votes
0answers
139 views
Twitter proxy configuration
I want to use the twitter gem in a simple application, but my test environment is behind a proxy. How can I configurate my requests so that the proxy is used?
2
votes
1answer
70 views
gem ice_cube for reccurence events
I have simple Event model (title, date, user)
And I created Events Calendar by months (gem 'watu_table_builder'). I need the feature to create repeating events. I figured out that I may use gem ...
0
votes
0answers
40 views
ActiveRecord::AssociationTypeMismatch at /users/sign_in ActiveLogger::HistoryValue(#48860460) expected, got ActiveLogger::HistoryValue(#47928880)
i've wrote my own activerecord logger gem
https://github.com/0xCCD/active_logger and usually it works, only sometimes it raises this error:
ActiveRecord::AssociationTypeMismatch at ...
0
votes
2answers
567 views
Rails + Twitter Bootstrap: File to import not found or unreadable: twitter/bootstrap
I am trying to set up Rails app with Twitter Bootstrap (the gem twitter-bootstrap-rails), but I still cannot get over the error
File to import not found or unreadable: twitter/bootstrap.
I found ...
2
votes
2answers
163 views
Bundler doesn't load gem in production rails app
I'm having a problem where a single gem is not being loaded by bundler in a rails app, but only in production - there's no problem using the gem in development mode.
The gem is country_select, and ...
0
votes
1answer
29 views
How to Handle ActiveRecord Migrations in a Distributed Gem?
I am trying to write an app as a gem using ActiveRecord without Rails.
My problem is how to migrate a database already deployed by a user who will not have rake, etc. I have just distributed a ...





