-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhttp_status_exceptions.gemspec
25 lines (19 loc) · 1.16 KB
/
http_status_exceptions.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
Gem::Specification.new do |s|
s.name = 'http_status_exceptions'
# Do not update the version and date values by hand.
# This will be done automatically by the gem release script.
s.version = "0.3.0"
s.date = "2010-12-17"
s.summary = "A Rails plugin to use exceptions for generating HTTP status responses"
s.description = "Clean up your controller code by raising exceptions that generate responses with different HTTP status codes."
s.add_runtime_dependency('actionpack', '~> 3')
s.add_development_dependency('rake')
s.add_development_dependency('rspec', '~> 2')
s.authors = ['Willem van Bergen', 'Jaap van der Meer', 'Jeff Pollard']
s.email = '[email protected]'
s.homepage = 'http://github.com/wvanbergen/http_status_exceptions/wiki'
# Do not update the files and test_files values by hand.
# This will be done automatically by the gem release script.
s.files = %w(.gitignore Gemfile Gemfile.lock MIT-LICENSE README.rdoc Rakefile http_status_exceptions.gemspec lib/http_status_exceptions.rb spec/http_status_exception_spec.rb spec/spec_helper.rb tasks/github-gem.rake)
s.test_files = %w(spec/http_status_exception_spec.rb)
end