forked from premailer/css_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_parser.gemspec
More file actions
22 lines (18 loc) · 805 Bytes
/
Copy pathcss_parser.gemspec
File metadata and controls
22 lines (18 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
name = 'css_parser'
require "./lib/#{name}/version"
Gem::Specification.new name, CssParser::VERSION do |s|
s.summary = 'Ruby CSS parser.'
s.description = 'A set of classes for parsing CSS in Ruby.'
s.email = 'code@dunae.ca'
s.homepage = "https://github.com/premailer/#{name}"
s.author = 'Alex Dunae'
s.files = Dir.glob('lib/**/*') + ['MIT-LICENSE']
s.license = 'MIT'
s.required_ruby_version = '>= 3.0'
s.metadata['changelog_uri'] = 'https://github.com/premailer/css_parser/blob/master/CHANGELOG.md'
s.metadata['source_code_uri'] = 'https://github.com/premailer/css_parser'
s.metadata['bug_tracker_uri'] = 'https://github.com/premailer/css_parser/issues'
s.metadata['rubygems_mfa_required'] = 'true'
s.add_runtime_dependency 'addressable'
end