From a824533ad37126a6c2b663692fb304d74002d624 Mon Sep 17 00:00:00 2001 From: Tyler Brock Date: Mon, 6 Feb 2012 19:56:58 -0500 Subject: [PATCH] RUBY-407 created Gemfile --- Gemfile | 22 ++++++++++++++++++++++ Gemfile.lock | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..f7e7fb6 --- /dev/null +++ b/Gemfile @@ -0,0 +1,22 @@ +source :rubygems + +group :development, :test do + # Generic + gem "bundler" + gem "rake" + gem "json" + gem "bson_ext" + + # Testing + gem "mocha" + gem "shoulda" + gem "test-unit" + gem "ci_reporter" + + # Java + platforms :jruby do + gem "bouncy-castle-java" + gem "jruby-launcher" + gem "jruby-openssl" + end +end \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..942de8f --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,39 @@ +GEM + remote: http://rubygems.org/ + specs: + bouncy-castle-java (1.5.0146.1) + bson (1.5.2) + bson (1.5.2-java) + bson_ext (1.5.2) + bson (= 1.5.2) + builder (3.0.0) + ci_reporter (1.7.0) + builder (>= 2.1.2) + jruby-launcher (1.0.12-java) + jruby-openssl (0.7.5) + bouncy-castle-java (>= 1.5.0146.1) + json (1.6.5) + json (1.6.5-java) + metaclass (0.0.1) + mocha (0.10.3) + metaclass (~> 0.0.1) + rake (0.9.2.2) + shoulda (2.11.3) + test-unit (2.4.5) + +PLATFORMS + java + ruby + +DEPENDENCIES + bouncy-castle-java + bson_ext + bundler + ci_reporter + jruby-launcher + jruby-openssl + json + mocha + rake + shoulda + test-unit