-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcrass.gemspec
32 lines (26 loc) · 1.09 KB
/
crass.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
# encoding: utf-8
require './lib/crass/version'
Gem::Specification.new do |s|
s.name = 'crass'
s.summary = 'CSS parser based on the CSS Syntax Level 3 spec.'
s.description = 'Crass is a pure Ruby CSS parser based on the CSS Syntax Level 3 spec.'
s.version = Crass::VERSION
s.authors = ['Ryan Grove']
s.email = ['[email protected]']
s.homepage = 'https://github.com/rgrove/crass/'
s.license = 'MIT'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/rgrove/crass/issues',
'changelog_uri' => "https://github.com/rgrove/crass/blob/v#{s.version}/HISTORY.md",
'documentation_uri' => "https://www.rubydoc.info/gems/crass/#{s.version}",
'rubygems_mfa_required' => 'true',
'source_code_uri' => "https://github.com/rgrove/crass/tree/v#{s.version}",
}
s.platform = Gem::Platform::RUBY
s.required_ruby_version = Gem::Requirement.new('>= 1.9.2')
s.require_paths = ['lib']
s.files = `git ls-files -z`.split("\x0").grep_v(%r{^test/})
# Development dependencies.
s.add_development_dependency 'minitest', '~> 5.21.1'
s.add_development_dependency 'rake', '~> 13.0.6'
end