valorant_daily_store 1.0.3 → 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: f8218782433c124d7e6c1df1df74584fabe07ed0ac8c8e5d3c0ee7daf4edb821
4
- data.tar.gz: ed263fb90ee5bbd98261fecf1da67fc12a4d01a0dc6e9a8e035b85ca235691c7
3
+ metadata.gz: 3550b5396b9b0d4f0678df635e3a5dadef6d2f980209ca9b8450b7915ba3db50
4
+ data.tar.gz: a65b6c18978021e2a898ebe26f75818a25ade2afe4f3aba116379b5eb998c157
5
5
  SHA512:
6
- metadata.gz: 7fca8c260a6246fa0954f6abf6f48022819e0f23d42b4c998b934b5866c6da607d6dfeaa2d16394e53dd7b4aac8102ddc7322c976888f053ce82596ad2983bf0
7
- data.tar.gz: 27461d1462d5c1714e3d4294a27efe94c92693d52bab5a6245007adec66fb84240d664dc347e9c701cf709e6e358a75c82d6f9c7dccb69338af6393a9e97d309
6
+ metadata.gz: 77f7eaaa49c67b8e17f960f9236671e8c7c2e280da028d92ef5bb235ec17491a1023e4e234c93764fe8c7a712a5efb276135c936101382edff4c9b5eec05f7af
7
+ data.tar.gz: 88fdd72000fb68e991d39f8444bf2f5a0ff9bc37d5992388e79979ccd928fbb0d1de59d5049d598670e03d476753711967babff8c2f91e65c1854205f08106ec
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.4](https://github.com/Vegann/valorant_daily_store/compare/v1.0.3...v1.0.4) (2022-01-29)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * cli ([f8ee988](https://github.com/Vegann/valorant_daily_store/commits/f8ee988efd96a47d95d1544fe05fd896a1221761))
11
+
5
12
  ### [1.0.3](https://github.com/Vegann/valorant_daily_store/compare/v1.0.2...v1.0.3) (2022-01-29)
6
13
 
7
14
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- valorant_daily_store (1.0.3)
4
+ valorant_daily_store (1.0.4)
5
5
  faraday (~> 2.1)
6
6
  faraday-cookie_jar (~> 0.0.7)
7
7
  thor (~> 1.2.1)
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "valorant_daily_store/cli"
4
+
5
+ ValorantDailyStore::CLI.start(ARGV)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ValorantDailyStore
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: valorant_daily_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vegann
@@ -153,7 +153,8 @@ dependencies:
153
153
  description:
154
154
  email:
155
155
  - git@vegann.anonaddy.com
156
- executables: []
156
+ executables:
157
+ - valorant_daily_store
157
158
  extensions: []
158
159
  extra_rdoc_files: []
159
160
  files:
@@ -174,7 +175,7 @@ files:
174
175
  - Rakefile
175
176
  - bin/console
176
177
  - bin/setup
177
- - bin/valorant_daily_store
178
+ - exe/valorant_daily_store
178
179
  - gem-version-updater.js
179
180
  - gemfile-lock-updater.js
180
181
  - lib/valorant_daily_store.rb
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'valorant_daily_store/cli'
4
-
5
- ValorantDailyStore::CLI.start(ARGV)