forked from ice-cube-ruby/ice_cube
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ice_cube.gemspec
26 lines (22 loc) · 987 Bytes
/
ice_cube.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ice_cube/version"
Gem::Specification.new do |s|
s.name = "ice_cube"
s.summary = "Ruby Date Recurrence Library"
s.description = "ice_cube is a recurring date library for Ruby. It allows for quick, programatic expansion of recurring date rules."
s.author = "John Crepezzi"
s.email = "[email protected]"
s.homepage = "https://seejohnrun.github.io/ice_cube/"
s.license = "MIT"
s.metadata["changelog_uri"] = "https://github.com/seejohnrun/ice_cube/blob/master/CHANGELOG.md"
s.metadata["wiki_uri"] = "https://github.com/seejohnrun/ice_cube/wiki"
s.version = IceCube::VERSION
s.platform = Gem::Platform::RUBY
s.files = Dir["lib/**/*.rb", "config/**/*.yml"]
s.test_files = Dir.glob("spec/*.rb")
s.require_paths = ["lib"]
s.add_development_dependency("rake")
s.add_development_dependency("rspec", "> 3")
s.add_development_dependency("standard")
end