File: ice_cube.gemspec

package info (click to toggle)
ruby-ice-cube 0.16.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 800 kB
  • sloc: ruby: 7,823; makefile: 6
file content (23 lines) | stat: -rw-r--r-- 855 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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         = 'john@crepezzi.com'
  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.add_development_dependency('rake')
  s.add_development_dependency('rspec', '> 3')
end