forked from ice-cube-ruby/ice_cube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathice_cube.gemspec
24 lines (21 loc) · 880 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
# encoding: utf-8
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 = 'http://seejohnrun.github.com/ice_cube/'
s.license = 'MIT'
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.has_rdoc = true
s.add_development_dependency('rake')
s.add_development_dependency('rspec', '> 3')
end