Sha256: fd745253238a4782cbed5cc0842796b009786710469ed05f2405f339fbe31bd5
Contents?: true
Size: 1021 Bytes
Versions: 1
Compression:
Stored size: 1021 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'raph/version' Gem::Specification.new do |spec| spec.name = 'raph' spec.version = Raph::VERSION spec.authors = ['Vitalii Elenhaupt'] spec.email = ['velenhaupt@gmail.com'] spec.summary = 'Ruby Argument Parsing for Humans.' spec.description = <<-DESC Lightweight argument parsing with flexible structure. Add your parser in few minutes. DESC spec.homepage = 'https://github.com/veelenga/raph' spec.license = 'MIT' spec.files = `git ls-files`.split($RS) spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) } spec.test_files = spec.files.grep(/^spec\//) spec.require_paths = ['lib'] spec.required_ruby_version = '>= 1.9.3' spec.add_development_dependency 'bundler', '~> 1.7' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
raph-0.0.3 | raph.gemspec |