forked from pgib/twilio-test-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtwilio-test-toolkit-alt.gemspec
33 lines (26 loc) · 1.26 KB
/
twilio-test-toolkit-alt.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
29
30
31
32
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'twilio-test-toolkit/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'twilio-test-toolkit-hs'
s.version = TwilioTestToolkit::VERSION
s.authors = ['Jack Nichols', 'Patrick Gibson', 'Ryan Guerrettaz']
s.email = ['jack@jmongol.com']
s.homepage = 'https://github.com/healthsherpa/twilio-test-toolkit'
s.summary = 'Better integration tests for apps that use Twilio'
s.description = 'Better integration tests for apps that use Twilio. This is an alternate version of the pgib forked version of the original JMongol version.'
s.licenses = ['MIT']
s.files = Dir['{app,config,db,lib}/**/*'] + ['MIT-LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['spec/**/*']
s.executables = `git ls-files -- bin/*`.split('\n').map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'capybara'
s.add_dependency 'uuidtools'
s.add_development_dependency 'rails', '~> 3.2.12'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'sqlite3-ruby'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'jquery-rails'
end