onlinesim 1.0.2 → 1.0.4
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/.github/workflows/push.yml +42 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +13 -0
- data/Gemfile.lock +1 -1
- data/lib/onlinesim/version.rb +1 -1
- data/onlinesim.gemspec +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee3b821f7f02b4c784a49c6b0800c01d33246563c3d5780fc71bcd40ac28188e
|
4
|
+
data.tar.gz: 937910e18a7258635942a1b68ca65a1db93a1b138dd69aa6949b9ed3f7f7879a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
data/CHANGELOG.md
ADDED
@@ -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
|
data/Gemfile.lock
CHANGED
data/lib/onlinesim/version.rb
CHANGED
data/onlinesim.gemspec
CHANGED
@@ -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 = '
|
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.
|
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:
|
101
|
+
homepage: https://github.com/s00d/onlinesim-ruby-api
|
100
102
|
licenses:
|
101
103
|
- MIT
|
102
104
|
metadata: {}
|