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 27 28 29 30 31
|
# frozen_string_literal: true
require_relative 'lib/iso8601/version'
Gem::Specification.new do |s|
s.name = 'iso8601'
s.version = ISO8601::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ['Arnau Siches']
s.email = 'arnau.siches@gmail.com'
s.homepage = 'https://github.com/arnau/ISO8601'
s.summary = "Ruby parser to work with ISO 8601 dateTimes and durations - http://en.wikipedia.org/wiki/ISO_8601"
s.description = <<-DESC
ISO8601 is a simple implementation in Ruby of the ISO 8601 (Data elements and
interchange formats - Information interchange - Representation of dates
and times) standard.
DESC
s.license = 'MIT'
s.files = Dir['{docs,lib}/**/*', 'LICENSE', 'README.md']
s.test_files = Dir['spec/**/*']
s.require_paths = ['lib']
s.metadata["yard.run"] = "yri"
s.required_ruby_version = '>= 2.4.0'
s.add_development_dependency 'pry', '~> 0.13.1'
s.add_development_dependency 'pry-doc', '~> 1.1.0'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.9'
s.add_development_dependency 'rubocop', '~> 0.85'
s.add_development_dependency 'rubocop-packaging', '~> 0.1.1'
end
|