onlinesim 1.0.4 → 1.0.5
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/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/onlinesim/base.rb +1 -1
- data/lib/onlinesim/version.rb +1 -1
- metadata +2 -3
- data/.github/workflows/push.yml +0 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7128705390f082c3497b9a3a8f41241f5d3001fae6673c343b09efc962a7640e
|
4
|
+
data.tar.gz: e9cc50a1beeeffc92345ec0f2610c06dbb1dafa275acc7fd2a958682a71f4ce5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5913662322303f74d82d869607efe2a2dcfd6a743a2287d5b77233c00d68ecb122e794135d88baebb1a177361211b53d3fadfd42729e47495d365f57ef100f2
|
7
|
+
data.tar.gz: 6b08926da9d578756b98a4e4fdbf21418c32ce4a1524a27f02fa8668a23159625a8f1c1abf78256f11e8737cfce183ddae0728dd6a4dd7eb72357bc1afb9ee54
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [1.0.5] - 2019-08-11
|
8
|
+
### Changed
|
9
|
+
- remove proxy
|
10
|
+
|
7
11
|
## [1.0.4] - 2019-08-10
|
8
12
|
### Changed
|
9
13
|
- change homepage
|
data/Gemfile.lock
CHANGED
data/lib/onlinesim/base.rb
CHANGED
@@ -25,7 +25,7 @@ module OnlineSim
|
|
25
25
|
|
26
26
|
private
|
27
27
|
def client
|
28
|
-
@_client ||= Faraday.new('https://onlinesim.ru'
|
28
|
+
@_client ||= Faraday.new('https://onlinesim.ru') do |client|
|
29
29
|
client.request :url_encoded
|
30
30
|
client.adapter Faraday.default_adapter
|
31
31
|
client.headers['User-agent'] = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36"
|
data/lib/onlinesim/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- s00d
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-08-
|
11
|
+
date: 2020-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -73,7 +73,6 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
-
- ".github/workflows/push.yml"
|
77
76
|
- ".gitignore"
|
78
77
|
- ".travis.yml"
|
79
78
|
- CHANGELOG.md
|
data/.github/workflows/push.yml
DELETED
@@ -1,42 +0,0 @@
|
|
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}}"
|