Created
June 17, 2011 19:56
-
-
Save biow0lf/1032174 to your computer and use it in GitHub Desktop.
current bundler master broken outdated
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ bundle outdated | |
Updating git://github.com/jeroenvandijk/remarkable.git | |
Fetching dependency information from the API at http://rubygems.org/...... | |
Outdated gems included in the bundle: | |
* activesupport (3.0.9 > 3.0.8) | |
* builder (3.0.0 > 2.1.2) | |
* i18n (0.6.0 > 0.5.0) | |
* activemodel (3.0.9 > 3.0.8) | |
* erubis (2.7.0 > 2.6.6) | |
* rack (1.3.0 > 1.2.3) | |
* rack-mount (0.8.1 > 0.6.14) | |
* rack-test (1.0 > 0.5.7) | |
* actionpack (3.0.9 > 3.0.8) | |
* mail (2.3.0 > 2.2.19) | |
* actionmailer (3.0.9 > 3.0.8) | |
* arel (2.1.1 > 2.0.10) | |
* activerecord (3.0.9 > 3.0.8) | |
* activeresource (3.0.9 > 3.0.8) | |
* railties (3.0.9 > 3.0.8) | |
* rails (3.0.9 > 3.0.8) | |
Unfortunately, a fatal error has occurred. Please report this error to the Bundler issue tracker at https://github.com/carlhuda/bundler/issues so that we can fix it. Thanks! | |
/Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/cli.rb:324:in `block in outdated': undefined method `version' for nil:NilClass (NoMethodError) | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/spec_set.rb:12:in `block in each' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/spec_set.rb:12:in `each' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/spec_set.rb:12:in `each' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/cli.rb:306:in `outdated' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/vendor/thor/task.rb:22:in `run' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/vendor/thor/invocation.rb:118:in `invoke_task' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/vendor/thor.rb:246:in `dispatch' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/lib/bundler/vendor/thor/base.rb:389:in `start' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/gems/bundler-1.1.pre.5/bin/bundle:13:in `<top (required)>' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/bin/bundle:19:in `load' | |
from /Users/biow0lf/.rvm/gems/ruby-1.9.2-p180/bin/bundle:19:in `<main>' | |
$ cat Gemfile | |
source 'http://rubygems.org' | |
gem 'rails', '3.0.8' | |
gem 'jquery-rails' | |
gem 'sqlite3' | |
gem 'devise' | |
gem 'aws-ses', :require => 'aws/ses' | |
gem 'kaminari' | |
gem 'delayed_job' | |
gem 'liquid' | |
group :development, :test do | |
gem 'ruby-debug19', :require => 'ruby-debug' | |
gem 'cucumber' | |
gem 'cucumber-rails' | |
gem 'database_cleaner' | |
gem 'rspec' | |
gem 'rspec-rails' | |
gem 'remarkable_activerecord', :git => 'git://github.com/jeroenvandijk/remarkable.git' | |
gem 'ffaker' | |
gem 'fabrication' | |
gem 'launchy' | |
gem 'rcov', :require => false | |
gem 'stepdown', :require => false | |
gem 'guard' | |
gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i | |
gem 'growl', :require => false if RUBY_PLATFORM =~ /darwin/i | |
# linux part is not tested | |
gem 'rb-inotify', :require => false if RUBY_PLATFORM =~ /linux/i | |
gem 'libnotify', :require => false if RUBY_PLATFORM =~ /linux/i | |
gem 'guard-rspec' | |
gem 'guard-bundler' | |
gem 'guard-cucumber' | |
gem 'guard-livereload' | |
end | |
group :test do | |
gem 'email_spec' | |
end | |
# 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', :require => 'ruby-debug' | |
# 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 'webrat' | |
# end | |
$ cat Gemfile.lock | |
GIT | |
remote: git://github.com/jeroenvandijk/remarkable.git | |
revision: d8436c10a2258a64fea551634c1bb63878931cb8 | |
specs: | |
remarkable_activemodel (4.0.0.alpha4) | |
remarkable_core (= 4.0.0.alpha4) | |
rspec (~> 2.3) | |
remarkable_activerecord (4.0.0.alpha4) | |
activerecord (~> 3.0.0) | |
remarkable_activemodel (= 4.0.0.alpha4) | |
remarkable_core (= 4.0.0.alpha4) | |
rspec (~> 2.3) | |
remarkable_core (4.0.0.alpha4) | |
activesupport (~> 3.0.0) | |
i18n (~> 0.5) | |
rspec (~> 2.3) | |
GEM | |
remote: http://rubygems.org/ | |
specs: | |
abstract (1.0.0) | |
actionmailer (3.0.8) | |
actionpack (= 3.0.8) | |
mail (~> 2.2.19) | |
actionpack (3.0.8) | |
activemodel (= 3.0.8) | |
activesupport (= 3.0.8) | |
builder (~> 2.1.2) | |
erubis (~> 2.6.6) | |
i18n (~> 0.5.0) | |
rack (~> 1.2.1) | |
rack-mount (~> 0.6.14) | |
rack-test (~> 0.5.7) | |
tzinfo (~> 0.3.23) | |
activemodel (3.0.8) | |
activesupport (= 3.0.8) | |
builder (~> 2.1.2) | |
i18n (~> 0.5.0) | |
activerecord (3.0.8) | |
activemodel (= 3.0.8) | |
activesupport (= 3.0.8) | |
arel (~> 2.0.10) | |
tzinfo (~> 0.3.23) | |
activeresource (3.0.8) | |
activemodel (= 3.0.8) | |
activesupport (= 3.0.8) | |
activesupport (3.0.8) | |
addressable (2.2.6) | |
archive-tar-minitar (0.5.2) | |
arel (2.0.10) | |
aws-ses (0.4.2) | |
builder | |
builder | |
mail (~> 2.2.5) | |
mime-types | |
mime-types | |
xml-simple | |
xml-simple | |
bcrypt-ruby (2.1.4) | |
builder (2.1.2) | |
capybara (1.0.0.rc1) | |
mime-types (>= 1.16) | |
nokogiri (>= 1.3.3) | |
rack (>= 1.0.0) | |
rack-test (>= 0.5.4) | |
selenium-webdriver (~> 0.2.0) | |
xpath (~> 0.1.4) | |
childprocess (0.1.9) | |
ffi (~> 1.0.6) | |
columnize (0.3.2) | |
configuration (1.2.0) | |
cucumber (0.10.6) | |
builder (>= 2.1.2) | |
diff-lcs (>= 1.1.2) | |
gherkin (~> 2.4.0) | |
json (>= 1.4.6) | |
term-ansicolor (>= 1.0.5) | |
cucumber-rails (0.5.2) | |
capybara (>= 1.0.0.rc1) | |
cucumber (>= 0.10.5) | |
nokogiri (>= 1.4.4) | |
rack-test (>= 0.5.7) | |
daemons (1.1.3) | |
database_cleaner (0.6.7) | |
delayed_job (2.1.4) | |
activesupport (~> 3.0) | |
daemons | |
devise (1.3.4) | |
bcrypt-ruby (~> 2.1.2) | |
orm_adapter (~> 0.0.3) | |
warden (~> 1.0.3) | |
diff-lcs (1.1.2) | |
em-websocket (0.3.0) | |
addressable (>= 2.1.1) | |
eventmachine (>= 0.12.9) | |
email_spec (1.1.1) | |
rspec (~> 2.0) | |
erubis (2.6.6) | |
abstract (>= 1.0.0) | |
eventmachine (0.12.10) | |
fabrication (0.9.5) | |
ffaker (1.8.0) | |
ffi (1.0.9) | |
gherkin (2.4.0) | |
json (>= 1.4.6) | |
growl (1.0.3) | |
guard (0.4.2) | |
thor (~> 0.14.6) | |
guard-bundler (0.1.3) | |
bundler (>= 1.0.0) | |
guard (>= 0.2.2) | |
guard-cucumber (0.5.0) | |
cucumber (>= 0.10) | |
guard (>= 0.4.0) | |
guard-livereload (0.2.0) | |
em-websocket (>= 0.2.0) | |
guard (>= 0.4.0) | |
json (>= 1.5.1) | |
guard-rspec (0.4.0) | |
guard (>= 0.4.0) | |
haml (3.1.2) | |
i18n (0.5.0) | |
jquery-rails (1.0.10) | |
railties (~> 3.0) | |
thor (~> 0.14) | |
json (1.5.2) | |
json_pure (1.5.1) | |
kaminari (0.12.4) | |
rails (>= 3.0.0) | |
launchy (0.4.0) | |
configuration (>= 0.0.5) | |
rake (>= 0.8.1) | |
linecache19 (0.5.12) | |
ruby_core_source (>= 0.1.4) | |
liquid (2.2.2) | |
mail (2.2.19) | |
activesupport (>= 2.3.6) | |
i18n (>= 0.4.0) | |
mime-types (~> 1.16) | |
treetop (~> 1.4.8) | |
mime-types (1.16) | |
nokogiri (1.4.4) | |
orm_adapter (0.0.5) | |
polyglot (0.3.1) | |
rack (1.2.3) | |
rack-mount (0.6.14) | |
rack (>= 1.0.0) | |
rack-test (0.5.7) | |
rack (>= 1.0) | |
rails (3.0.8) | |
actionmailer (= 3.0.8) | |
actionpack (= 3.0.8) | |
activerecord (= 3.0.8) | |
activeresource (= 3.0.8) | |
activesupport (= 3.0.8) | |
bundler (~> 1.0) | |
railties (= 3.0.8) | |
railties (3.0.8) | |
actionpack (= 3.0.8) | |
activesupport (= 3.0.8) | |
rake (>= 0.8.7) | |
thor (~> 0.14.4) | |
rake (0.9.2) | |
rb-fsevent (0.4.0) | |
rcov (0.9.9) | |
rspec (2.6.0) | |
rspec-core (~> 2.6.0) | |
rspec-expectations (~> 2.6.0) | |
rspec-mocks (~> 2.6.0) | |
rspec-core (2.6.4) | |
rspec-expectations (2.6.0) | |
diff-lcs (~> 1.1.2) | |
rspec-mocks (2.6.0) | |
rspec-rails (2.6.1) | |
actionpack (~> 3.0) | |
activesupport (~> 3.0) | |
railties (~> 3.0) | |
rspec (~> 2.6.0) | |
ruby-debug-base19 (0.11.25) | |
columnize (>= 0.3.1) | |
linecache19 (>= 0.5.11) | |
ruby_core_source (>= 0.1.4) | |
ruby-debug19 (0.11.6) | |
columnize (>= 0.3.1) | |
linecache19 (>= 0.5.11) | |
ruby-debug-base19 (>= 0.11.19) | |
ruby_core_source (0.1.5) | |
archive-tar-minitar (>= 0.5.2) | |
rubyzip (0.9.4) | |
selenium-webdriver (0.2.1) | |
childprocess (>= 0.1.7) | |
ffi (>= 1.0.7) | |
json_pure | |
rubyzip | |
sqlite3 (1.3.3) | |
stepdown (0.5.0) | |
gherkin (~> 2.3) | |
haml (> 2.0) | |
term-ansicolor (1.0.5) | |
thor (0.14.6) | |
treetop (1.4.9) | |
polyglot (>= 0.3.1) | |
tzinfo (0.3.27) | |
warden (1.0.4) | |
rack (>= 1.0) | |
xml-simple (1.0.16) | |
xpath (0.1.4) | |
nokogiri (~> 1.3) | |
PLATFORMS | |
ruby | |
DEPENDENCIES | |
aws-ses | |
cucumber | |
cucumber-rails | |
database_cleaner | |
delayed_job | |
devise | |
email_spec | |
fabrication | |
ffaker | |
growl | |
guard | |
guard-bundler | |
guard-cucumber | |
guard-livereload | |
guard-rspec | |
jquery-rails | |
kaminari | |
launchy | |
liquid | |
rails (= 3.0.8) | |
rb-fsevent | |
rcov | |
remarkable_activerecord! | |
rspec | |
rspec-rails | |
ruby-debug19 | |
sqlite3 | |
stepdown | |
$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment