monban-repository 1.1.0 → 1.1.2
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/.envrc +1 -0
- data/.gitlab-ci.yml +8 -0
- data/.release-version +1 -0
- data/CHANGELOG.md +8 -0
- data/CHANGELOG/1.1.1.md +6 -0
- data/CHANGELOG/1.1.2.md +9 -0
- data/Gemfile.lock +2 -2
- data/bin/push_tags.sh +7 -0
- data/lib/monban/repository/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5de2ed064f777133ad53c6842c8839fed573c0d46b6ed8a4141e4ab4eb8d34a3
|
|
4
|
+
data.tar.gz: 72a0058f0e5a5e118958c57bd64b6ce6d1fd9ccb9ead9eafa570155b15a51322
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b0df76cf284f58759e004fa8b7b7c6d8adbdbdfba919862011bb769c771c6df3721bfd0d507f75908b433d05d03813fcebf3286bffd5863d0058f10a6fbd08d
|
|
7
|
+
data.tar.gz: '0284b47677512f2f53bcf32d1ad2a105a8c232ef657f06ba6573766e355540af11bb18b2189913a455e8dc56995ff2c73f94b27d9e6382fc4899a078314efa3b'
|
data/.envrc
CHANGED
data/.gitlab-ci.yml
CHANGED
data/.release-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.1.2
|
data/CHANGELOG.md
CHANGED
data/CHANGELOG/1.1.1.md
ADDED
data/CHANGELOG/1.1.2.md
ADDED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
monban-repository (1.1.
|
|
4
|
+
monban-repository (1.1.2)
|
|
5
5
|
getto-initialize_with (~> 1.0)
|
|
6
6
|
getto-repository-sequel (~> 1.0)
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ GEM
|
|
|
11
11
|
docile (1.3.1)
|
|
12
12
|
getto-initialize_with (1.0.4)
|
|
13
13
|
getto-repository (1.0.2)
|
|
14
|
-
getto-repository-sequel (1.0
|
|
14
|
+
getto-repository-sequel (1.1.0)
|
|
15
15
|
getto-initialize_with (~> 1.0)
|
|
16
16
|
getto-repository (~> 1.0)
|
|
17
17
|
sequel (~> 5.13.0)
|
data/bin/push_tags.sh
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
git remote add super https://getto-systems:$GITLAB_ACCESS_TOKEN@gitlab.com/monban/rubygems-repository.git
|
|
4
|
+
git remote add backup https://getto-systems:$GITHUB_ACCESS_TOKEN@github.com/getto-systems/rubygems-monban-repository.git
|
|
5
|
+
git tag $(cat .release-version)
|
|
6
|
+
git push super HEAD:master --tags
|
|
7
|
+
git push backup HEAD:master --tags
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: monban-repository
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- shun@getto.systems
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: getto-initialize_with
|
|
@@ -107,6 +107,7 @@ files:
|
|
|
107
107
|
- ".git_release_request.rc.sh"
|
|
108
108
|
- ".gitignore"
|
|
109
109
|
- ".gitlab-ci.yml"
|
|
110
|
+
- ".release-version"
|
|
110
111
|
- ".travis.yml"
|
|
111
112
|
- CHANGELOG.md
|
|
112
113
|
- CHANGELOG/0.1.1.md
|
|
@@ -114,11 +115,14 @@ files:
|
|
|
114
115
|
- CHANGELOG/1.0.1.md
|
|
115
116
|
- CHANGELOG/1.0.2.md
|
|
116
117
|
- CHANGELOG/1.1.0.md
|
|
118
|
+
- CHANGELOG/1.1.1.md
|
|
119
|
+
- CHANGELOG/1.1.2.md
|
|
117
120
|
- Gemfile
|
|
118
121
|
- Gemfile.lock
|
|
119
122
|
- LICENSE
|
|
120
123
|
- README.md
|
|
121
124
|
- Rakefile
|
|
125
|
+
- bin/push_tags.sh
|
|
122
126
|
- db/migrations/001_create_account_tables.rb
|
|
123
127
|
- lib/monban/repository/account.rb
|
|
124
128
|
- lib/monban/repository/account/search.rb
|
|
@@ -149,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
149
153
|
version: '0'
|
|
150
154
|
requirements: []
|
|
151
155
|
rubyforge_project:
|
|
152
|
-
rubygems_version: 2.7.
|
|
156
|
+
rubygems_version: 2.7.8
|
|
153
157
|
signing_key:
|
|
154
158
|
specification_version: 4
|
|
155
159
|
summary: Monban - repository implementation
|