-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnutriscore.gemspec
More file actions
25 lines (22 loc) · 981 Bytes
/
nutriscore.gemspec
File metadata and controls
25 lines (22 loc) · 981 Bytes
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
$:.unshift(File.expand_path(File.dirname(__FILE__) + '/lib'))
require 'nutriscore/version'
Gem::Specification.new do |s|
s.name = 'nutriscore'
s.version = Nutriscore::VERSION
s.date = Nutriscore::VERSION_DATE
s.summary = 'Nutri-score computation for food products.'
s.authors = ['wvengen']
s.email = ['dev-ruby@willem.engen.nl']
s.homepage = 'https://github.com/q-m/nutriscore-ruby'
s.license = 'MIT'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/q-m/nutriscore-ruby/issues',
'source_code_uri' => 'https://github.com/q-m/nutriscore-ruby',
}
s.files = `git ls-files *.gemspec lib`.split("\n")
s.executables = `git ls-files bin`.split("\n").map(&File.method(:basename))
s.extra_rdoc_files = ['README.md', 'LICENSE']
s.require_paths = ['lib']
s.add_development_dependency 'rspec'
s.add_development_dependency 'rspec-its'
end