Sha256: 2dc65e8d836394123405cb383584f2cc1f25ac1b37b48e4acac2c9a7706d0afe
Contents?: true
Size: 1.04 KB
Versions: 5
Compression:
Stored size: 1.04 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) require 'edtf/version' Gem::Specification.new do |s| s.name = 'edtf' s.version = EDTF::VERSION.dup s.platform = Gem::Platform::RUBY s.authors = ['Sylvester Keil'] s.email = ['http://sylvester.keil.or.at'] s.homepage = 'http://github.com/inukshuk/edtf-ruby' s.summary = 'Extended Date/Time Format for Ruby.' s.description = 'A Ruby implementation of the Extended Date/Time Format (EDTF).' s.license = 'BSD-2-Clause-FreeBSD' s.add_runtime_dependency('activesupport', '>= 3.0', '< 6.0') s.files = `git ls-files`.split("\n") << 'lib/edtf/parser.rb' s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = [] s.require_path = 'lib' s.rdoc_options = %w{--line-numbers --inline-source --title "EDTF-Ruby" --main README.md --webcvs=http://github.com/inukshuk/edtf-ruby/tree/master/} s.extra_rdoc_files = %w{README.md LICENSE} end # vim: syntax=ruby
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
edtf-3.0.4 | edtf.gemspec |
edtf-3.0.3 | edtf.gemspec |
edtf-3.0.2 | edtf.gemspec |
edtf-3.0.1 | edtf.gemspec |
edtf-3.0.0 | edtf.gemspec |