Sha256: 887bbbb9dde8ba77fba9aa5e5900dcf21abfa7e847b5cf8413b7f0c2448d9709
Contents?: true
Size: 1 KB
Versions: 7
Compression:
Stored size: 1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cousin_roman/version' Gem::Specification.new do |spec| spec.name = "cousin_roman" spec.version = CousinRoman::VERSION spec.authors = ["Artem Pyanykh"] spec.email = ["artem.pyanykh@gmail.com"] spec.description = %q{Easily convert between Roman and Arabian numbers. Functionality provided via String and Integer extensions} spec.summary = %q{Convert Roman numerals to Integers and vice versa} spec.homepage = "https://github.com/ArtemPyanykh/cousin_roman" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)*/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" end
Version data entries
7 entries across 7 versions & 1 rubygems