-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhanabi.gemspec
17 lines (17 loc) · 1.01 KB
/
hanabi.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Gem::Specification.new do |s|
s.name = 'hanabi'
s.version = '0.0.1'
s.required_ruby_version = '>=2.2.6'
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'MVC Scaffold for midori'
s.description = 'Providing scaffolds for em-midori project'
s.authors = ['HeckPsi Lab']
s.email = '[email protected]'
s.require_paths = ['lib']
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec|.resources)/}) } \
- %w(README.md CONTRIBUTOR_COVENANT_CODE_OF_CONDUCT.md Gemfile Rakefile hanabi.gemspec .gitignore .rspec .codeclimate.yml .rubocop.yml .travis.yml logo.png Rakefile Gemfile)
s.homepage = 'https://github.com/heckpsi-lab/hanabi'
s.metadata = { 'issue_tracker' => 'https://github.com/heckpsi-lab/hanabi/issues' }
s.license = 'MIT'
s.add_runtime_dependency 'em-midori', '~> 0.2'
end