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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e905478eb787737f69e0532ebe5f1755d629348a16c87162457b1b463d4649fc
4
- data.tar.gz: b1a916faf307f5d3a30ae7a58620916323059243a37cc40cd208f1cf1f0acf8d
3
+ metadata.gz: 5de2ed064f777133ad53c6842c8839fed573c0d46b6ed8a4141e4ab4eb8d34a3
4
+ data.tar.gz: 72a0058f0e5a5e118958c57bd64b6ce6d1fd9ccb9ead9eafa570155b15a51322
5
5
  SHA512:
6
- metadata.gz: 62c93ff8f928e4c223a6512a896b2f7f183c098640f59c78c42e618cddad091ff1b48175b1140cdea365bdeafa45e669e7ea8c24598685d791ca4c3ec4bdbc24
7
- data.tar.gz: 834277b45f9b1041f18f4ba1de6b791954201b79ff3510dde2e0505aae29ab08565141bf6f6009bc134d5a48629ce669c856226eec6ca2f4ac250678bc1853df
6
+ metadata.gz: 2b0df76cf284f58759e004fa8b7b7c6d8adbdbdfba919862011bb769c771c6df3721bfd0d507f75908b433d05d03813fcebf3286bffd5863d0058f10a6fbd08d
7
+ data.tar.gz: '0284b47677512f2f53bcf32d1ad2a105a8c232ef657f06ba6573766e355540af11bb18b2189913a455e8dc56995ff2c73f94b27d9e6382fc4899a078314efa3b'
data/.envrc CHANGED
@@ -3,3 +3,4 @@ export APP_ROOT=$(pwd)
3
3
  export DOCKER_WRAPPER_IMAGE_ruby=2.5.1
4
4
 
5
5
  export GIT_RELEASE_VERSION_FILE=lib/monban/repository/version.rb
6
+ export GIT_RELEASE_REQUEST_TARGET=release
data/.gitlab-ci.yml CHANGED
@@ -7,6 +7,14 @@ cache:
7
7
  test:
8
8
  except:
9
9
  - tags
10
+ - master
11
+ - release
10
12
  script:
11
13
  - bundle
12
14
  - bundle exec rake
15
+
16
+ release:
17
+ only:
18
+ - release@monban/rubygems-repository
19
+ script:
20
+ - ./bin/push_tags.sh
data/.release-version ADDED
@@ -0,0 +1 @@
1
+ 1.1.2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # Version : 1.1.2
2
+
3
+ fix: gitlab-ci
4
+
5
+ # Version : 1.1.1
6
+
7
+ fix: variables
8
+
1
9
  # Version : 1.1.0
2
10
 
3
11
  add: auth.login_type
@@ -0,0 +1,6 @@
1
+ # Version : 1.1.1
2
+
3
+ fix: variables
4
+
5
+ ## commits
6
+
@@ -0,0 +1,9 @@
1
+ # Version : 1.1.2
2
+
3
+ fix: gitlab-ci
4
+
5
+ ## commits
6
+
7
+ * fix: push_tags
8
+ * fix: gitlab-ci
9
+ * version dump : 1.1.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- monban-repository (1.1.0)
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.2)
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
@@ -1,5 +1,5 @@
1
1
  module Monban
2
2
  module Repository
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.2"
4
4
  end
5
5
  end
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.0
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-10-30 00:00:00.000000000 Z
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.7
156
+ rubygems_version: 2.7.8
153
157
  signing_key:
154
158
  specification_version: 4
155
159
  summary: Monban - repository implementation