Sha256: 08ef0ee4c9383744d5930b3af52c53a4bfaa5e18c7f52fbbf2f2035e4b64895a
Contents?: true
Size: 1.31 KB
Versions: 2
Compression:
Stored size: 1.31 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'iceland/version' Gem::Specification.new do |spec| spec.name = 'iceland' spec.version = Iceland::VERSION spec.authors = ['Stefan Vignir'] spec.email = ['stefanvignir@stefanvignir.is'] spec.summary = 'Handles the Icelandic "kennitala" identification '\ 'scheme and postal codes' spec.description = 'Adds the Kennitala class. Figures out dates and ages, '\ 'and sanitizes "kennitala" objects and looks up '\ 'Icelandic postal codes.' spec.homepage = 'https://github.com/stefanvignir/iceland_gem' spec.license = 'MIT' spec.files = `git ls-files -z` .split("\x0") .reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.11' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop', '~> 0.40.0' spec.add_development_dependency 'overcommit', '~> 0.33.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
iceland-0.1.8 | iceland.gemspec |
iceland-0.1.7 | iceland.gemspec |