forked from square/ruby-rrule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrrule.gemspec
27 lines (24 loc) · 1022 Bytes
/
rrule.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rrule/version'
Gem::Specification.new do |s|
s.name = 'rrule'
s.version = RRule::VERSION
s.summary = 'RRule expansion'
s.description = 'A gem for expanding dates according to the RRule specification'
s.authors = ['Ryan Mitchell']
s.email = 'rmitchell@squareup.com'
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.require_paths = ['lib']
s.homepage = 'https://rubygems.org/gems/rrule'
s.metadata = {
'homepage' => 'https://rubygems.org/gems/rrule',
'source_code_uri' => 'https://github.com/square/ruby-rrule',
'bug_tracker_uri' => 'https://github.com/square/ruby-rrule/issues',
'changelog_uri' => 'https://github.com/square/ruby-rrule/blob/master/CHANGELOG.md'
}
s.required_ruby_version = '>= 2.6.0'
s.add_runtime_dependency 'activesupport', '>= 2.3'
s.add_development_dependency 'appraisal'
end