Skip to content

Commit

Permalink
Add Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
staszek committed Apr 14, 2011
1 parent 767f6ee commit 1f5d279
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .bundle/config
@@ -0,0 +1,2 @@
---
BUNDLE_DISABLE_SHARED_GEMS: "1"
11 changes: 11 additions & 0 deletions 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
41 changes: 41 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -25,7 +25,7 @@ Rake::TestTask.new(:test) do |test|
test.verbose = true
end

task :test => :check_dependencies
task :test

task :default => :test

Expand Down
2 changes: 0 additions & 2 deletions 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"

Expand Down

0 comments on commit 1f5d279

Please sign in to comment.