Skip to content

Commit

Permalink
Merge "Use git reference for cf gems in elasticsearch service"
Browse files Browse the repository at this point in the history
  • Loading branch information
frhwang authored and Gerrit Code Review committed Jun 25, 2012
2 parents 059f696 + dfb9fcb commit 851bb9d
Show file tree
Hide file tree
Showing 19 changed files with 73 additions and 55 deletions.
17 changes: 7 additions & 10 deletions elasticsearch/Gemfile
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
source :rubygems

gem "datamapper", ">= 0.10.2"
gem "dm-sqlite-adapter"
gem "do_sqlite3"
gem "eventmachine"
gem 'eventmachine', :git => 'git://github.com/cloudfoundry/eventmachine.git', :branch => 'release-0.12.11-cf'
gem "em-http-request"
gem "nats"
gem "ruby-hmac"
gem "uuidtools"
gem "rest-client"
gem "datamapper", ">= 0.10.2"
gem "dm-sqlite-adapter"
gem "sinatra"
gem "thin"
gem "rest-client"

gem 'vcap_common', '>= 1.0.8', :require => ['vcap/common', 'vcap/component']
gem 'vcap_logging', '>=0.1.3', :require => ['vcap/logging']
gem "vcap_services_base"
gem 'vcap_common', :require => ['vcap/common', 'vcap/component'], :git => 'git://github.com/cloudfoundry/vcap-common.git', :ref => 'a7779114db'
gem 'vcap_logging', :require => ['vcap/logging'], :git => 'git://github.com/cloudfoundry/common.git', :ref => 'b96ec1192'
gem 'vcap_services_base', :git => 'git://github.com/cloudfoundry/vcap-services-base.git', :ref => '6bf11935c7'

group :test do
gem "rake"
gem "rspec"
gem "rcov"
gem "simplecov"
gem "simplecov-rcov"
gem "ci_reporter"
Expand Down
105 changes: 63 additions & 42 deletions elasticsearch/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,53 @@
GIT
remote: git://github.com/cloudfoundry/common.git
revision: b96ec1192d961925d91e17ca3831f8547489d918
ref: b96ec1192
specs:
vcap_logging (1.0.2)
rake

GIT
remote: git://github.com/cloudfoundry/eventmachine.git
revision: 2806c630d8631d5dcf9fb2555f665b829052aabe
branch: release-0.12.11-cf
specs:
eventmachine (0.12.11.cloudfoundry.3)

GIT
remote: git://github.com/cloudfoundry/vcap-common.git
revision: a7779114db666a1cf5eedf3fd1576c657ccafb6d
ref: a7779114db
specs:
vcap_common (1.0.13)
eventmachine (~> 0.12.11.cloudfoundry.3)
nats (~> 0.4.22.beta.8)
posix-spawn (~> 0.3.6)
thin (~> 1.3.1)
yajl-ruby (~> 0.8.3)

GIT
remote: git://github.com/cloudfoundry/vcap-services-base.git
revision: 6bf11935c7ae88e30dc1c200161ca74e3babf3f9
ref: 6bf11935c7
specs:
vcap_services_base (0.1.11)
curb (~> 0.7.16)
datamapper (~> 1.1.0)
do_sqlite3 (~> 0.10.3)
em-http-request (~> 0.3.0)
eventmachine (~> 0.12.11.cloudfoundry.3)
eventmachine_httpserver (~> 0.2.1)
json (~> 1.4.6)
nats (~> 0.4.22.beta.8)
resque (~> 1.20)
resque-status (~> 0.3.2)
ruby-hmac (~> 0.4.0)
sinatra (~> 1.2.3)
thin (~> 1.3.1)
uuidtools (~> 2.1.2)
vcap_common (>= 1.0.8)
vcap_logging (>= 1.0.2)

