forked from rails/activeresource
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathactiveresource.gemspec
30 lines (23 loc) · 1.02 KB
/
activeresource.gemspec
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
29
30
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "active_resource/version"
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "activeresource"
s.version = ActiveResource::VERSION::STRING
s.summary = "REST modeling framework (part of Rails)."
s.description = "REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models."
s.license = "MIT"
s.author = "David Heinemeier Hansson"
s.email = "[email protected]"
s.homepage = "http://www.rubyonrails.org"
s.files = Dir["MIT-LICENSE", "README.md", "lib/**/*"]
s.require_path = "lib"
s.required_ruby_version = ">= 2.2.2"
s.add_dependency("activesupport", ">= 5.0", "< 7")
s.add_dependency("activemodel", ">= 5.0", "< 7")
s.add_dependency("activemodel-serializers-xml", "~> 1.0")
s.add_development_dependency("rake")
s.add_development_dependency("mocha", ">= 0.13.0")
s.add_development_dependency("rexml")
end