Skip to content

Instantly share code, notes, and snippets.

@nurey
Created November 4, 2011 16:36
Show Gist options
  • Save nurey/1339787 to your computer and use it in GitHub Desktop.
Save nurey/1339787 to your computer and use it in GitHub Desktop.
$ bundle update
Updating git://github.com/rails/journey
Updating git://github.com/rails/rails.git
Fetching source index for http://rubygems.org/
Bundler could not find compatible versions for gem "railties":
In Gemfile:
coffee-rails (>= 0) ruby depends on
railties (~> 3.1.0.rc1) ruby
rails (>= 0) ruby depends on
railties (3.2.0.beta)
Gemfile:
source 'http://rubygems.org'
gem "journey", :git => "git://github.com/rails/journey"
gem 'rails', :git => 'git://github.com/rails/rails.git'
#gem 'rails', :git => 'https://github.com/nurey/rails', :branch => 'v3.1.1_with_pg_schema_prepared_statements'
#gem 'rails', :path => '/Volumes/Devel/rails_nurey'
# gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'devise'
gem 'pg'
gem 'rack'
# gem 'tabs_on_rails'
gem 'simple-navigation'
gem 'haml'
gem 'formtastic', '~> 1.2.3'
gem 'railroady'
gem 'nifty-generators', :group => :development
gem "will_paginate", "~> 3.0.pre2"
gem 'paperclip'
gem 'paperclip-meta'
gem 'inherited_resources'
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'jquery-rails'
gem 'acts_as_list'
gem 'therubyracer'
gem 'thin'
gem 'apartment', :path => '/Volumes/Devel/apartment_nurey'
#gem 'apartment', :git => 'git://github.com/nurey/apartment.git', :branch => 'master'
gem 'foreman'
#gems for reporting
gem 'ruport', '1.6.3'
gem 'acts_as_reportable', '1.1.1'
gem 'beanstalk-client'
gem 'em-jack'
gem 'stalker'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'capybara'
gem 'capybara-webkit'
gem 'activerecord-nulldb-adapter'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'silent-postgres'
gem 'spork'
gem 'watchr'
gem 'foreman'
end
#tomg experiemental gems
group :tomg do
gem "resque"
gem "ohm"
end
@TylerRick
Copy link

So what's the solution? I'm having the same problem.

@TylerRick
Copy link

Never mind, I figured it out:

 group :assets do
-  gem 'sass-rails'
+  gem 'sass-rails', :git => 'git://github.com/rails/sass-rails.git'
   gem 'therubyracer'
-  gem 'coffee-rails'
+  gem 'coffee-rails', :git => 'git://github.com/rails/coffee-rails.git'
   gem 'uglifier'
 end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment