Skip to content

Commit

Permalink
add rake spec command.
Browse files Browse the repository at this point in the history
  • Loading branch information
siong1987 committed Jan 7, 2013
1 parent cb60474 commit 98618d8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 18 deletions.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -4,6 +4,7 @@ gemspec # Specify your gem's dependencies in phony_number.gemspec
# For testing
gem 'sqlite3'

gem 'rake'
gem 'rspec', '~> 2.11.0'
gem 'guard', '~> 1.2.0'
gem 'guard-bundler', '~> 1.0.0'
Expand Down
37 changes: 19 additions & 18 deletions Gemfile.lock
@@ -1,30 +1,29 @@
PATH
remote: .
specs:
phony_rails (0.1.10)
activerecord (~> 3.0)
countries (~> 0.8.2)
phony (~> 1.7.7)
phony_rails (0.1.12)
activerecord (>= 3.0)
countries (>= 0.8.2)
phony (>= 1.7.7)

GEM
remote: http://rubygems.org/
specs:
activemodel (3.2.6)
activesupport (= 3.2.6)
activemodel (3.2.10)
activesupport (= 3.2.10)
builder (~> 3.0.0)
activerecord (3.2.6)
activemodel (= 3.2.6)
activesupport (= 3.2.6)
activerecord (3.2.10)
activemodel (= 3.2.10)
activesupport (= 3.2.10)
arel (~> 3.0.2)
tzinfo (~> 0.3.29)
activesupport (3.2.6)
activesupport (3.2.10)
i18n (~> 0.6)
multi_json (~> 1.0)
arel (3.0.2)
builder (3.0.0)
countries (0.8.2)
currencies (= 0.4.0)
currencies (>= 0.2.0)
builder (3.0.4)
countries (0.8.4)
currencies (>= 0.4.0)
currencies (0.4.0)
diff-lcs (1.1.3)
ffi (1.1.0)
Expand All @@ -37,13 +36,14 @@ GEM
guard (~> 1.1)
guard-rspec (1.2.0)
guard (>= 1.1)
i18n (0.6.0)
i18n (0.6.1)
listen (0.4.7)
rb-fchange (~> 0.0.5)
rb-fsevent (~> 0.9.1)
rb-inotify (~> 0.8.8)
multi_json (1.3.6)
phony (1.7.10)
multi_json (1.5.0)
phony (1.8.4)
rake (10.0.3)
rb-fchange (0.0.5)
ffi
rb-fsevent (0.9.1)
Expand All @@ -59,7 +59,7 @@ GEM
rspec-mocks (2.11.1)
sqlite3 (1.3.6)
thor (0.15.4)
tzinfo (0.3.33)
tzinfo (0.3.35)

PLATFORMS
ruby
Expand All @@ -70,6 +70,7 @@ DEPENDENCIES
guard-bundler (~> 1.0.0)
guard-rspec (~> 1.2.0)
phony_rails!
rake
rb-fsevent
rspec (~> 2.11.0)
sqlite3
4 changes: 4 additions & 0 deletions Rakefile 100644 → 100755
@@ -1,2 +1,6 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
task :default => :spec

0 comments on commit 98618d8

Please sign in to comment.