forked from rhburrows/capybara-iphone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capybara-iphone.gemspec
28 lines (23 loc) · 964 Bytes
/
capybara-iphone.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/capybara/iphone/version", __FILE__)
Gem::Specification.new do |s|
s.name = "capybara-iphone"
s.version = Capybara::Iphone::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ryan Burrows"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/capybara-iphone"
s.summary = "A capybara driver that acts like an iPhone"
s.description =
"A driver for capybara to test your rack application as an iPhone"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "capybara-iphone"
s.add_dependency("capybara", [">=0.3.9"])
s.add_development_dependency("rspec", [">= 2.0.0"])
s.add_development_dependency("sinatra", [">= 0.9.4"])
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map do |f|
f =~ /^bin\/(.*)/ ? $1 : nil
end.compact
s.require_path = 'lib'
end