Sha256: 1c20013569c7f83014338cb925b789d2ea8659b4874f9fa2616d7cd963189b11

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 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", "<= 6.0.0"
  s.add_runtime_dependency "activesupport", ">= 3.0.0", "<= 6.0.0"
  s.add_runtime_dependency "faraday", ">= 0.8", "< 1.0"
  s.add_runtime_dependency "multi_json", "~> 1.7"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
her-0.10.0 her.gemspec
her-0.9.0 her.gemspec
her-0.8.6 her.gemspec
her-0.8.5 her.gemspec
her-0.8.4 her.gemspec
her-0.8.3 her.gemspec