Created
September 4, 2011 10:24
-
-
Save jarmo/1192631 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source :rubygems | |
# load WatirSplash and it's dependencies | |
gem "watirsplash", "2.1.1" | |
platforms :mingw, :mswin do | |
gem "watir", "2.0.1" | |
gem "win32screenshot", "~>1.0.5", :require => "win32/screenshot" | |
end | |
gem "watir-webdriver", "~>0.3.1" | |
gem "firewatir", ">= 1.9.3" | |
gem "rspec", "~>2.6.0" | |
gem "spork", "~>0.9.0.rc9" | |
# add your project specific dependencies here: | |
# gem "ruby-debug", "0.10.3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Specification.new do |s| | |
# ... | |
s.add_dependency("rake", "0.8.7") | |
s.add_dependency("require_all") | |
s.add_dependency("syntax") | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
begin | |
gem "watir", "=2.0.1" | |
require "watir" | |
rescue Gem::LoadError | |
puts "\nWatir dependency is missing. Install it with:" | |
puts " gem install watir -v 2.0.1" | |
exit 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment