Sha256: 5524afa8ec7b3b5031f231e6efcdeb905515a8cb57dab959fdeb835b2dfd830d
Contents?: true
Size: 812 Bytes
Versions: 2
Compression:
Stored size: 812 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_dependency 'active_support' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
str2duck-1.7.0 | str2duck.gemspec |
str2duck-1.6.0 | str2duck.gemspec |