-
Notifications
You must be signed in to change notification settings - Fork 31
/
data_magic.gemspec
27 lines (22 loc) · 1.03 KB
/
data_magic.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/data_magic/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "data_magic"
gem.version = DataMagic::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Jeff Morgan"]
gem.email = ["[email protected]"]
gem.license = 'MIT'
gem.homepage = "http://github.com/cheezy/data_magic"
gem.summary = %q{Provides datasets to application via YAML files}
gem.description = %q{Provides datasets to application stored in YAML files}
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.2'
gem.add_dependency 'faker', '>= 1.1.2'
gem.add_dependency 'yml_reader', '>= 0.6'
gem.add_development_dependency 'rspec', '>= 2.12.0'
gem.add_development_dependency 'cucumber', '>= 1.2.0'
end