-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtime_cursor.gemspec
More file actions
25 lines (21 loc) · 1007 Bytes
/
time_cursor.gemspec
File metadata and controls
25 lines (21 loc) · 1007 Bytes
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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'time_cursor/version'
Gem::Specification.new do |spec|
spec.name = "time_cursor"
spec.version = TimeCursor::VERSION
spec.authors = ["arimay"]
spec.email = ["arima.yasuhiro@gmail.com"]
spec.summary = %q{ Get the datetime for event schedule. }
spec.description = %q{ Get the next or previous datetime along the rules that are given in a crontab-like format or other options. }
spec.homepage = "https://github.com/arimay/time_cursor"
spec.license = "MIT"
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end