-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrutabaga.gemspec
28 lines (22 loc) · 1.12 KB
/
rutabaga.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
# frozen_string_literal: true
require File.expand_path('lib/rutabaga/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ['Simply Business']
gem.email = ['[email protected]']
gem.description = 'Allows using feature from within RSpec and is built on top of Turnip'
gem.summary = 'Calling Turnip feature files from RSpec, which allows encapsulating a feature inside a describe block'
gem.homepage = 'https://github.com/simplybusiness/rutabaga'
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = 'rutabaga'
gem.require_paths = ['lib']
gem.version = Rutabaga::VERSION
gem.license = 'MIT'
gem.add_runtime_dependency 'activesupport'
gem.add_runtime_dependency 'rspec', ['~> 3.0']
gem.add_runtime_dependency 'turnip', ['>= 3.1.0', '< 4.4']
gem.add_development_dependency 'capybara'
gem.add_development_dependency 'pry', '~> 0'
gem.add_development_dependency 'simplycop'
end