prismdb 0.1.0 → 0.1.1

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: adf12c106c1bc6f335003bd273af6ed4801cf96660dc11048cf73a07f021ca5d
4
- data.tar.gz: d4ea58e36efdf9845e79675dbc5cc03bbff423b6230105ea63c762290502e897
3
+ metadata.gz: 545aa3b1c8fcae7a138e8bb723c4e3285e0d6d7f568f4e31a4b3d36a0e0fe430
4
+ data.tar.gz: a6986a369d7e1690708edccb3dc4dcabb05717ac4447b13e27030350d3c8d882
5
5
  SHA512:
6
- metadata.gz: 5ca38fed031c50bc8c0cbe55befdd890e70b6357a9a3019d93d821cee4a3328279db3b2ef6fc975b42bce1d6bcd23937b215b824d8915c489560696eabcb990a
7
- data.tar.gz: bd290f86e12ea8109b6486375296b0e44f903ac496dabfc8b5f68f48b4634c3cfc334a86a7cfa5b4409ffaa4f52623a69e3a5925ff1051ea09734cd5a33e861c
6
+ metadata.gz: cc4f1958f93381f6b9a959e6e848ed945e162d284405751959893ddf504ebd6c3458fec167faff5ce55fbfa67909120454582a59cfc65839919838c34872bdec
7
+ data.tar.gz: fdfca7a760e3c9a682e08a51bdda0afdca9d1cc681d8188edb84cf1ae5438e1e206e416bd0b003c97b3c87b0b92969002d0871133e9446edbacb8375e74685e7
@@ -29,6 +29,7 @@ jobs:
29
29
  - ruby:2.5
30
30
  - ruby:2.6
31
31
  - ruby:2.7
32
+ - ruby:3.0
32
33
  - rubylang/ruby:master-nightly-bionic
33
34
  include:
34
35
  - ruby: rubylang/ruby:master-nightly-bionic
@@ -76,7 +77,7 @@ jobs:
76
77
  continue-on-error: true
77
78
 
78
79
  - name: Slack Notification (not success)
79
- uses: homoluctus/slatify@master
80
+ uses: lazy-actions/slatify@master
80
81
  if: "! success()"
81
82
  continue-on-error: true
82
83
  with:
@@ -94,7 +95,7 @@ jobs:
94
95
 
95
96
  steps:
96
97
  - name: Slack Notification (success)
97
- uses: homoluctus/slatify@master
98
+ uses: lazy-actions/slatify@master
98
99
  if: always()
99
100
  continue-on-error: true
100
101
  with:
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  ## Unreleased
2
- [full changelog](http://github.com/sue445/prismdb-ruby/compare/v0.1.0...master)
2
+ [full changelog](http://github.com/sue445/prismdb-ruby/compare/v0.1.1...master)
3
+
4
+ ## v0.1.1
5
+ [full changelog](http://github.com/sue445/prismdb-ruby/compare/v0.1.0...v0.1.1)
6
+
7
+ * Enable MFA requirement for gem releasing
8
+ * https://github.com/sue445/prismdb-ruby/pull/13
3
9
 
4
10
  ## v0.1.0
5
11
  * first release
6
- ~~~~
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Prismdb
2
2
  [PrismDB](https://prismdb.takanakahiko.me/) API client for ruby
3
3
 
4
+ [![Gem Version](https://badge.fury.io/rb/prismdb.svg)](https://badge.fury.io/rb/prismdb)
4
5
  [![test](https://github.com/sue445/prismdb-ruby/workflows/test/badge.svg?branch=master)](https://github.com/sue445/prismdb-ruby/actions?query=workflow%3Atest)
5
6
  [![Coverage Status](https://coveralls.io/repos/github/sue445/prismdb-ruby/badge.svg?branch=master)](https://coveralls.io/github/sue445/prismdb-ruby?branch=master)
6
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/091d941f30ffc69fbd4b/maintainability)](https://codeclimate.com/github/sue445/prismdb-ruby/maintainability)
@@ -73,7 +74,7 @@ pripara = client.find_series("pripara")
73
74
 
74
75
  All methods are followings
75
76
 
76
- https://www.rubydoc.info/gems/prismdb
77
+ https://www.rubydoc.info/gems/prismdb/Prismdb/Client
77
78
 
78
79
  ## Development
79
80
 
@@ -83,7 +84,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
83
84
 
84
85
  ## Contributing
85
86
 
86
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/prismdb.
87
+ Bug reports and pull requests are welcome on GitHub at https://github.com/sue445/prismdb-ruby.
87
88
 
88
89
 
89
90
  ## License
@@ -1,3 +1,3 @@
1
1
  module Prismdb
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/prismdb.gemspec CHANGED
@@ -15,6 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
16
  spec.metadata["source_code_uri"] = "https://github.com/sue445/prismdb-ruby"
17
17
  spec.metadata["changelog_uri"] = "https://github.com/sue445/prismdb-ruby/blob/master/CHANGELOG.md"
18
+ spec.metadata["rubygems_mfa_required"] = "true"
18
19
 
19
20
  # Specify which files should be added to the gem when it is released.
20
21
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prismdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-03-15 00:00:00.000000000 Z
11
+ date: 2021-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -83,7 +83,8 @@ metadata:
83
83
  homepage_uri: https://github.com/sue445/prismdb-ruby
84
84
  source_code_uri: https://github.com/sue445/prismdb-ruby
85
85
  changelog_uri: https://github.com/sue445/prismdb-ruby/blob/master/CHANGELOG.md
86
- post_install_message:
86
+ rubygems_mfa_required: 'true'
87
+ post_install_message:
87
88
  rdoc_options: []
88
89
  require_paths:
89
90
  - lib
@@ -98,8 +99,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
99
  - !ruby/object:Gem::Version
99
100
  version: '0'
100
101
  requirements: []
101
- rubygems_version: 3.1.2
102
- signing_key:
102
+ rubygems_version: 3.2.22
103
+ signing_key:
103
104
  specification_version: 4
104
105
  summary: PrismDB API client for ruby
105
106
  test_files: []