Sha256: 5e938b4e291118a6e5a11491794ca8f92d9ffbba30226e0da55340f524804533
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) require 'representable/version' Gem::Specification.new do |s| s.name = "representable" s.version = Representable::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Nick Sutterer"] s.email = ["apotonick@gmail.com"] s.homepage = "http://representable.apotomo.de" s.summary = %q{Maps representation documents from and to Ruby objects. Includes XML and JSON support, plain properties and compositions.} s.description = %q{Maps representation documents from and to Ruby objects. Includes XML and JSON support, plain properties and compositions.} 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"] s.add_dependency "activesupport" s.add_dependency "hooks" s.add_dependency "nokogiri" s.add_dependency "i18n" s.add_dependency "json" s.add_development_dependency "rspec" s.add_development_dependency "test_xml" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
representable-0.0.2 | representable.gemspec |
representable-0.0.1 | representable.gemspec |