-
Notifications
You must be signed in to change notification settings - Fork 13
/
ruby-thumbor.gemspec
43 lines (34 loc) · 1.42 KB
/
ruby-thumbor.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
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
require_relative 'lib/thumbor/version'
Gem::Specification.new do |s|
s.name = 'ruby-thumbor'
s.version = Thumbor::VERSION
s.authors = ['Bernardo Heynemann', 'Guilherme Souza']
s.description = 'ruby-thumbor is the client to the thumbor imaging service (http://github.com/thumbor/thumbor).'
s.email = ['[email protected]', '[email protected]']
s.license = 'MIT'
s.files = Dir.glob('lib/**/*.rb')
s.test_files = Dir.glob('spec/**/*.rb')
s.homepage = 'http://github.com/thumbor/ruby-thumbor'
s.extra_rdoc_files = Dir['README.md']
s.rdoc_options += [
'--title', 'Ruby-Thumbor',
'--main', 'README.md',
'--line-numbers',
'--inline-source',
'--quiet'
]
s.summary = 'ruby-thumbor is the client to the thumbor imaging service (http://github.com/thumbor/thumbor).'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/thumbor/ruby-thumbor/issues',
'documentation_uri' => 'https://www.rubydoc.info/gems/ruby-thumbor',
'homepage_uri' => s.homepage,
'source_code_uri' => 'https://github.com/thumbor/ruby-thumbor'
}
s.add_development_dependency 'code-scanning-rubocop', '~> 0.5.0'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.10'
s.add_development_dependency 'rubocop-rspec', '~> 2.8.0'
s.add_development_dependency 'simplecov', '~> 0.21.2'
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
end