Sha256: 455c74a5254fc8760d1cfa3ba634cbc64f79ed0ee3313ff39ce7792891b41dd2

Contents?: true

Size: 864 Bytes

Versions: 1

Compression:

Stored size: 864 Bytes

Contents

# coding: utf-8

### Specification for the new Gem
Gem::Specification.new do |spec|

  spec.name          = "str2duck"
  spec.version       = File.open(File.join(File.dirname(__FILE__),"VERSION")).read.split("\n")[0].chomp.gsub(' ','')
  spec.authors       = ["Adam Luzsi"]
  spec.email         = ["adamluzsi@gmail.com"]
  spec.description   = %q{ Parse string into obj }
  spec.summary       = %q{ String to Obj, Duck type parser }

  spec.homepage      = "https://github.com/adamluzsi/#{__FILE__.split(File::Separator).last.split('.').first}"
  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 'activesupport'
  spec.add_development_dependency 'rspec'

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
str2duck-2.0.0 str2duck.gemspec