GEM
remote: http://rubygems.org/
specs:
Expand All @@ -6,7 +56,7 @@ GEM
builder (3.0.0)
ci_reporter (1.6.4)
builder (>= 2.1.2)
curb (0.7.16)
curb (0.7.18)
daemons (1.1.5)
data_objects (0.10.3)
addressable (~> 2.1)
Expand Down Expand Up @@ -59,24 +109,22 @@ GEM
escape_utils
eventmachine (>= 0.12.9)
escape_utils (0.2.3)
eventmachine (0.12.11.cloudfoundry.3)
eventmachine_httpserver (0.2.1)
fastercsv (1.5.4)
json (1.4.6)
json_pure (1.6.5)
macaddr (1.5.0)
systemu (>= 2.4.0)
json_pure (1.7.3)
macaddr (1.6.1)
systemu (~> 2.5.0)
mime-types (1.16)
multi_json (1.0.4)
nats (0.4.22.beta.8)
daemons (>= 1.1.4)
nats (0.4.24)
daemons (>= 1.1.5)
eventmachine (>= 0.12.10)
json_pure (>= 1.6.1)
json_pure (>= 1.7.3)
thin (>= 1.3.1)
posix-spawn (0.3.6)
rack (1.4.0)
rake (0.9.2.2)
rcov (0.9.9)
redis (2.2.2)
redis-namespace (1.0.3)
redis (< 3.0.0)
Expand All @@ -88,7 +136,7 @@ GEM
redis-namespace (~> 1.0.2)
sinatra (>= 0.9.2)
vegas (~> 0.1.2)
resque-status (0.3.2)
resque-status (0.3.3)
redisk (>= 0.2.1)
resque (~> 1.19)
uuid (~> 2.3)
Expand All @@ -113,7 +161,7 @@ GEM
rack (~> 1.1)
tilt (>= 1.2.2, < 2.0)
stringex (1.2.1)
systemu (2.5.0)
systemu (2.5.1)
thin (1.3.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
Expand All @@ -122,30 +170,6 @@ GEM
uuid (2.3.5)
macaddr (~> 1.0)
uuidtools (2.1.2)
vcap_common (1.0.8)
eventmachine (~> 0.12.11.cloudfoundry.3)
nats (~> 0.4.22.beta.8)
posix-spawn (~> 0.3.6)
thin (~> 1.3.1)
yajl-ruby (~> 0.8.3)
vcap_logging (0.1.3)
vcap_services_base (0.1.9)
curb (~> 0.7.16)
datamapper (~> 1.1.0)
do_sqlite3 (~> 0.10.3)
em-http-request (~> 0.3.0)
eventmachine (~> 0.12.11.cloudfoundry.3)
eventmachine_httpserver (~> 0.2.1)
json (~> 1.4.6)
nats (~> 0.4.22.beta.8)
resque (~> 1.20)
resque-status (~> 0.3.2)
ruby-hmac (~> 0.4.0)
sinatra (~> 1.2.3)
thin (~> 1.3.1)
uuidtools (~> 2.1.2)
vcap_common (>= 1.0.8)
vcap_logging (>= 0.1.3)
vegas (0.1.11)
rack (>= 1.0.0)
yajl-ruby (0.8.3)
Expand All @@ -157,12 +181,9 @@ DEPENDENCIES
ci_reporter
datamapper (>= 0.10.2)
dm-sqlite-adapter
do_sqlite3
em-http-request
eventmachine
nats
eventmachine!
rake
rcov
rest-client
rspec
ruby-hmac
Expand All @@ -171,6 +192,6 @@ DEPENDENCIES
sinatra
thin
uuidtools
vcap_common (>= 1.0.8)
vcap_logging (>= 0.1.3)
vcap_services_base
vcap_common!
vcap_logging!
vcap_services_base!
6 changes: 3 additions & 3 deletions elasticsearch/Rakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
require 'rake'

desc "Run specs"
task "spec" => ["bundler:install:test", "test:spec"]
task "spec" => ["test:spec"]

desc "Run specs using SimpleCov"
task "spec:rcov" => ["bundler:install:test", "test:spec:rcov"]
task "spec:rcov" => ["test:spec:rcov"]

desc "Run ci using SimpleCov"
task "spec:ci" => ["bundler:install:test", "test:spec:ci"]
task "spec:ci" => ["test:spec:ci"]

namespace "bundler" do
desc "Install gems"
Expand Down
Binary file removed elasticsearch/vendor/cache/curb-0.7.16.gem
Binary file not shown.
Binary file added elasticsearch/vendor/cache/curb-0.7.18.gem
Binary file not shown.
Binary file not shown.
Binary file removed elasticsearch/vendor/cache/json_pure-1.6.5.gem
Binary file not shown.
Binary file added elasticsearch/vendor/cache/json_pure-1.7.3.gem
Binary file not shown.
Binary file removed elasticsearch/vendor/cache/macaddr-1.5.0.gem
Binary file not shown.
Binary file added elasticsearch/vendor/cache/macaddr-1.6.1.gem
Binary file not shown.
Binary file removed elasticsearch/vendor/cache/nats-0.4.22.beta.8.gem
Binary file not shown.
Binary file added elasticsearch/vendor/cache/nats-0.4.24.gem
Binary file not shown.
Binary file removed elasticsearch/vendor/cache/rcov-0.9.9.gem
Binary file not shown.
Binary file removed elasticsearch/vendor/cache/resque-status-0.3.2.gem
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed elasticsearch/vendor/cache/vcap_common-1.0.8.gem
Binary file not shown.
Binary file removed elasticsearch/vendor/cache/vcap_logging-0.1.3.gem
Binary file not shown.
Binary file not shown.

0 comments on commit 851bb9d

Please sign in to comment.