Sha256: ac417ef9204dcae36b9352a14a68e2486f91a6f9807986b80034f77a9c8fa4bf
Contents?: true
Size: 1.32 KB
Versions: 3
Compression:
Stored size: 1.32 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, collections and compositions.} s.description = %q{Maps representation documents from and to Ruby objects. Includes XML and JSON support, plain properties, collections 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 "nokogiri" s.add_dependency "multi_json" s.add_development_dependency "rake" s.add_development_dependency "test_xml" s.add_development_dependency "minitest", ">= 2.8.1" s.add_development_dependency "mocha", ">= 0.13.0" s.add_development_dependency "mongoid" s.add_development_dependency "virtus", "~> 0.5.0" s.add_development_dependency "yajl-ruby" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
representable-1.4.1 | representable.gemspec |
representable-1.4.0 | representable.gemspec |
representable-1.3.5 | representable.gemspec |