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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee3b821f7f02b4c784a49c6b0800c01d33246563c3d5780fc71bcd40ac28188e
4
- data.tar.gz: 937910e18a7258635942a1b68ca65a1db93a1b138dd69aa6949b9ed3f7f7879a
3
+ metadata.gz: 7128705390f082c3497b9a3a8f41241f5d3001fae6673c343b09efc962a7640e
4
+ data.tar.gz: e9cc50a1beeeffc92345ec0f2610c06dbb1dafa275acc7fd2a958682a71f4ce5
5
5
  SHA512:
6
- metadata.gz: 28ca55708eeae087e399a81149234f186f7c4a3fb118f4f61c6bdc031885a0bbc24a75314b0ca6b414895de6da7408469bb9e6753fcf8666955f3f590a41d36e
7
- data.tar.gz: adb1ed8444b978c607a03893b5b4d7d6602b1ca35790f4e51db54f5247cc4dcad014acd0ad38f5ee94f04b6322d8ffc0f80f03d034135087bfa315d44ab24e5f
6
+ metadata.gz: c5913662322303f74d82d869607efe2a2dcfd6a743a2287d5b77233c00d68ecb122e794135d88baebb1a177361211b53d3fadfd42729e47495d365f57ef100f2
7
+ data.tar.gz: 6b08926da9d578756b98a4e4fdbf21418c32ce4a1524a27f02fa8668a23159625a8f1c1abf78256f11e8737cfce183ddae0728dd6a4dd7eb72357bc1afb9ee54
@@ -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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- onlinesim (1.0.3)
4
+ onlinesim (1.0.4)
5
5
  faraday (~> 1.0)
6
6
  oj (~> 3.10)
7
7
  thor
@@ -25,7 +25,7 @@ module OnlineSim
25
25
 
26
26
  private
27
27
  def client
28
- @_client ||= Faraday.new('https://onlinesim.ru', proxy: 'http://127.0.0.1:4034') do |client|
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"
@@ -1,3 +1,3 @@
1
1
  module Onlinesim
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  end
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
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-10 00:00:00.000000000 Z
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
@@ -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}}"