forked from remi/her
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathher.gemspec
More file actions
28 lines (22 loc) · 1.02 KB
/
her.gemspec
File metadata and controls
28 lines (22 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true
$:.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 = "https://github.com/TwilightCoders/him"
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.required_ruby_version = ">= 3.1"
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", ">= 13.0"
s.add_development_dependency "rspec", "~> 3.5"
s.add_runtime_dependency "activemodel", ">= 6.1"
s.add_runtime_dependency "faraday", ">= 2.0"
end