Sha256: 9411f9f189c54681a2fb18303a0069719d80d7ff1b5b4532598dfa57ae243254

Contents?: true

Size: 874 Bytes

Versions: 1

Compression:

Stored size: 874 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          = "tmp"
  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         = TMP.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

1 entries across 1 versions & 1 rubygems

Version Path
tmp-0.0.1.pre tmp.gemspec