-
Notifications
You must be signed in to change notification settings - Fork 3
/
resource_full.gemspec
27 lines (22 loc) · 973 Bytes
/
resource_full.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
require 'rake'
Gem::Specification.new do |s|
s.name = 'resource_full'
s.summary = 'A library for building controllers that correctly interact with ActiveResource.'
s.version = '0.7.9'
s.description = <<-EOS
ResourceFull provides a fully-compliant ActiveResource server implementation
built on ActionController. Additionally, it provides RESTful parameter
queryability, paging, sorting, separation of controller concerns, multiple
formats (HTML, XML, JSON), CRUD access permissions, and API metadata.
EOS
s.author = 'Brian Guthrie'
s.email = '[email protected]'
s.homepage = 'http://github.com/bguthrie/resource_full'
s.has_rdoc = true
s.files = FileList['lib/**/*.rb', '[A-Z]*', 'spec/**/*'].to_a
s.test_files = FileList['spec/resource_full/**/*.rb']
s.add_dependency 'actionpack', '>= 2.1.0'
s.add_dependency 'activerecord', '>= 2.1.0'
s.add_development_dependency 'rspec'
s.add_development_dependency 'mocha'
end