-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchecklist.gemspec
28 lines (24 loc) · 1.06 KB
/
checklist.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/checklist/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Maciej Pasternacki']
gem.email = ['[email protected]']
gem.description = 'Multi-step checklist execution'
gem.summary = 'Define and execute a checklist'
gem.homepage = 'https://github.com/3ofcoins/checklist'
gem.licenses = ['MIT']
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'checklist'
gem.require_paths = ['lib']
gem.version = Checklist::VERSION
gem.add_dependency 'formatador'
gem.add_dependency 'locale'
gem.add_development_dependency 'bundler', '~> 1.3'
gem.add_development_dependency 'minitest'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'wrong', '>= 0.7.1'
gem.add_development_dependency 'rubocop'
end