forked from rails/activeresource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activeresource.gemspec
30 lines (23 loc) · 1.04 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
$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.rdoc', 'lib/**/*']
s.require_path = 'lib'
s.extra_rdoc_files = %w( README.rdoc )
s.rdoc_options.concat ['--main', 'README.rdoc']
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')
end