-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
openbeautyfacts.gemspec
32 lines (26 loc) · 1.26 KB
/
openbeautyfacts.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
29
30
31
32
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'openbeautyfacts/version'
Gem::Specification.new do |spec|
spec.name = 'openbeautyfacts'
spec.version = Openbeautyfacts::VERSION
spec.authors = ["Nicolas Leger"]
spec.email = ["opensource@nleger.com"]
spec.summary = "Open Beauty Facts API Wrapper"
spec.description = "Open Beauty Facts API Wrapper, the open database about beauty products."
spec.homepage = "https://github.com/openfoodfacts/openbeautyfacts-ruby"
spec.license = "MIT"
spec.files = Dir['Rakefile', '{features,lib,test}/**/*', 'README*', 'LICENSE*']
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.5' # Needed for URI.open
spec.add_runtime_dependency 'hashie', '>= 3.4', '< 6.0'
spec.add_runtime_dependency 'nokogiri', '~> 1.7'
spec.add_development_dependency 'bundler', '~> 2.1'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'minitest', '~> 5.10'
spec.add_development_dependency 'vcr', '~> 6.0'
spec.add_development_dependency 'webmock', '~> 3.10'
end