forked from wvanbergen/http_status_exceptions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
http_status_exceptions.gemspec
27 lines (21 loc) · 1.47 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
26
27
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('rack', '>= 1.1.1')
s.add_development_dependency('activesupport', '>= 2')
s.add_development_dependency('i18n', '~> 0.6')
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 .travis.yml Appraisals Gemfile MIT-LICENSE README.rdoc Rakefile gemfiles/actionpack_2.gemfile gemfiles/actionpack_2.gemfile.lock gemfiles/actionpack_3.gemfile gemfiles/actionpack_3.gemfile.lock gemfiles/actionpack_3_1.gemfile gemfiles/actionpack_3_1.gemfile.lock 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