From 1f5d2795598f988672ef9ec6c120185fdb003c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Kolarzowski?= Date: Thu, 14 Apr 2011 21:08:18 +0200 Subject: [PATCH] Add Gemfile --- .bundle/config | 2 ++ Gemfile | 11 +++++++++++ Gemfile.lock | 41 +++++++++++++++++++++++++++++++++++++++++ Rakefile | 2 +- test/helper.rb | 2 -- 5 files changed, 55 insertions(+), 3 deletions(-) create mode 100644 .bundle/config create mode 100755 Gemfile create mode 100644 Gemfile.lock diff --git a/.bundle/config b/.bundle/config new file mode 100644 index 0000000..8ebbe30 --- /dev/null +++ b/.bundle/config @@ -0,0 +1,2 @@ +--- +BUNDLE_DISABLE_SHARED_GEMS: "1" diff --git a/Gemfile b/Gemfile new file mode 100755 index 0000000..e7ca90d --- /dev/null +++ b/Gemfile @@ -0,0 +1,11 @@ +source 'http://gemcutter.org' +source 'http://gems.github.com' + +gem 'rails', '=2.3.10' + +group :development do + gem 'mocha', '=0.9.12' + gem 'shoulda', '=2.11.3' + gem 'jeweler', '=1.5.2' + gem 'sqlite3' +end \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..1c0a180 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,41 @@ +GEM + remote: http://gemcutter.org/ + remote: http://gems.github.com/ + specs: + actionmailer (2.3.10) + actionpack (= 2.3.10) + actionpack (2.3.10) + activesupport (= 2.3.10) + rack (~> 1.1.0) + activerecord (2.3.10) + activesupport (= 2.3.10) + activeresource (2.3.10) + activesupport (= 2.3.10) + activesupport (2.3.10) + git (1.2.5) + jeweler (1.5.2) + bundler (~> 1.0.0) + git (>= 1.2.5) + rake + mocha (0.9.12) + rack (1.1.2) + rails (2.3.10) + actionmailer (= 2.3.10) + actionpack (= 2.3.10) + activerecord (= 2.3.10) + activeresource (= 2.3.10) + activesupport (= 2.3.10) + rake (>= 0.8.3) + rake (0.8.7) + shoulda (2.11.3) + sqlite3 (1.3.3) + +PLATFORMS + ruby + +DEPENDENCIES + jeweler (= 1.5.2) + mocha (= 0.9.12) + rails (= 2.3.10) + shoulda (= 2.11.3) + sqlite3 diff --git a/Rakefile b/Rakefile index 68d2835..2f97afc 100644 --- a/Rakefile +++ b/Rakefile @@ -25,7 +25,7 @@ Rake::TestTask.new(:test) do |test| test.verbose = true end -task :test => :check_dependencies +task :test task :default => :test diff --git a/test/helper.rb b/test/helper.rb index 6261cb7..8c2a50c 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -1,9 +1,7 @@ -require 'rubygems' require 'test/unit' require 'shoulda' require "mocha" require 'active_record' -require "action_view" require "action_controller" require "routes"