mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
# 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 = ['ryan@wonko.com']
|
|
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}",
|
|
'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.0.8'
|
|
s.add_development_dependency 'rake', '~> 10.1.0'
|
|
end
|