webtoon_source 0.3.0 → 0.5.0

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: b64a3665051049078d797fbd523091924483db1be3a2baf14b6ab8ba3c913559
4
- data.tar.gz: 5385cd88f5f7c4a2f2c2331eef807f98ef17df279cc1867393e816a6706acaea
3
+ metadata.gz: ce042c098cfa9a18cef71d111c4632e00c54cc71a7b435d37f768cf4b82cd48f
4
+ data.tar.gz: 6198dcfefc0d755d2a89371e3ef5fdf7b5e205570fb367f4d5ea4b797e56e103
5
5
  SHA512:
6
- metadata.gz: fa489a59ae24654e073aec21e58fff7e2b37784d7431d15808e3a6de7e218ce02ea90ff608d6de855a6ea9efa472614a0e466ff5f523b5af8e1bac126b892ca8
7
- data.tar.gz: 6749d3026a96309429a00f78403722d2e4dc3eab8c6bb10d4f298f4f6caf32c6a3358a151711a0c7a99995f5d0306b68e63da87974626a42ce3b8aa2b15ec93f
6
+ metadata.gz: 8755308c1dd3ed8d3b2fc72291720ffdb95f53e6eb610473a0f1ac14c8604d2e8dc6c63763b183dd4fc19203525a39857258e6ab712939fa270e8509e197f5fa
7
+ data.tar.gz: e78eb3e3c95d3cc443e4e2d1ba976a4bcdb7beb754f66d38a2b3412533bf0d20fe8c718cc69b736d238a492a588305834b56664f1dcb15acfeb5e47febce23fa
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module WebtoonSource
4
- VERSION = "0.3.0"
3
+ class WebtoonSource
4
+ VERSION = "0.5.0"
5
5
  end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "webtoon_source/version"
4
- require_relative "webtoon_source/configuration"
5
4
  require_relative "webtoon_source/asura_scans"
6
5
  require "faraday"
7
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webtoon_source
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Kenneth Sinay
@@ -42,7 +42,6 @@ files:
42
42
  - Rakefile
43
43
  - lib/webtoon_source.rb
44
44
  - lib/webtoon_source/asura_scans.rb
45
- - lib/webtoon_source/configuration.rb
46
45
  - lib/webtoon_source/version.rb
47
46
  - sig/webtoon_source.rbs
48
47
  licenses:
@@ -1,13 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module WebtoonSource
4
- BASE_STORAGE_PATH = "webtoon_source"
5
-
6
- class Configuration
7
- attr_accessor :storage_path
8
-
9
- def initialize
10
- @storage_path = File.join(Dir.home, BASE_STORAGE_PATH)
11
- end
12
- end
13
- end