-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrepeatable.gemspec
More file actions
22 lines (18 loc) · 877 Bytes
/
repeatable.gemspec
File metadata and controls
22 lines (18 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "repeatable/version"
Gem::Specification.new do |spec|
spec.name = "repeatable"
spec.version = Repeatable::VERSION
spec.authors = ["Mo Lawson"]
spec.email = ["mo@molawson.com"]
spec.summary = "Describe recurring event schedules and calculate their occurrences"
spec.description = "Ruby implementation of Martin Fowler's 'Recurring Events for Calendars' paper."
spec.homepage = "https://github.com/molawson/repeatable"
spec.license = "MIT"
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ["lib"]
spec.add_dependency "sorbet-runtime"
end