-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_changes.gemspec
More file actions
35 lines (27 loc) · 1.09 KB
/
test_changes.gemspec
File metadata and controls
35 lines (27 loc) · 1.09 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'test_changes/description'
require 'test_changes/summary'
require 'test_changes/version'
Gem::Specification.new do |spec|
spec.name = "test_changes"
spec.version = TestChanges::VERSION
spec.authors = ["George Mendoza"]
spec.email = ["gsmendoza@gmail.com"]
spec.summary = TestChanges::SUMMARY
spec.description = TestChanges::DESCRIPTION
spec.homepage = "https://github.com/gsmendoza/test_changes"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "slop", '~> 4.10'
spec.add_development_dependency 'debug'
spec.add_development_dependency 'rake', '~> 13.0.1', '>= 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.9.0'
spec.add_development_dependency 'rubocop', '~> 0.80.1'
end