Outlines what gems are required for a Ruby program
0
votes
1answer
9 views
Heroku and gems only for production environment
I have an application that must be run in three different environments, called dev, beta and prod.
I created three different applications on heroku, so all the environments can be run at the same ...
0
votes
1answer
16 views
How to use a local gem in console with bundled environment
I want to customize my development environment with a few extra gems. I am using bundler with rails 3.0.x. I have those extra gems in my local system and i dont want to add them into my Gemfile. How ...
-1
votes
0answers
10 views
How to add a XML file into GemFire region?
In our project, we want to cache the configure files(the whole file) into GemFIre.
How I handle the files?Parse the file to stream? And is there any good interface?
Thanks in advance.
0
votes
1answer
88 views
Errors with sqlite3 in ruby 2, rails 3.2.13
I just installed ruby and rails on my new development machine and my rails server command isn't working.
I'm using Ruby 2.0.0p0 and Rails 3.2.13
Here's the error.
E:\Desktop\php\Test\App>rails ...
1
vote
1answer
13 views
Slash in branch name in Gemfile causing error
I have this in my Gemfile (using a branch with a slash):
gem 'ice_cube', github: 'seejohnrun/ice_cube', branch: 'issues/50-from_ical'
Which produces this error:
$ bundle
Updating ...
1
vote
3answers
121 views
Running rails 3.2.13 but have not installed it?
Whenever I run:
rails -v
I get the result
rails 3.2.13
But my gemfile is as follows:
gem 'rails', '~> 3.2.12'
gem 'rake' , '~> 10.0.4'
My gemfile.lock also has 3.2.12, but for some ...
1
vote
1answer
44 views
Restore Gemfile.lock from gitignore
In my Rails App, Gemfile.lock is ignored from the tracking through the .gitignore
But I want the file to be committed and tracked.
How do I do that?
0
votes
2answers
64 views
What's wrong with my Gemfile?
I tried to bundle install, but here is what I got:
/home/dcaclab/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/site_ruby/1.9.1/rubygems/version.rb:187:in `initialize': Malformed version number string = 1.0.3 ...
0
votes
2answers
56 views
Deploying Sinatra app to Passenger 4.0.0.rc6 by vlad. On production server it keeps requiring :development group in Gemfile
On production server Passenger(4.0.0.rc6 + nginx) keeps requiring the :development group in Gemfile. After manually commenting them out from Gemfile the app runs fine. Otherwise, Passenger would fail ...
2
votes
1answer
53 views
Ruby Bundler multiple sources in Gemfile
I need to ensure some of my gems are installed from our own gem repository rather than rubygems, while the rest are installed from rubygems. Is it possible in the Gemfile to ensure this is the case, ...
0
votes
1answer
127 views
Asset pipeline not working in rails production environment
I'm having an issue deploying to a VPS using Rails. My app works fine in the development environment, but when I push to production using Capistrano, I run into issues.
I am using unicorn, rails ...
0
votes
1answer
58 views
Error when installing spree_mail gem. spree_mail (= 0.40.0.4) ruby depends on
I'm trying to add spree_mail gem to my Spree project.
& when I run "bundle install"
I get this message:
Bundler could not find compatible versions for gem "devise":
In Gemfile:
spree_mail ...
0
votes
3answers
37 views
ruby heroku systemtimer issue
I'm trying to upload my rails project to heroku. I keep getting the error:
An error occurred while installing SystemTimer (1.2.3), and Bundler cannot
continue.
I've done some research and made ...
1
vote
2answers
79 views
Heroku Rails Page Not Found
I'm trying to deploy a sample rails app on heroku. After creating a very basic app, adding a git repository, committing everything and "heroku create", I push it up to heroku. No errors at all in ...
2
votes
2answers
90 views
Two versions of gems in production rails deployment
I think i have some issues with my gemfile in production, as it differs from my development, which i believe is causing my deployment (Capistrano) to fail, well at bundle install time at least
...
0
votes
0answers
237 views
rspec in Gemfile but not installing
I'm sorry I know this is probably a stupid question. I have gem 'rspec-rails' in my gemfile but everytime I do a bundle install it runs with no errors but it seems like the system is skipping over ...
0
votes
1answer
44 views
Unable to generate model: “You have already activated multi_json 1.7.2, but your Gemfile requires multi_json 1.4.0”
Here's what I put in:
$ rails generate scaffold Foobar content:string
Here's what I get:
/Users/nsbarr/.rvm/gems/ruby-1.9.3-p286@rails3tutorial2ndEd/gems/bundler-1.2.1/lib/bundler/runtime.rb:31:in ...
0
votes
2answers
50 views
Restore Gemfile.lock
I deleted the gemfile.lock from my Redmine 2.2, installed in my machine. How can I restore it?
I tried "bundle install", without success.
1
vote
2answers
74 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 => ...
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 ...
1
vote
1answer
32 views
Where is the config stored that rails uses to generate the gemfile for new projects?
When doing a "rails new x" a gemfile is created for the project, which bundler then uses to auto install the required gems.
I know that this file can be edited after it is created, but I would like ...
3
votes
1answer
88 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 ...
0
votes
1answer
34 views
How do i use a dependency from github in my gemspec?
I currently have the following in my Gemfile:
gem 'voteable_mongo'#, :github => 'kamilski81/voteable_mongo'
and I migrating my models into a .gemspec, but i'm not sure how this would look ...
1
vote
1answer
45 views
Run Rails App In Windows and Linux with different gemfiles
I'm looking for a way to set up my rails app/Gem file to conditionally include a gem based on if I am in linux or not. I need the app in Linux, but it is not compatible with windows and I don't need ...
0
votes
1answer
146 views
Cannot resolve gem dependencies - doorkeeper, sass-rails - on jruby using Rails 4
I have googled around a lot to find answers and cannot find one. How do I resolve this dependency issue. If I remove sass-rails (which isn't practical but just for testing issues) then the problem ...
0
votes
1answer
36 views
How to fix omniauth error with yelp api?
I am attempting to use the Yelp API in my Rails app but am having trouble doing so. I'm following the documentation here (https://github.com/Yelp/yelp-api/blob/master/v2/ruby/example.rb) but keep ...
2
votes
0answers
62 views
Updating Gemfile from Gemfile.lock, to freeze gems
After generating a Gemfile.lock from Gemfile, is there any tool to round-trip back to freeze versions in the Gemfile. I'd rather avoid doing it manually.
Background: It's good practice to freeze ...
0
votes
1answer
209 views
Heroku push rejected, failed to compile Ruby/rails app (Failed to install gems via Bundler)
I have found several questions on stack overflow similar to my problem and I tried each and every single solutions but unfortunately nothing worked for me. I tried removing Gemfile.lock then bundle ...
0
votes
1answer
69 views
Gemfile group dependencies
In a nutshell, I have a gemfile that contains
group :assets do
gem 'my_gem'
end
, a rake task my_rake_task that depends on :environment, a Rails initializer that needs my_gem, and the following ...
0
votes
2answers
37 views
How can I view all the gems for a specific gem group?
I'd like to see all the gems that are loaded for the test environment, with versions and dependencies. Is such a thing possible?
0
votes
2answers
54 views
how can I resolve this gemfile conflict
I'm getting this error after bundle install. How can I fix it?
Bundler could not find compatible versions for gem "excon":
In Gemfile:
locomotive-heroku (~> 0.0.2) ruby depends on
...
0
votes
1answer
621 views
Keep getting the following error “Please install the sqlite3 adapter: `gem install activerecord-sqlite3-adapter`”
Trying to run rails s and i get the error:
"Please install the sqlite3 adapter: gem install activerecord-sqlite3-adapter"
have tried bundle update and bundle install, seems to happen just after i ...
1
vote
1answer
2k 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
1answer
313 views
Rails App won't Push on Heroku - Tilt gem
This is what my Gemfile looks like:
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.12'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem ...
0
votes
1answer
196 views
Could not find gem 'jquery-rails (~> 1.1.6) ruby' in the gems available on this machine
I am trying to implement Social-stream with devise. when I am executing this rails generate social_stream:install. I am getting error Bundler could not find compatible versions for gem "devise":
In ...
1
vote
1answer
46 views
Uninitialized Constant from Gemfile
Just playing around with Ruby and have this very basic example
runner.rb:
require "bundler/setup"
include Mongo
mongo_client = MongoClient.new("localhost", 27017)
#mongo_client.database_names # ...
0
votes
1answer
135 views
attempting to execute any command starting “rails” yields “Could not locate Gemfile”
I am trying to install a new rails app. I've already got several rails apps on my machine, all working fine.
$ rails new app
Could not locate Gemfile
Then I figured I'd run a trace to figure out ...
2
votes
1answer
69 views
downgrading rails project from 3.2.1 to 2.3.3
My first Rails project deploy, and I've run into an issue.
The project is Rails 3.2.1, Ruby 1.9.3
Yesterday, I was given the hosting access, and they're having Rails 2.3.3, Ruby 1.8.7
If I'll decide ...
1
vote
1answer
16 views
How to develop gems where one is dependent on the other
I have a gem A which has a dependency on gem B. Both gems are my own and are currently in private development. I have no plans to publish these to rubygems.
I want to use gem A in my rails app.
...
0
votes
0answers
88 views
How to fix an error when changing Gemfile in Rails?
I'm new to rails and I keep running into an error when I edit the Gemfile to the below. It can also be found under Listing 2.1 at this tutorial: ...
1
vote
1answer
80 views
Bundler-Audit: How to implement post-“bundle install” hook?
I recently discovered the bundler-audit gem, and I'm interested in creating a hook that runs bundler-audit after all of my normal bundler commands (install, update, etc).
What's the best way to go ...
0
votes
0answers
63 views
App crashes with “AASM::InvalidTransition: Event 'process' cannot transition from 'processed' - 24 failed attempts”
I have the following information in my logfile:
2013-02-15T13:18:27+00:00 app[worker.1]: Starting the New Relic Agent.
2013-02-15T13:18:27+00:00 app[worker.1]: Installed New Relic Browser Monitoring ...
3
votes
2answers
67 views
Conditions on gem requirement
I would like to prevent the updating of a gem on my windows (rmagick), so it sticks to 2.12.0 mswin32. Still, my coworker needs to have the gem on his Darwin install...
So, I tried to do something ...
0
votes
2answers
93 views
Using “Bundle Update” in Rails produced bazillion errors on test
I'm trudging through this deeply error-prone tutorial on Ruby on Rails located here: http://ruby.railstutorial.org/ruby-on-rails-tutorial-book.
I've been working through a section about testing using ...
-1
votes
3answers
54 views
Why won't Bundler let me update a few gems? [closed]
......................................................
0
votes
1answer
393 views
Redmine Installation with activerecord-mysql-adapter
I'm working on a CentOS 6.3 Linux server with the Ruby version: 1.8.7 and the Gem version: 1.8.25
I'm trying to run the command: ruby script/rails server webrick -e production
It spits out this ...
1
vote
1answer
48 views
Require gems based on platform
I typically use Red Hat Linux during development; There I need to use gems like therubyracer and libv8. However, there are times I would like to have the ability to develop on Windows and not have ...
2
votes
1answer
328 views
Gem Issues with rbenv and bundler
I ahve rbenv installed with Ruby 1.9.3-p374 and I gem installed bundler.
I then set up a project diretory and set a .ruby-version file within to choose my 1.9.3 ruby version and then added a gemfile ...
0
votes
1answer
71 views
Referencing the (unreleased) activesupport 4.0 gem in a Gemfile
Is there a way to reference any of the Rails 4 gems (activesupport, activerecord, activemodel etc.) that sit in subdirectories of the Rails git repo on Github in a Gemfile? I have a library whose ...
2
votes
2answers
174 views
Troubling pushing to Heroku [closed]
I'm having trouble pushing to Heroku. Have looked around for quite a bit but haven't found a working solution. Seems like there are some missing libraries, the gemfile has sqlite under dev and test ...
