From: Ladislav Martincik <[email protected]> I like to introduce Gemfile to our project as parallel alternative to built-in Rails config.gem. Reasons to use Bundler in future: 1) Rails3 dependency 2) Much more flexible configuration (different platforms) 3) One place to document all the Gem dependencies --- src/Gemfile | 31 +++++++++++++ src/Gemfile.lock | 130 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 161 insertions(+), 0 deletions(-) create mode 100644 src/Gemfile create mode 100644 src/Gemfile.lock
diff --git a/src/Gemfile b/src/Gemfile new file mode 100644 index 0000000..3c5368e --- /dev/null +++ b/src/Gemfile @@ -0,0 +1,31 @@ +source :rubygems + +gem 'rails', '~>2.3.8' +gem 'sqlite3-ruby', :require => 'sqlite3' +gem 'authlogic' +gem 'deltacloud-client', '~>0.0.9.8', :require => 'deltacloud' +gem 'haml' +gem 'will_paginate' +gem 'nokogiri', '~>1.4.0' +gem 'gnuplot' +gem 'scruffy' +gem 'compass', '~>0.10.2' +gem 'compass-960-plugin', :require => 'ninesixty' +gem 'simple-navigation' +gem 'typhoeus' +gem 'rb-inotify' + +group :development, :test do + gem 'ruby-debug', :platforms => :mri_18 + gem 'ruby-debug19', :platforms => :mri_19, :require => 'ruby-debug' +end + +group :test do + gem 'rspec-rails', '~>1.3.2' + gem 'test-unit', '~>1.2.3', :platforms => :mri_19 + gem 'factory_girl', '~>1.3.1', :require => false + gem 'cucumber-rails' + gem 'database_cleaner' + gem 'webrat' + gem 'timecop', '~>0.5.3' +end diff --git a/src/Gemfile.lock b/src/Gemfile.lock new file mode 100644 index 0000000..639f55a --- /dev/null +++ b/src/Gemfile.lock @@ -0,0 +1,130 @@ +GEM + remote: http://rubygems.org/ + specs: + actionmailer (2.3.9) + actionpack (= 2.3.9) + actionpack (2.3.9) + activesupport (= 2.3.9) + rack (~> 1.1.0) + activerecord (2.3.9) + activesupport (= 2.3.9) + activeresource (2.3.9) + activesupport (= 2.3.9) + activesupport (2.3.9) + archive-tar-minitar (0.5.2) + authlogic (2.1.6) + activesupport + builder (2.1.2) + columnize (0.3.1) + compass (0.10.5) + haml (>= 3.0.4) + compass-960-plugin (0.10.0) + compass (>= 0.10.0) + cucumber (0.9.2) + builder (~> 2.1.2) + diff-lcs (~> 1.1.2) + gherkin (~> 2.2.5) + json (~> 1.4.6) + term-ansicolor (~> 1.0.5) + cucumber-rails (0.3.2) + cucumber (>= 0.8.0) + database_cleaner (0.5.2) + deltacloud-client (0.0.9.8) + nokogiri (>= 1.4.1) + rest-client (>= 1.4.2) + diff-lcs (1.1.2) + factory_girl (1.3.1) + ffi (0.6.3) + rake (>= 0.8.7) + gherkin (2.2.8) + json (~> 1.4.6) + term-ansicolor (~> 1.0.5) + gnuplot (2.3.4) + haml (3.0.21) + hoe (2.6.2) + rake (>= 0.8.7) + rubyforge (>= 2.0.4) + json (1.4.6) + json_pure (1.4.6) + linecache (0.43) + linecache19 (0.5.11) + ruby_core_source (>= 0.1.4) + mime-types (1.16) + nokogiri (1.4.3.1) + rack (1.1.0) + rack-test (0.5.6) + rack (>= 1.0) + rails (2.3.9) + actionmailer (= 2.3.9) + actionpack (= 2.3.9) + activerecord (= 2.3.9) + activeresource (= 2.3.9) + activesupport (= 2.3.9) + rake (>= 0.8.3) + rake (0.8.7) + rb-inotify (0.8.1) + ffi (>= 0.5.0) + rest-client (1.6.1) + mime-types (>= 1.16) + rspec (1.3.1) + rspec-rails (1.3.3) + rack (>= 1.0.0) + rspec (= 1.3.1) + ruby-debug (0.10.3) + columnize (>= 0.1) + ruby-debug-base (~> 0.10.3.0) + ruby-debug-base (0.10.3) + linecache (>= 0.3) + ruby-debug-base19 (0.11.24) + 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.4) + archive-tar-minitar (>= 0.5.2) + rubyforge (2.0.4) + json_pure (>= 1.1.7) + scruffy (0.2.6) + simple-navigation (3.0.0) + activesupport (>= 2.3.2) + sqlite3-ruby (1.3.1) + term-ansicolor (1.0.5) + test-unit (1.2.3) + hoe (>= 1.5.1) + typhoeus (0.1.31) + rack + webrat (0.7.1) + nokogiri (>= 1.2.0) + rack (>= 1.0) + rack-test (>= 0.5.3) + will_paginate (2.3.15) + +PLATFORMS + ruby + +DEPENDENCIES + authlogic + compass (~> 0.10.2) + compass-960-plugin + cucumber-rails + database_cleaner + deltacloud-client (~> 0.0.9.8) + factory_girl (= 1.3.1) + gnuplot + haml + nokogiri (~> 1.4.0) + rails (~> 2.3.9) + rb-inotify + rspec-rails (~> 1.3.2) + ruby-debug + ruby-debug19 + scruffy + simple-navigation + sqlite3-ruby + test-unit (~> 1.2.3) + typhoeus + webrat + will_paginate -- 1.7.2.3 _______________________________________________ deltacloud-devel mailing list [email protected] https://fedorahosted.org/mailman/listinfo/deltacloud-devel
