forked from natritmeyer/site_prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite_prism.gemspec
20 lines (18 loc) · 926 Bytes
/
site_prism.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require './lib/site_prism/version'
Gem::Specification.new do |s|
s.name = "site_prism"
s.version = SitePrism::VERSION
s.required_ruby_version = '>= 1.9.3'
s.platform = Gem::Platform::RUBY
s.author = "Nat Ritmeyer"
s.email = "[email protected]"
s.homepage = "http://github.com/natritmeyer/site_prism"
s.summary = "A Page Object Model DSL for Capybara"
s.description = "SitePrism gives you a simple, clean and semantic DSL for describing your site using the Page Object Model pattern, for use with Capybara"
s.post_install_message = "Make sure to add your project/company to https://github.com/natritmeyer/site_prism/wiki/Who-is-using-SitePrism"
s.files = Dir.glob("lib/**/*") + %w(LICENSE README.md)
s.require_path = 'lib'
s.add_dependency 'capybara', ['>= 2.1', '< 3.0']
s.add_dependency 'rspec', '< 4.0'
s.add_dependency 'addressable', '~> 2.3.3'
end