errors-http 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.codeclimate.yml +25 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.rubocop.yml +5 -0
- data/.travis.yml +18 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +40 -0
- data/Rakefile +6 -0
- data/bin/console +7 -0
- data/bin/setup +7 -0
- data/errors-http.gemspec +33 -0
- data/lib/errors/http.rb +23 -0
- data/lib/errors/http/version.rb +5 -0
- metadata +185 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
N2I2NzE4NTNiNWQ2MjY3YzQ1M2VjNDZlMjQyODc4MWFjN2FmZTVmYw==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ZDQ0ZjU1ODk0ZmM4ZjFjNjRkNTljZDRkMmU4NzlmM2M0YzNiNGEyMw==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZmNiOTM0ZWI0YjYzMzIzMmM4ZDU2OGQ1ZjJiNDE0NmNiNzVlNmZjNmNmYjU2
|
10
|
+
NjdmMmJhNDE1NTBmOWFjYjQxMzFlZDI3Y2VhZjJhZjc2ZmUzNmY4NzcwOTRl
|
11
|
+
YTk3ODY3YmQ5NzlkNDY0NDk4NjdlODY4MDMyY2JkZDEwNTcxNjg=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
OTYwNGY0NTZkMzRmZGFiZWZhOTVkZWU4Nzk4ZDI3NjkyNjMwNjY5MWRlZTQ2
|
14
|
+
YWRhN2I2MmZkY2JjYTFkZjVhZjdiOGIzYjdiNTFiYWUzZmVkNTc0Mzc4Yjk5
|
15
|
+
MGRmZDY2ZDJmMzc1NTVjNWY5OTllYmJiNGVlZDhlNzUyMzQxY2Q=
|
data/.codeclimate.yml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
engines:
|
3
|
+
duplication:
|
4
|
+
enabled: true
|
5
|
+
config:
|
6
|
+
languages:
|
7
|
+
- ruby
|
8
|
+
- javascript
|
9
|
+
- python
|
10
|
+
- php
|
11
|
+
fixme:
|
12
|
+
enabled: true
|
13
|
+
rubocop:
|
14
|
+
enabled: true
|
15
|
+
ratings:
|
16
|
+
paths:
|
17
|
+
- "**.inc"
|
18
|
+
- "**.js"
|
19
|
+
- "**.jsx"
|
20
|
+
- "**.module"
|
21
|
+
- "**.php"
|
22
|
+
- "**.py"
|
23
|
+
- "**.rb"
|
24
|
+
exclude_paths:
|
25
|
+
- spec/
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.3.0
|
4
|
+
- 2.2.5
|
5
|
+
- 2.1.2
|
6
|
+
before_install: gem install bundler
|
7
|
+
deploy:
|
8
|
+
provider: rubygems
|
9
|
+
api_key:
|
10
|
+
secure: aPNwpC7H5FyT0HxvSFkjdEgyuxy8t4tg+bVlHI6587qSbGc1Y0E27FRk5dntE+2Plk3gbU94aoqgDH6IjPtlM5lBFJqdqQYxGOCYgbsCX+/arER/5LKru43p3xmGfszialApFQ0AC/oULpIkD1tOewKByXj8Du6q2MocP03ewehMhu2U2gmenPgMtqd19+LtPQiUg9dzTxQdqGXmNA3Pq5+xmmQP2IfWx4CW4j6Rc3Pr1ivvoSTrxEXx94aTPkckWKNY11q6vaG5+uM3Qe8XMsWlwQ9i1HhxCLAk+zCJO2Vn8CMrePNILzD6kBFvfLrCjndDzoLAUPivpy8361DKJtOAexa0iXDt+6Uq6wwXhhy2YW6vysPhaFevvabkxevLr0epp6KdWhyRs+4Y+XAbiJEENTC5fBoDym6pQB3Fpdd9DepxXdoTs9W8Qn91oym/jdU+eSH+3i5gi2e/BJ4Mck6qifS3wXft05+6naW/8vu3zpjwdiPXb2Ya/3eERFZ0vKr1PBvo5utfuXvkumJgP/vxXZQWnj5gFrfG6tStDnt5zs2W25R1lHMjtIsN+TecBu/v3s4P5Gz9QLI/PtymhCEIxHueTmRlzBBvB+Q9U09DC2TM8BHBqhzMnS86C56CYAOfRZfhH9eNj95NtcPFUQhv4CzPIZYca2ocO+yux5c=
|
11
|
+
gem: errors-http
|
12
|
+
on:
|
13
|
+
tags: true
|
14
|
+
repo: rdodson41/ruby-errors-http
|
15
|
+
addons:
|
16
|
+
code_climate:
|
17
|
+
repo_token:
|
18
|
+
secure: jyyqagq8YJyHPU/GDtqezm70FdTRuE2HWCdXUIAqKsNKMvhIulXLht17NHDO2t4qSyw0KCiLrjz9ndv3FB4NJXszTMXh7Fg8wW9DCvjz1RpZCsHoQaOIFnSnoXPoSuRtbRL41L+E70J1eWiBZOGLa+/qgHmJyI9dKPowL5Lw3NvBQ6OxahcvJpZqDh/KaohxZzvFeKTNYZYbsoss62vbEhy/No3o72g81b4sQm/JGNxi6SeewJYjZDzoqthkNZ2o0Eo3inuVlWImPll7UUaH2PCQvI3Y/O4NOkPdFpTJZ31aIzN/SnCw2XiinPW5N4l2BNjrsJXF+rwfL/kYQi07ikNMwhIaBP7udIwMUcFJ9+tDCT57RUMo0jC6BTh0dUMp1n9ksbeSp+aAiJYH0NofKpI8g93imBYaQz+yGPU8oPAJMm+hfQkSlPnPpt4NVSU0jGQ5TCxsiJnfXzTQ+S3OhYogJrClDAI99x+FcUohRj5oc+TJ7eXbjd36TuIasIC41OpIehj3FBv8xH2tzmK8iMdBky9ZWbNFj567WXChgHdwZm+9tujqdKxkVL9fA70mBVWzyLpB9kovKyZxfVKXqz6Q75pHz0fr+mbCN7dmofl/qYvyzGJU0cpYD//NXJ2ORj5OmGWuYmg2FTeB9aNV/WTUKYsPsIrLq7xjYdSMXYI=
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at <richard.elias.dodson@gmail.com>. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Richard E. Dodson
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# Errors::HTTP
|
2
|
+
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/errors-http.svg)](https://badge.fury.io/rb/errors-http)
|
4
|
+
[![Dependency Status](https://gemnasium.com/badges/github.com/rdodson41/ruby-errors-http.svg)](https://gemnasium.com/github.com/rdodson41/ruby-errors-http)
|
5
|
+
[![Build Status](https://travis-ci.org/rdodson41/ruby-errors-http.svg?branch=master)](https://travis-ci.org/rdodson41/ruby-errors-http)
|
6
|
+
[![Code Climate](https://codeclimate.com/github/rdodson41/ruby-errors-http/badges/gpa.svg)](https://codeclimate.com/github/rdodson41/ruby-errors-http)
|
7
|
+
[![Test Coverage](https://codeclimate.com/github/rdodson41/ruby-errors-http/badges/coverage.svg)](https://codeclimate.com/github/rdodson41/ruby-errors-http/coverage)
|
8
|
+
[![Issue Count](https://codeclimate.com/github/rdodson41/ruby-errors-http/badges/issue_count.svg)](https://codeclimate.com/github/rdodson41/ruby-errors-http)
|
9
|
+
|
10
|
+
A collection of HTTP errors for [rack](http://rack.github.io/)-based applications.
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
Add this line to your application's Gemfile:
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
gem 'errors-http'
|
18
|
+
```
|
19
|
+
|
20
|
+
And then execute:
|
21
|
+
|
22
|
+
$ bundle
|
23
|
+
|
24
|
+
Or install it yourself as:
|
25
|
+
|
26
|
+
$ gem install errors-http
|
27
|
+
|
28
|
+
## Development
|
29
|
+
|
30
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
31
|
+
|
32
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
33
|
+
|
34
|
+
## Contributing
|
35
|
+
|
36
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/rdodson41/errors-http. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
data/bin/setup
ADDED
data/errors-http.gemspec
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
|
4
|
+
require 'errors/http/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'errors-http'
|
8
|
+
spec.version = Errors::HTTP::VERSION
|
9
|
+
spec.authors = ['Richard E. Dodson']
|
10
|
+
spec.email = ['richard.elias.dodson@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = 'Ruby HTTP Errors'
|
13
|
+
spec.homepage = 'https://github.com/rdodson41/ruby-errors-http'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split(/\x0/).reject { |file| file =~ %r{^(test|spec|features)/} }
|
17
|
+
spec.bindir = 'exe'
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |file| File.basename(file) }
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.required_ruby_version = '~> 2.1'
|
22
|
+
|
23
|
+
spec.add_runtime_dependency 'activesupport', '~> 4.2'
|
24
|
+
spec.add_runtime_dependency 'rack', '~> 1.6'
|
25
|
+
|
26
|
+
spec.add_development_dependency 'bundler', '~> 1.13'
|
27
|
+
spec.add_development_dependency 'codeclimate-test-reporter', '~> 0.6'
|
28
|
+
spec.add_development_dependency 'pry', '~> 0.10'
|
29
|
+
spec.add_development_dependency 'rake', '~> 11.3'
|
30
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
31
|
+
spec.add_development_dependency 'rubocop', '~> 0.43'
|
32
|
+
spec.add_development_dependency 'travis', '~> 1.8'
|
33
|
+
end
|
data/lib/errors/http.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'active_support/core_ext/string'
|
2
|
+
require 'errors/http/version'
|
3
|
+
require 'rack/utils'
|
4
|
+
|
5
|
+
module Errors
|
6
|
+
class HTTP < StandardError
|
7
|
+
def status
|
8
|
+
:internal_server_error
|
9
|
+
end
|
10
|
+
|
11
|
+
def code
|
12
|
+
Rack::Utils::SYMBOL_TO_STATUS_CODE[status]
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
Rack::Utils::SYMBOL_TO_STATUS_CODE.each do |status, code|
|
18
|
+
Errors.const_set(status.to_s.camelize, Class.new(Errors::HTTP) do
|
19
|
+
define_method(:status) do
|
20
|
+
status
|
21
|
+
end
|
22
|
+
end) if (400...600).cover?(code)
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,185 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: errors-http
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Richard E. Dodson
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-10-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rack
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.6'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.6'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.13'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.13'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: codeclimate-test-reporter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.6'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.6'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.10'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ~>
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.10'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ~>
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '11.3'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ~>
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '11.3'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ~>
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ~>
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rubocop
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ~>
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0.43'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ~>
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0.43'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: travis
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ~>
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '1.8'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ~>
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '1.8'
|
139
|
+
description:
|
140
|
+
email:
|
141
|
+
- richard.elias.dodson@gmail.com
|
142
|
+
executables: []
|
143
|
+
extensions: []
|
144
|
+
extra_rdoc_files: []
|
145
|
+
files:
|
146
|
+
- .codeclimate.yml
|
147
|
+
- .gitignore
|
148
|
+
- .rspec
|
149
|
+
- .rubocop.yml
|
150
|
+
- .travis.yml
|
151
|
+
- CODE_OF_CONDUCT.md
|
152
|
+
- Gemfile
|
153
|
+
- LICENSE.txt
|
154
|
+
- README.md
|
155
|
+
- Rakefile
|
156
|
+
- bin/console
|
157
|
+
- bin/setup
|
158
|
+
- errors-http.gemspec
|
159
|
+
- lib/errors/http.rb
|
160
|
+
- lib/errors/http/version.rb
|
161
|
+
homepage: https://github.com/rdodson41/ruby-errors-http
|
162
|
+
licenses:
|
163
|
+
- MIT
|
164
|
+
metadata: {}
|
165
|
+
post_install_message:
|
166
|
+
rdoc_options: []
|
167
|
+
require_paths:
|
168
|
+
- lib
|
169
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ~>
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '2.1'
|
174
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - ! '>='
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: '0'
|
179
|
+
requirements: []
|
180
|
+
rubyforge_project:
|
181
|
+
rubygems_version: 2.4.5
|
182
|
+
signing_key:
|
183
|
+
specification_version: 4
|
184
|
+
summary: Ruby HTTP Errors
|
185
|
+
test_files: []
|