Skip to content

Commit

Permalink
Add pry dependency and rake console task
Browse files Browse the repository at this point in the history
  • Loading branch information
irees committed Sep 22, 2015
1 parent 5429fe4 commit b201e1d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gem 'simplecov', :require => false
gem 'rubyzip', '~> 1.1'
gem 'vcr'
gem 'fakeweb'
gem 'pry'
8 changes: 8 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
GEM
remote: https://rubygems.org/
specs:
coderay (1.1.0)
diff-lcs (1.1.3)
fakeweb (1.3.0)
method_source (0.8.2)
multi_json (1.0.4)
pry (0.10.1)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
rake (0.9.2.2)
rspec (2.8.0)
rspec-core (~> 2.8.0)
Expand All @@ -18,6 +24,7 @@ GEM
multi_json (~> 1.0)
simplecov-html (~> 0.5.3)
simplecov-html (0.5.3)
slop (3.6.0)
vcr (1.11.3)

PLATFORMS
Expand All @@ -26,6 +33,7 @@ PLATFORMS
DEPENDENCIES
fakeweb
multi_json (= 1.0.4)
pry
rake
rspec
rubyzip (~> 1.1)
Expand Down
7 changes: 7 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,11 @@ RSpec::Core::RakeTask.new do |t|
t.pattern = './spec/**/*_spec.rb'
end

task :console do
require 'pry'
require 'gtfs'
ARGV.clear
Pry.start
end

task :default => [:spec]

0 comments on commit b201e1d

Please sign in to comment.