-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
formulaic.gemspec
36 lines (31 loc) · 1.22 KB
/
formulaic.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
33
34
35
36
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'formulaic/version'
Gem::Specification.new do |spec|
spec.name = 'formulaic'
spec.version = Formulaic::VERSION
spec.authors = ['Caleb Hearth']
spec.email = ['[email protected]']
spec.summary = 'Simplify form filling with Capybara'
spec.description = <<-DESCRIPTION.sub(/^ +/, '')
Removes the tedium of formulaic form filling with Capybara by allowing you
to specify a hash of attributes to be input rather than procedurally calling
Capybara’s DSL methods.
DESCRIPTION
spec.homepage = 'https://github.com/calebhearth/formulaic'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ['lib']
spec.metadata = {
"funding-uri" => "https://github.com/sponsors/calebhearth"
}
spec.add_dependency 'capybara'
spec.add_dependency 'i18n'
spec.add_dependency 'activesupport'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'pry'
end