From: <jh...@us...> - 2012-03-02 16:13:23
|
Revision: 304 http://etch.svn.sourceforge.net/etch/?rev=304&view=rev Author: jheiss Date: 2012-03-02 16:13:17 +0000 (Fri, 02 Mar 2012) Log Message: ----------- Add a bundler Gemfile to make it easier for new users to get the necessary gems to run the test suite or otherwise experiment. Added Paths: ----------- trunk/Gemfile trunk/Gemfile.lock Added: trunk/Gemfile =================================================================== --- trunk/Gemfile (rev 0) +++ trunk/Gemfile 2012-03-02 16:13:17 UTC (rev 304) @@ -0,0 +1,14 @@ +source :rubygems +gem 'facter' +gem 'nokogiri' +# Tests will be run with nokogiri by default, but it might be nice to have +# libxml available too if you want to test with it as well. +gem 'libxml-ruby' + +group :server do + gem 'rails', '2.3.14' + gem 'sqlite3' + gem 'will_paginate', '~> 2.3.15' + gem 'searchlogic' +end + Added: trunk/Gemfile.lock =================================================================== --- trunk/Gemfile.lock (rev 0) +++ trunk/Gemfile.lock 2012-03-02 16:13:17 UTC (rev 304) @@ -0,0 +1,42 @@ +GEM + remote: http://rubygems.org/ + specs: + actionmailer (2.3.14) + actionpack (= 2.3.14) + actionpack (2.3.14) + activesupport (= 2.3.14) + rack (~> 1.1.0) + activerecord (2.3.14) + activesupport (= 2.3.14) + activeresource (2.3.14) + activesupport (= 2.3.14) + activesupport (2.3.14) + facter (1.6.5) + libxml-ruby (2.2.2) + nokogiri (1.5.0) + rack (1.1.3) + rails (2.3.14) + actionmailer (= 2.3.14) + actionpack (= 2.3.14) + activerecord (= 2.3.14) + activeresource (= 2.3.14) + activesupport (= 2.3.14) + rake (>= 0.8.3) + rake (0.9.2) + searchlogic (2.5.8) + activerecord (~> 2.3.12) + activerecord (~> 2.3.12) + sqlite3 (1.3.5) + will_paginate (2.3.16) + +PLATFORMS + ruby + +DEPENDENCIES + facter + libxml-ruby + nokogiri + rails (= 2.3.14) + searchlogic + sqlite3 + will_paginate (~> 2.3.15) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |