Created
October 14, 2011 05:03
-
-
Save nickethier/1286294 to your computer and use it in GitHub Desktop.
Logstash Gemspec
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
source :rubygems | |
gem "logstash", :git => "git://github.com/logstash/logstash.git" |
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
source :rubygems | |
gem "logstash", :git => "git://github.com/nickethier/logstash.git" |
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
nethier@laptop:~/gitstuff/astro$ bundle | |
Fetching git://github.com/logstash/logstash.git | |
remote: Counting objects: 9410, done. | |
remote: Compressing objects: 100% (3435/3435), done. | |
remote: Total 9410 (delta 5869), reused 9285 (delta 5757) | |
Receiving objects: 100% (9410/9410), 1.99 MiB | 1.48 MiB/s, done. | |
Resolving deltas: 100% (5869/5869), done. | |
There was a LoadError while evaluating logstash.gemspec: | |
no such file to load -- /home/nethier/.rvm/gems/ruby-1.9.2-p290@test/bundler/gems/logstash-3467c8868a65/VERSION from | |
/home/nethier/.rvm/gems/ruby-1.9.2-p290@test/bundler/gems/logstash-3467c8868a65/logstash.gemspec:1:in `<main>' | |
Does it try to require a relative path? That doesn't work in Ruby 1.9. |
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
nethier@laptop:~/gitstuff/astro$ bundle | |
Fetching git://github.com/nickethier/logstash.git | |
remote: Counting objects: 9376, done. | |
remote: Compressing objects: 100% (3421/3421), done. | |
remote: Total 9376 (delta 5829), reused 9268 (delta 5734) | |
Receiving objects: 100% (9376/9376), 1.98 MiB | 1.49 MiB/s, done. | |
Resolving deltas: 100% (5829/5829), done. | |
Fetching gem metadata from http://rubygems.org/..... | |
Fetching gem metadata from http://rubygems.org/.. | |
Installing awesome_print (0.4.0) | |
Installing bson (1.4.0) | |
Installing bunny (0.7.8) | |
Installing ffi (1.0.9) with native extensions | |
Installing tins (0.3.1) | |
Installing file-tail (1.0.7) | |
Installing filewatch (0.2.5) | |
Installing json (1.6.1) with native extensions | |
Installing gelf (1.1.3) | |
Installing gmetric (0.1.3) | |
Installing haml (3.1.3) | |
Installing jls-grok (0.9.0) | |
Installing jruby-elasticsearch (0.0.11) | |
Installing rack (1.3.4) | |
Installing mizuno (0.4.0) | |
Installing mongo (1.4.0) | |
Installing rack-protection (1.1.4) | |
Installing tilt (1.3.3) | |
Installing sinatra (1.3.1) | |
Installing statsd-ruby (0.3.0) | |
Installing stomp (1.1.9) | |
Installing uuidtools (2.1.2) | |
Installing xmpp4r (0.5) | |
Using logstash (1.1.0beta5) from git://github.com/nickethier/logstash.git (at master) | |
Using bundler (1.1.rc) | |
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment