-
Notifications
You must be signed in to change notification settings - Fork 23
/
locomotivecms_coal.gemspec
31 lines (26 loc) · 1.18 KB
/
locomotivecms_coal.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
require_relative 'lib/locomotive/coal/version'
Gem::Specification.new do |spec|
spec.name = 'locomotivecms_coal'
spec.version = Locomotive::Coal::VERSION
spec.authors = ['Didier Lafforgue']
spec.email = ['[email protected]']
spec.description = %q{The LocomotiveCMS Coal is the API ruby client for the LocomotiveCMS platform}
spec.summary = %q{The LocomotiveCMS Coal is the API ruby client for the LocomotiveCMS platform}
spec.homepage = 'https://github.com/locomotivecms/coal'
spec.license = 'MIT'
spec.files = Dir[
'MIT-LICENSE',
'README.md',
'{lib}/**/*'
]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'rake', '~> 13.1'
spec.add_dependency 'httpclient', '~> 2.8'
spec.add_dependency 'faraday', '~> 1.0'
spec.add_dependency 'faraday_middleware', '~> 1.2'
spec.add_dependency 'activesupport', '>= 7.1'
spec.add_dependency 'mime-types', '~> 3.5'
spec.required_ruby_version = ['>= 3.0']
end