onlinesim 1.0.2 → 1.0.4

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: cbb6dd112ca782846ff52e7408c28820ebe370fb7132915a9f672c6015e44a7d
4
- data.tar.gz: 1ffbff1c2e7702428eb0b95f68a25673bbb94a5e9bfaa91dce01668da2becbb5
3
+ metadata.gz: ee3b821f7f02b4c784a49c6b0800c01d33246563c3d5780fc71bcd40ac28188e
4
+ data.tar.gz: 937910e18a7258635942a1b68ca65a1db93a1b138dd69aa6949b9ed3f7f7879a
5
5
  SHA512:
6
- metadata.gz: 93c5b9c1c25a54a289557327edf8827933b5ef7ab3089fe70331b8aa259bafc53316a1fc11c6229d67037b216664b88b227c8a26fb3b53b5b0d227912229e885
7
- data.tar.gz: babe2ea18e76a735edb6b5519818830ec8ca922670f7012f6af756cb0815b0422709b0c27eb1debc2ecb5e0ec00fa983159d322e251195a280c9c630373b88ba
6
+ metadata.gz: 28ca55708eeae087e399a81149234f186f7c4a3fb118f4f61c6bdc031885a0bbc24a75314b0ca6b414895de6da7408469bb9e6753fcf8666955f3f590a41d36e
7
+ data.tar.gz: adb1ed8444b978c607a03893b5b4d7d6602b1ca35790f4e51db54f5247cc4dcad014acd0ad38f5ee94f04b6322d8ffc0f80f03d034135087bfa315d44ab24e5f
@@ -0,0 +1,42 @@
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ push:
5
+ branches: [ $default-branch ]
6
+ pull_request:
7
+ branches: [ $default-branch ]
8
+
9
+ jobs:
10
+ build:
11
+ name: Build + Publish
12
+ runs-on: ubuntu-latest
13
+
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up Ruby 2.6
17
+ uses: actions/setup-ruby@v1
18
+ with:
19
+ ruby-version: 2.6.x
20
+
21
+ - name: Publish to GPR
22
+ run: |
23
+ mkdir -p $HOME/.gem
24
+ touch $HOME/.gem/credentials
25
+ chmod 0600 $HOME/.gem/credentials
26
+ printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
27
+ gem build *.gemspec
28
+ gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
29
+ env:
30
+ GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
31
+ OWNER: ${{ github.repository_owner }}
32
+
33
+ - name: Publish to RubyGems
34
+ run: |
35
+ mkdir -p $HOME/.gem
36
+ touch $HOME/.gem/credentials
37
+ chmod 0600 $HOME/.gem/credentials
38
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
39
+ gem build *.gemspec
40
+ gem push *.gem
41
+ env:
42
+ GEM_HOST_API_KEY: "Bearer ${{secrets.RUBYGEMS_AUTH_TOKEN}}"
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ dosc.md
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [1.0.4] - 2019-08-10
8
+ ### Changed
9
+ - change homepage
10
+
11
+ ## [1.0.0] - 2019-08-10
12
+ ### Added
13
+ - Project
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- onlinesim (1.0.1)
4
+ onlinesim (1.0.3)
5
5
  faraday (~> 1.0)
6
6
  oj (~> 3.10)
7
7
  thor
@@ -1,3 +1,3 @@
1
1
  module Onlinesim
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.4"
3
3
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ['support@onlinesim.ru']
11
11
 
12
12
  spec.summary = 'onlinesim.ru Ruby API wrapper'
13
- spec.homepage = 'http://onlinesim.ru'
13
+ spec.homepage = 'https://github.com/s00d/onlinesim-ruby-api'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onlinesim
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - s00d
@@ -73,8 +73,10 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - ".github/workflows/push.yml"
76
77
  - ".gitignore"
77
78
  - ".travis.yml"
79
+ - CHANGELOG.md
78
80
  - CODE_OF_CONDUCT.md
79
81
  - Gemfile
80
82
  - Gemfile.lock
@@ -96,7 +98,7 @@ files:
96
98
  - lib/onlinesim/version.rb
97
99
  - onlinesim.gemspec
98
100
  - tester.rb
99
- homepage: http://onlinesim.ru
101
+ homepage: https://github.com/s00d/onlinesim-ruby-api
100
102
  licenses:
101
103
  - MIT
102
104
  metadata: {}