Skip to content

Commit

Permalink
Move from Isolate to Bundler
Browse files Browse the repository at this point in the history
This plays better with Travis and lot of dev environments.
  • Loading branch information
luislavena committed Apr 8, 2013
1 parent 78fbefa commit 7e33292
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,8 @@
.rvmrc
.*.sw[pon] .*.sw[pon]
.ruby-version
.rvmrc
coverage coverage
doc/api doc/api
tmp Gemfile.lock
pkg pkg
tmp
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ rvm:
before_install: before_install:
- gem update --system 1.8.25 - gem update --system 1.8.25
- gem --version - gem --version
- gem install isolate
4 changes: 3 additions & 1 deletion Isolate → Gemfile
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,8 @@
source "https://rubygems.org"

gem "rake" gem "rake"


env :development do group :development do
gem "rspec", "~> 2.8.0" gem "rspec", "~> 2.8.0"
gem "cucumber", "~> 1.1.4" gem "cucumber", "~> 1.1.4"
end end
6 changes: 0 additions & 6 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,11 +11,5 @@
# Thank You. # Thank You.
# #


begin
require "isolate/now"
rescue LoadError => e
abort "This project requires Isolate to work. Please `gem install isolate` and try again."
end

# load rakefile extensions (tasks) # load rakefile extensions (tasks)
Dir['tasks/*.rake'].sort.each { |f| load f } Dir['tasks/*.rake'].sort.each { |f| load f }

0 comments on commit 7e33292

Please sign in to comment.