legion-exceptions 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +3 -0
- data/README.md +3 -37
- data/bitbucket-pipelines.yml +19 -9
- data/legion-exceptions.gemspec +5 -3
- data/lib/legion/exceptions/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69818c2d789885c350456e7283be59282419f4cdbf430d345a57272ac3366861
|
|
4
|
+
data.tar.gz: 56a149711dfb83f9146347d12ed90580e215be48c65f1f1c5eec39faefc1596d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b9818f2d4ec379a87aca0bc1930f0904169e4c57edd477cf36b50ef86678da404d3974a914df54929ba04738ba6b6def0d687b6ab799953ded729bbaef507df
|
|
7
|
+
data.tar.gz: db1f3cca0fc534bb8fdb3801dd283c423b520a42453f6c7c29928784be9b63d08ec80f187bb2ad43148d967ac8597d70f3b049f132cd1b4ea968016073695f61
|
data/.circleci/config.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,39 +1,5 @@
|
|
|
1
1
|
# Legion::Exceptions
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
```ruby
|
|
8
|
-
gem 'legion-exceptions'
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
And then execute:
|
|
12
|
-
|
|
13
|
-
$ bundle
|
|
14
|
-
|
|
15
|
-
Or install it yourself as:
|
|
16
|
-
|
|
17
|
-
$ gem install legion-exceptions
|
|
18
|
-
|
|
19
|
-
## Usage
|
|
20
|
-
|
|
21
|
-
TODO: Write usage instructions here
|
|
22
|
-
|
|
23
|
-
## Development
|
|
24
|
-
|
|
25
|
-
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.
|
|
26
|
-
|
|
27
|
-
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).
|
|
28
|
-
|
|
29
|
-
## Contributing
|
|
30
|
-
|
|
31
|
-
Bug reports and pull requests are welcome on GitHub at https://bitbucket.org/legion-io/legion-exceptions. 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.
|
|
32
|
-
|
|
33
|
-
## License
|
|
34
|
-
|
|
35
|
-
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
36
|
-
|
|
37
|
-
## Code of Conduct
|
|
38
|
-
|
|
39
|
-
Everyone interacting in the Legion::Exceptions project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/legion-exceptions/blob/master/CODE_OF_CONDUCT.md).
|
|
3
|
+
A simple gem to hold all of the different custom Legion::Exceptions.
|
|
4
|
+
|
|
5
|
+
Typically used by the [LegionIO](https://rubygems.org/gems/legionio) gem
|
data/bitbucket-pipelines.yml
CHANGED
|
@@ -4,14 +4,24 @@ pipelines:
|
|
|
4
4
|
branches:
|
|
5
5
|
master:
|
|
6
6
|
- step:
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
caches:
|
|
8
|
+
- bundler
|
|
9
9
|
script:
|
|
10
|
-
- gem install bundler
|
|
10
|
+
- gem install bundler rubocop
|
|
11
|
+
- gem update bundler rubocop
|
|
11
12
|
- bundle install
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
13
|
+
- rubocop
|
|
14
|
+
- rspec
|
|
15
|
+
develop:
|
|
16
|
+
- step:
|
|
17
|
+
caches:
|
|
18
|
+
- bundler
|
|
19
|
+
script:
|
|
20
|
+
- gem install bundler rubocop
|
|
21
|
+
- gem update bundler rubocop
|
|
22
|
+
- bundle install
|
|
23
|
+
- rubocop
|
|
24
|
+
- rspec
|
|
25
|
+
definitions:
|
|
26
|
+
caches:
|
|
27
|
+
bundler: vendor/bundle
|
data/legion-exceptions.gemspec
CHANGED
|
@@ -13,13 +13,15 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.summary = 'Used to keep legion exceptions in one place'
|
|
14
14
|
spec.description = 'All of the different Legion Exceptions'
|
|
15
15
|
spec.homepage = 'https://bitbucket.org/legion-io/legion-exceptions'
|
|
16
|
-
spec.
|
|
17
|
-
spec.
|
|
16
|
+
spec.metadata['source_code_uri'] = 'https://bitbucket.org/legion-io/legion-exceptions'
|
|
17
|
+
spec.metadata['documentation_uri'] = 'https://legionio.atlassian.net/wiki/spaces/LEGION/overview'
|
|
18
|
+
spec.metadata['bug_tracker_uri'] = 'https://legionio.atlassian.net/jira/software/c/projects/EXCEPTIONS'
|
|
19
|
+
spec.license = 'MIT'
|
|
20
|
+
spec.required_ruby_version = '>= 2.5.0'
|
|
18
21
|
|
|
19
22
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
20
23
|
f.match(%r{^(test|spec|features)/})
|
|
21
24
|
end
|
|
22
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
25
|
spec.require_paths = ['lib']
|
|
24
26
|
|
|
25
27
|
spec.add_development_dependency 'bundler'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: legion-exceptions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Esity
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-10-
|
|
11
|
+
date: 2020-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -129,7 +129,10 @@ files:
|
|
|
129
129
|
homepage: https://bitbucket.org/legion-io/legion-exceptions
|
|
130
130
|
licenses:
|
|
131
131
|
- MIT
|
|
132
|
-
metadata:
|
|
132
|
+
metadata:
|
|
133
|
+
source_code_uri: https://bitbucket.org/legion-io/legion-exceptions
|
|
134
|
+
documentation_uri: https://legionio.atlassian.net/wiki/spaces/LEGION/overview
|
|
135
|
+
bug_tracker_uri: https://legionio.atlassian.net/jira/software/c/projects/EXCEPTIONS
|
|
133
136
|
post_install_message:
|
|
134
137
|
rdoc_options: []
|
|
135
138
|
require_paths:
|