Sha256: a2227eecf1b0b77494377f6aef2ad66e10891971bc00f61ea73f908515f968e5

Contents?: true

Size: 884 Bytes

Versions: 2

Compression:

Stored size: 884 Bytes

Contents

# coding: utf-8

require File.expand_path(File.join(File.dirname(__FILE__),"files.rb"))

### 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         = Str2Duck.class_variable_get("@@spec_files")
  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

2 entries across 2 versions & 1 rubygems

Version Path
str2duck-1.4.0 str2duck.gemspec
str2duck-1.3.1 str2duck.gemspec