Sha256: 2ae5f998f96c87c94a86f7248ae5080da8f6bf70147c6ef71fa41213de6f1633

Contents?: true

Size: 960 Bytes

Versions: 4

Compression:

Stored size: 960 Bytes

Contents

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.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.require_paths = ['lib']

  spec.add_dependency 'activesupport', '>= 3.0'

  spec.add_development_dependency 'bundler', '~> 1.6'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
repeatable-0.3.0 repeatable.gemspec
repeatable-0.2.1 repeatable.gemspec
repeatable-0.2.0 repeatable.gemspec
repeatable-0.1.0 repeatable.gemspec