Created
May 30, 2013 13:26
-
-
Save mkristian/5677789 to your computer and use it in GitHub Desktop.
related to nexus-ruby-support #25
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 'http://localhost:4711/nexus/content/repositories/gemsproxy' | |
gem 'httparty' |
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
Gem::Specification.new do |s| | |
s.name = %q{memcache-client} | |
s.version = "1.6.3" | |
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | |
s.authors = ["Eric Hodel", "Robert Cottrell", "Mike Perham"] | |
s.date = %q{2009-02-14} | |
s.description = %q{A Ruby library for accessing memcached.} | |
s.email = %q{[email protected]} | |
s.files = ["README.rdoc", "LICENSE.txt", "History.txt", "Rakefile", "lib/continuum.rb", "lib/memcache.rb", "lib/memcache_util.rb", "test/test_mem_cache.rb"] | |
s.homepage = %q{http://github.com/mperham/memcache-client} | |
s.require_paths = ["lib"] | |
s.rubyforge_project = %q{seattlerb} | |
s.rubygems_version = %q{1.3.7} | |
s.summary = %q{A Ruby library for accessing memcached.} | |
s.test_files = ["test/test_mem_cache.rb"] | |
if s.respond_to? :specification_version then | |
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | |
s.specification_version = 2 | |
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | |
s.add_runtime_dependency(%q<["RubyInline"]>, [">= 0"]) | |
else | |
s.add_dependency(%q<["RubyInline"]>, [">= 0"]) | |
end | |
else | |
s.add_dependency(%q<["RubyInline"]>, [">= 0"]) | |
end | |
end |
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 install --verbose | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies | |
HTTP Success | |
Fetching gem metadata from http://localhost:4711/nexus/content/repositories/gemsproxy/ | |
Query List: ["httparty"] | |
Query Gemcutter Dependency Endpoint API: httparty | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=httparty | |
HTTP Success | |
Query List: ["activesupport", "json", "jnunemaker-crack", "crack", "multi_json", "multi_xml"] | |
Query Gemcutter Dependency Endpoint API: activesupport,json,jnunemaker-crack,crack,multi_json,multi_xml | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=activesupport,json,jnunemaker-crack,crack,multi_json,multi_xml | |
HTTP Success | |
Query List: ["i18n", "tzinfo", "builder", "memcache-client", "minitest", "thread_safe"] | |
Query Gemcutter Dependency Endpoint API: i18n,tzinfo,builder,memcache-client,minitest,thread_safe | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=i18n,tzinfo,builder,memcache-client,minitest,thread_safe | |
HTTP Success | |
Query List: ["hoe", "ZenTest", ["RubyInline"], "atomic"] | |
Query Gemcutter Dependency Endpoint API: hoe,ZenTest,RubyInline,atomic | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=hoe,ZenTest,RubyInline,atomic | |
HTTP Success | |
Query List: ["rake", "rubyforge", "gemcutter"] | |
Query Gemcutter Dependency Endpoint API: rake,rubyforge,gemcutter | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=rake,rubyforge,gemcutter | |
HTTP Success | |
Query List: ["json_pure", "net-scp"] | |
Query Gemcutter Dependency Endpoint API: json_pure,net-scp | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=json_pure,net-scp | |
HTTP Success | |
Query List: ["spruz", "net-ssh"] | |
Query Gemcutter Dependency Endpoint API: spruz,net-ssh | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=spruz,net-ssh | |
HTTP Success | |
Query List: ["needle", "jruby-pageant"] | |
Query Gemcutter Dependency Endpoint API: needle,jruby-pageant | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=needle,jruby-pageant | |
HTTP Success | |
Query List: [] | |
Fetching gem metadata from http://localhost:4711/nexus/content/repositories/gemsproxy/ | |
Query List: ["jnunemaker-crack"] | |
Query Gemcutter Dependency Endpoint API: jnunemaker-crack | |
Fetching from: http://localhost:4711/nexus/content/repositories/gemsproxy/api/v1/dependencies?gems=jnunemaker-crack | |
HTTP Success | |
Query List: [] | |
Resolving dependencies... | |
Using multi_json (1.7.4) from /home/christian/.gem/ruby/1.9.1/specifications/multi_json-1.7.4.gemspec | |
Using multi_xml (0.5.3) from /home/christian/.gem/ruby/1.9.1/specifications/multi_xml-0.5.3.gemspec | |
Using httparty (0.11.0) from /home/christian/.gem/ruby/1.9.1/specifications/httparty-0.11.0.gemspec | |
Using bundler (1.3.5) from /home/christian/.gem/ruby/1.9.1/specifications/bundler-1.3.5.gemspec | |
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