Sha256: 0eaf730ba802acf12d555ce2d3763c69818f4509b374ae379bf6c18396dc6197
Contents?: true
Size: 997 Bytes
Versions: 3
Compression:
Stored size: 997 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "attribute_cartographer/version" Gem::Specification.new do |s| s.name = "attribute_cartographer" s.version = AttributeCartographer::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Kris Hicks"] s.email = ["krishicks@gmail.com"] s.homepage = "https://github.com/krishicks/attribute-cartographer" s.summary = %q{Map an attributes hash to methods on Ruby object while transforming the values to suit.} s.description = %q{AttributeCartographer allows you to map an attributes hash into similarly or differently named methods, using an optional lambda to map the values as well.} s.add_development_dependency('rspec', '>= 2.5') s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
attribute_cartographer-0.0.6 | attribute_cartographer.gemspec |
attribute_cartographer-0.0.5 | attribute_cartographer.gemspec |
attribute_cartographer-0.0.4 | attribute_cartographer.gemspec |