Sha256: 842485440e735ca083383a5a06b813ad428c80314cf47c72ecb0cf8605e47b6c

Contents?: true

Size: 1.13 KB

Versions: 4

Compression:

Stored size: 1.13 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "her/version"

Gem::Specification.new do |s|
  s.name        = "her"
  s.version     = Her::VERSION
  s.authors     = ["Rémi Prévost"]
  s.email       = ["remi@exomel.com"]
  s.homepage    = "http://her-rb.org"
  s.license     = "MIT"
  s.summary     = "A simple Representational State Transfer-based Hypertext Transfer Protocol-powered Object Relational Mapper. Her?"
  s.description = "Her is an ORM that maps REST resources and collections to Ruby objects"

  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_development_dependency "rake", "~> 10.0"
  s.add_development_dependency "rspec", "~> 3.5"
  s.add_development_dependency "json", "~> 1.8"

  s.add_runtime_dependency "activemodel", ">= 3.0.0", "< 5.2.0"
  s.add_runtime_dependency "activesupport", ">= 3.0.0", "< 5.2.0"
  s.add_runtime_dependency "faraday", ">= 0.8", "< 1.0"
  s.add_runtime_dependency "multi_json", "~> 1.7"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
her-0.10.4 her.gemspec
her-0.10.3 her.gemspec
her-0.10.2 her.gemspec
her-0.10.1 her.gemspec