mfkessai-ruby 1.0.0.beta2 → 1.0.0.beta3

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: 0faa2fb854fc43d9b4f825b2727d21376d4cfc66d5554cb59f577162f7d40aca
4
- data.tar.gz: 1f2d116db1c4abf5e85323b1814bb8a61d748dae807c1290e4c38dc5d2e5bcfe
3
+ metadata.gz: cca1470e116b5a65390bc383b73fdad97589ba83333d0a9556826ac46117dfae
4
+ data.tar.gz: 03efa8136a3b0da021311f6a2a64ca72b253dca72f30b83d7e38b8e41c6b9973
5
5
  SHA512:
6
- metadata.gz: 010d7150067183373e2309acf71d1347fdbffa19e0505b188b8525334bb5fe18eab30dacc3a91c47c031e983ab94598e39f37a79c99417164c282215f8184c34
7
- data.tar.gz: e4a719ba2745c4167e95f68975feb3f3cf26eb26a756191e1da0ca23ccdddb9a011e3cec07f0e29cd9239a26fc22f92b07f59d2de3eddf4a2a2a59de652796e0
6
+ metadata.gz: ebcf881cad0c978bfc871ecc2d0b90d2550c3afd59fac10394fe295285551548596cc8da232b2db363fd549cfcbd4b1d5ccd729f045303ac9f970ea73e4e264f
7
+ data.tar.gz: ac6e42be69c8bb5455851c5a189967768739122620ae660b4e9e86b6178f7b76d560df9e1ec45e5b7d19ac29b2844d2265b97cf9d7eef7dee643ec0216c84db4
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.5.1
5
+ before_install: gem install bundler -v 1.16.1
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
3
5
  # Specify your gem's dependencies in mfkessai-ruby.gemspec
4
6
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mfkessai-ruby (1.0.0.beta2)
4
+ mfkessai-ruby (1.0.0.beta3)
5
5
  faraday (~> 0.10)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -18,7 +18,7 @@ mfkessaiのapiを使用するための便利なアクセスをRubyで提供し
18
18
  ## Installation
19
19
 
20
20
  ```
21
- $ gem install mfkessai-ruby -v 1.0.0.beta2 --pre
21
+ $ gem install mfkessai -v 1.0.0.beta3 --pre
22
22
  ```
23
23
 
24
24
  ## Usage
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Mfkessai
3
- VERSION = "1.0.0.beta2"
3
+ VERSION = "1.0.0.beta3"
4
4
  end
@@ -6,7 +6,7 @@ require "mfkessai/version"
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "mfkessai-ruby"
8
8
  spec.version = Mfkessai::VERSION
9
- spec.authors = ["torufukui"]
9
+ spec.authors = ["torufukui", "sora.inc"]
10
10
  spec.email = ["fukui.development@gmail.com"]
11
11
 
12
12
  spec.summary = 'Ruby bindings for the Mfkessai API'
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mfkessai-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta2
4
+ version: 1.0.0.beta3
5
5
  platform: ruby
6
6
  authors:
7
7
  - torufukui
8
+ - sora.inc
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2018-06-18 00:00:00.000000000 Z
12
+ date: 2018-06-06 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: faraday
@@ -74,8 +75,8 @@ extensions: []
74
75
  extra_rdoc_files: []
75
76
  files:
76
77
  - ".gitignore"
77
- - ".gitlab-ci.yml"
78
78
  - ".rspec"
79
+ - ".travis.yml"
79
80
  - CHANGELOG.md
80
81
  - Gemfile
81
82
  - Gemfile.lock
@@ -84,8 +85,6 @@ files:
84
85
  - Rakefile
85
86
  - bin/console
86
87
  - bin/setup
87
- - gitlab-ci/rspec.sh
88
- - gitlab-ci/setup.sh
89
88
  - lib/mfkessai.rb
90
89
  - lib/mfkessai/client.rb
91
90
  - lib/mfkessai/customer.rb
data/.gitlab-ci.yml DELETED
@@ -1,65 +0,0 @@
1
- stages:
2
- - test
3
-
4
- ruby2.3:rspec:
5
- image: ruby:2.3-alpine
6
-
7
- script:
8
- - setup
9
- - execute_rspec
10
-
11
- ruby2.4:rspec:
12
- image: ruby:2.4-alpine
13
-
14
- script:
15
- - setup
16
- - execute_rspec
17
-
18
- ruby2.5:rspec:
19
- image: ruby:2.5-alpine
20
-
21
- script:
22
- - setup
23
- - execute_rspec
24
-
25
- ruby2.5.1:rspec:
26
- image: ruby:2.5.1-alpine
27
-
28
- script:
29
- - setup
30
- - execute_rspec
31
-
32
- allow_failure: true
33
-
34
- dependency_scanning:
35
- image: docker:stable
36
- variables:
37
- DOCKER_DRIVER: overlay2
38
- allow_failure: true
39
- services:
40
- - docker:stable-dind
41
- script:
42
- - export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
43
- - docker run
44
- --env DEP_SCAN_DISABLE_REMOTE_CHECKS="${DEP_SCAN_DISABLE_REMOTE_CHECKS:-false}"
45
- --volume "$PWD:/code"
46
- --volume /var/run/docker.sock:/var/run/docker.sock
47
- "registry.gitlab.com/gitlab-org/security-products/dependency-scanning:$SP_VERSION" /code
48
- artifacts:
49
- paths: [gl-dependency-scanning-report.json]
50
-
51
- .auto_devops: &auto_devops |
52
- function execute_rspec() {
53
- bundle exec rspec
54
- }
55
-
56
- function setup() {
57
- apk --update --upgrade add $BUILD_PACKAGES
58
- apk add git
59
- gem install bundler --no-ri --no-rdoc
60
- bundle check --path=${BUNDLE_CACHE} || bundle install --path=${BUNDLE_CACHE} --jobs=2 --retry=3
61
- bundle clean
62
- }
63
-
64
- before_script:
65
- - *auto_devops
data/gitlab-ci/rspec.sh DELETED
@@ -1,3 +0,0 @@
1
- #!/bin/bash -xe
2
-
3
- bundle exec rspec
data/gitlab-ci/setup.sh DELETED
@@ -1,6 +0,0 @@
1
- #!/bin/bash -xe
2
-
3
- apk --update --upgrade add $BUILD_PACKAGES
4
- gem install bundler --no-ri --no-rdoc
5
- bundle check --path=${BUNDLE_CACHE} || bundle install --path=${BUNDLE_CACHE} --jobs=2 --retry=3
6
- bundle clean