legion-exceptions 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '088c230a67d26014550e7a986021b66150af0d52d9c72526bac2a209e63344fe'
4
- data.tar.gz: 6f23875d1fb8404bb5123af22ee1a891ecda5920d2aa840e5c6675a8428a48ab
3
+ metadata.gz: 69818c2d789885c350456e7283be59282419f4cdbf430d345a57272ac3366861
4
+ data.tar.gz: 56a149711dfb83f9146347d12ed90580e215be48c65f1f1c5eec39faefc1596d
5
5
  SHA512:
6
- metadata.gz: 2eead8f50110e14f8672a435882bd48e17364d0d718ef8a43ccb4b705e21d44cd429f274a95294acbed403a1ce0f6b9c1279963017cef69de49c139fdbfcb3c9
7
- data.tar.gz: bc6c7ec15ce61bc088552a20496f478f5623b3ca6acde13adeedd72be85d9a7f83eec3f2419d4e2e9d66631886bebc435ac690d45614f878770625ac3b5c9947
6
+ metadata.gz: 3b9818f2d4ec379a87aca0bc1930f0904169e4c57edd477cf36b50ef86678da404d3974a914df54929ba04738ba6b6def0d687b6ab799953ded729bbaef507df
7
+ data.tar.gz: db1f3cca0fc534bb8fdb3801dd283c423b520a42453f6c7c29928784be9b63d08ec80f187bb2ad43148d967ac8597d70f3b049f132cd1b4ea968016073695f61
@@ -83,6 +83,9 @@ jobs:
83
83
  steps:
84
84
  - checkout
85
85
  - ruby/load-cache
86
+ - run:
87
+ name: update bundler
88
+ command: gem update bundler
86
89
  - ruby/install-deps
87
90
  - ruby/run-tests
88
91
  - run:
data/README.md CHANGED
@@ -1,39 +1,5 @@
1
1
  # Legion::Exceptions
2
2
 
3
- ## Installation
4
-
5
- Add this line to your application's Gemfile:
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
@@ -4,14 +4,24 @@ pipelines:
4
4
  branches:
5
5
  master:
6
6
  - step:
7
- name: Push to RubyGems
8
- deployment: RubyGems
7
+ caches:
8
+ - bundler
9
9
  script:
10
- - gem install bundler gem-release rake rspec
10
+ - gem install bundler rubocop
11
+ - gem update bundler rubocop
11
12
  - bundle install
12
- - rake build
13
- - mkdir .gem
14
- - (umask 077 ; echo $gem_creds | base64 --decode > .gem/credentials)
15
- - gem release
16
- artifacts:
17
- - pkg/**
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
@@ -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.license = 'MIT'
17
- spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
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'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Legion
4
4
  module Exceptions
5
- VERSION = '1.1.2'
5
+ VERSION = '1.1.3'
6
6
  end
7
7
  end
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.2
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-21 00:00:00.000000000 Z
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: