Sha256: d8f8e9641b6453bef4a3619da20ef4ea6b081e339d50b63fc72edc836113ba80

Contents?: true

Size: 793 Bytes

Versions: 1

Compression:

Stored size: 793 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/str2duck"
  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_dependency 'active_support'

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
str2duck-1.5.0 str2duck.gemspec