vscinemas 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b53ff9765fe92baea00224c6c1fe082bf96c5ef98c4d8a21b0cea34fb17c116f
4
+ data.tar.gz: 600cb860e6c2e7a0f68f595a34095bb970dcbc1b4658130324c30bf1b9fce968
5
+ SHA512:
6
+ metadata.gz: e1840d6186f0013eb980255c9af63da3e38504d698aaee0e6bd6a9010a02a49e060b4522af3612d183bb5d97db5f1a1d13b222d9209f199c872605782bd49179
7
+ data.tar.gz: bab8865e553d9926a14984b0f96617c561cb4f540a9c189b9a1118456107e367c868afb5a6b0b7bd7da0326ac15cdfd821613317a7c1386528ce31698e80716c
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,18 @@
1
+ # The behavior of RuboCop can be controlled via the .rubocop.yml
2
+ # configuration file. It makes it possible to enable/disable
3
+ # certain cops (checks) and to alter their behavior if they accept
4
+ # any parameters. The file can be placed either in your home
5
+ # directory or in some project directory.
6
+ #
7
+ # RuboCop will start looking for the configuration file in the directory
8
+ # where the inspected file is and continue its way up to the root directory.
9
+ #
10
+ # See https://docs.rubocop.org/rubocop/configuration
11
+
12
+ AllCops:
13
+ TargetRubyVersion: 2.5
14
+ NewCops: enable
15
+
16
+ Metrics/BlockLength:
17
+ Exclude:
18
+ - spec/**/*_spec.rb
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at elct9620@frost.tw. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in vscinemas.gemspec
6
+ gemspec
7
+
8
+ gem 'rake', '~> 13.0'
9
+
10
+ gem 'rspec', '~> 3.0'
11
+ gem 'vcr'
12
+ gem 'webmock'
13
+
14
+ gem 'simplecov'
15
+
16
+ gem 'rubocop', '~> 1.22'
17
+ gem 'rubocop-rake'
18
+ gem 'rubocop-rspec'
19
+
20
+ gem 'bundler-audit'
21
+ gem 'overcommit'
data/Gemfile.lock ADDED
@@ -0,0 +1,101 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ vscinemas (0.1.0)
5
+ nokogiri
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ addressable (2.8.0)
11
+ public_suffix (>= 2.0.2, < 5.0)
12
+ ast (2.4.2)
13
+ bundler-audit (0.9.0.1)
14
+ bundler (>= 1.2.0, < 3)
15
+ thor (~> 1.0)
16
+ childprocess (4.1.0)
17
+ crack (0.4.5)
18
+ rexml
19
+ diff-lcs (1.4.4)
20
+ docile (1.4.0)
21
+ hashdiff (1.0.1)
22
+ iniparse (1.5.0)
23
+ nokogiri (1.12.5-x86_64-darwin)
24
+ racc (~> 1.4)
25
+ nokogiri (1.12.5-x86_64-linux)
26
+ racc (~> 1.4)
27
+ overcommit (0.58.0)
28
+ childprocess (>= 0.6.3, < 5)
29
+ iniparse (~> 1.4)
30
+ rexml (~> 3.2)
31
+ parallel (1.21.0)
32
+ parser (3.0.3.2)
33
+ ast (~> 2.4.1)
34
+ public_suffix (4.0.6)
35
+ racc (1.6.0)
36
+ rainbow (3.0.0)
37
+ rake (13.0.6)
38
+ regexp_parser (2.2.0)
39
+ rexml (3.2.5)
40
+ rspec (3.10.0)
41
+ rspec-core (~> 3.10.0)
42
+ rspec-expectations (~> 3.10.0)
43
+ rspec-mocks (~> 3.10.0)
44
+ rspec-core (3.10.1)
45
+ rspec-support (~> 3.10.0)
46
+ rspec-expectations (3.10.1)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.10.0)
49
+ rspec-mocks (3.10.2)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.10.0)
52
+ rspec-support (3.10.3)
53
+ rubocop (1.23.0)
54
+ parallel (~> 1.10)
55
+ parser (>= 3.0.0.0)
56
+ rainbow (>= 2.2.2, < 4.0)
57
+ regexp_parser (>= 1.8, < 3.0)
58
+ rexml
59
+ rubocop-ast (>= 1.12.0, < 2.0)
60
+ ruby-progressbar (~> 1.7)
61
+ unicode-display_width (>= 1.4.0, < 3.0)
62
+ rubocop-ast (1.15.0)
63
+ parser (>= 3.0.1.1)
64
+ rubocop-rake (0.6.0)
65
+ rubocop (~> 1.0)
66
+ rubocop-rspec (2.6.0)
67
+ rubocop (~> 1.19)
68
+ ruby-progressbar (1.11.0)
69
+ simplecov (0.21.2)
70
+ docile (~> 1.1)
71
+ simplecov-html (~> 0.11)
72
+ simplecov_json_formatter (~> 0.1)
73
+ simplecov-html (0.12.3)
74
+ simplecov_json_formatter (0.1.3)
75
+ thor (1.1.0)
76
+ unicode-display_width (2.1.0)
77
+ vcr (6.0.0)
78
+ webmock (3.13.0)
79
+ addressable (>= 2.3.6)
80
+ crack (>= 0.3.2)
81
+ hashdiff (>= 0.4.0, < 2.0.0)
82
+
83
+ PLATFORMS
84
+ x86_64-darwin-20
85
+ x86_64-linux
86
+
87
+ DEPENDENCIES
88
+ bundler-audit
89
+ overcommit
90
+ rake (~> 13.0)
91
+ rspec (~> 3.0)
92
+ rubocop (~> 1.22)
93
+ rubocop-rake
94
+ rubocop-rspec
95
+ simplecov
96
+ vcr
97
+ vscinemas!
98
+ webmock
99
+
100
+ BUNDLED WITH
101
+ 2.2.32
data/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # VSCinemas
2
+
3
+ This is a crawler gem for VSCinemas (威秀影城).
4
+
5
+ :warning:Use crawler have legal risk, please make sure you are know what are you doing:warning:
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'vscinemas'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install vscinemas
22
+
23
+ ## Usage
24
+
25
+ ### Get Playing Movies
26
+
27
+ ```ruby
28
+ movies = VSCinemas.movies
29
+ movies.each do |movie|
30
+ puts "Title: #{movie.title}"
31
+ puts "Release Date: #{movie.date}"
32
+ end
33
+ ```
34
+
35
+ ### Specify Page
36
+
37
+ ```ruby
38
+ movies = VSCinemas::MovieList.new(page: 2)
39
+ movies.each do |movie|
40
+ puts "Title: #{movie.title}"
41
+ end
42
+ ```
43
+
44
+ ## Roadmap
45
+
46
+ * [x] Playing Movies
47
+ * [ ] Coming Movies
48
+ * [ ] Movie Detail
49
+ * [ ] Description
50
+ * [ ] Playing Version
51
+ * [ ] Theaters
52
+
53
+ ## Development
54
+
55
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
56
+
57
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
58
+
59
+ ## Contributing
60
+
61
+ Bug reports and pull requests are welcome on GitHub at https://github.com/elct9620/vscinemas-rb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/elct9620/vscinemas/blob/main/CODE_OF_CONDUCT.md).
62
+
63
+ ## Code of Conduct
64
+
65
+ Everyone interacting in the Vscinemas project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/elct9620/vscinemas-rb/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'vscinemas'
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require 'irb'
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,89 @@
1
+ # frozen_string_literal: true
2
+
3
+ module VSCinemas
4
+ # The Movie
5
+ #
6
+ # @since 0.1.0
7
+ class MovieItem
8
+ # @since 0.1.0
9
+ attr_reader :element
10
+
11
+ # @param element [Nokogiri::XML::Element]
12
+ #
13
+ # @since 0.1.0
14
+ def initialize(element)
15
+ @element = element
16
+ @info_element = element.css('.infoArea')
17
+ @tag_elements = element.css('.iconArea .theaterMark')
18
+ end
19
+
20
+ # Title
21
+ #
22
+ # @return [String]
23
+ #
24
+ # @since 0.1.0
25
+ def title
26
+ @title ||= @info_element.css('h2').text&.strip
27
+ end
28
+
29
+ # English Title
30
+ #
31
+ # @return [String]
32
+ #
33
+ # @since 0.1.0
34
+ def title_en
35
+ @title_en ||= @info_element.css('h3').text&.strip
36
+ end
37
+
38
+ # Date
39
+ #
40
+ # @return [Date]
41
+ #
42
+ # @since 0.1.0
43
+ def date
44
+ @date ||= Date.parse(@info_element.css('time').to_s)
45
+ rescue ArgumentError
46
+ nil
47
+ end
48
+
49
+ # Detail URL
50
+ #
51
+ # @return [URI]
52
+ #
53
+ # @since 0.1.0
54
+ def detail_url
55
+ @detail_url ||= URI.join(ENDPOINT, PATH, @element.css('h2 a').attr('href').text)
56
+ end
57
+
58
+ # Figure URI
59
+ #
60
+ # @return [URI]
61
+ #
62
+ # @since 0.1.0
63
+ def figure
64
+ @figure ||= URI.join(ENDPOINT, PATH, @element.css('figure img').attr('src').text)
65
+ end
66
+
67
+ # @return [Hash]
68
+ #
69
+ # @since 0.1.0
70
+ def to_h
71
+ {
72
+ title: title,
73
+ title_en: title_en,
74
+ date: date,
75
+ detail_url: detail_url,
76
+ figure: figure
77
+ }
78
+ end
79
+
80
+ # Inspect
81
+ #
82
+ # @return [String]
83
+ #
84
+ # @since 0.1.0
85
+ def inspect
86
+ "#<#{self.class.name} title=#{title} date=#{date}>"
87
+ end
88
+ end
89
+ end
@@ -0,0 +1,93 @@
1
+ # frozen_string_literal: true
2
+
3
+ module VSCinemas
4
+ # The Move List
5
+ #
6
+ # @since 0.1.0
7
+ class MovieList
8
+ include Enumerable
9
+
10
+ # @since 0.1.0
11
+ attr_reader :page, :continue
12
+
13
+ # @param page [Number]
14
+ # @param continue [Boolean]
15
+ #
16
+ # @since 0.1.0
17
+ def initialize(page: 1, continue: false)
18
+ @page = page
19
+ @continue = continue
20
+ end
21
+
22
+ # @since 0.1.0
23
+ def each(&block)
24
+ return enum_for(:each) unless defined?(yield)
25
+
26
+ doc.css('.movieList li').map { |el| MovieItem.new(el) }.each(&block)
27
+ self.next.each(&block) if next? && continue?
28
+ end
29
+
30
+ # Parsed Document
31
+ #
32
+ # @return [Nokogiri::HTML::Document]
33
+ #
34
+ # @since 0.1.0
35
+ def doc
36
+ @doc ||= Nokogiri::HTML(body)
37
+ end
38
+
39
+ # Target URI
40
+ #
41
+ # @return [URI]
42
+ #
43
+ # @since 0.1.0
44
+ def uri
45
+ @uri ||= URI("#{ENDPOINT}#{PATH}?p=#{page}")
46
+ end
47
+
48
+ # Downloaded Web Page
49
+ #
50
+ # @return [String]
51
+ #
52
+ # @since 0.1.0
53
+ def body
54
+ @body ||= Net::HTTP.get(uri).force_encoding('UTF-8')
55
+ end
56
+
57
+ # Next Page
58
+ #
59
+ # @return [Number]
60
+ #
61
+ # @since 0.1.0
62
+ def next_page
63
+ @next_page ||= doc.css('.pagebar li.press+li').text&.to_i
64
+ end
65
+
66
+ # Has Next Page
67
+ #
68
+ # @return [Boolean]
69
+ #
70
+ # @since 0.1.0
71
+ def next?
72
+ next_page && next_page != 0
73
+ end
74
+
75
+ # Next List
76
+ #
77
+ # @return [VSCinemas::MovieList]
78
+ #
79
+ # @since 0.1.0
80
+ def next
81
+ MovieList.new(page: next_page, continue: continue) if next?
82
+ end
83
+
84
+ # Continue to Next Page
85
+ #
86
+ # @return [Boolean]
87
+ #
88
+ # @since 0.1.0
89
+ def continue?
90
+ continue == true
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module VSCinemas
4
+ VERSION = '0.1.0'
5
+ end
data/lib/vscinemas.rb ADDED
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'vscinemas/version'
4
+ require 'nokogiri'
5
+ require 'date'
6
+ require 'net/http'
7
+
8
+ # The VSCinemas Film Poller
9
+ #
10
+ # @since 0.1.0
11
+ module VSCinemas
12
+ # @since 0.1.0
13
+ ENDPOINT = 'https://www.vscinemas.com.tw'
14
+
15
+ # @since 0.1.0
16
+ PATH = '/vsweb/film/index.aspx'
17
+
18
+ require_relative 'vscinemas/movie_item'
19
+ require_relative 'vscinemas/movie_list'
20
+
21
+ module_function
22
+
23
+ # Return Movie List
24
+ #
25
+ # @return [VSCinemas::MovieList]
26
+ #
27
+ # @since 0.1.0
28
+ def movies
29
+ MovieList.new(continue: true)
30
+ end
31
+
32
+ alias films movies
33
+ end
data/vscinemas.gemspec ADDED
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/vscinemas/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'vscinemas'
7
+ spec.version = VSCinemas::VERSION
8
+ spec.authors = ['蒼時弦也']
9
+ spec.email = ['contact@frost.tw']
10
+
11
+ spec.summary = 'The Taiwan VSCinema crawler to get latest film list.'
12
+ spec.description = 'The Taiwan VSCinema crawler to get latest film list.'
13
+ spec.homepage = 'https://github.com/elct9620/vscinemas-rb'
14
+ spec.required_ruby_version = '>= 2.5.0'
15
+
16
+ spec.metadata['homepage_uri'] = spec.homepage
17
+ spec.metadata['source_code_uri'] = 'https://github.com/elct9620/vscinemas-rb'
18
+ # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
+ `git ls-files -z`.split("\x0").reject do |f|
24
+ (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
25
+ end
26
+ end
27
+ spec.bindir = 'exe'
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ['lib']
30
+
31
+ # Uncomment to register a new dependency of your gem
32
+ spec.add_dependency 'nokogiri'
33
+
34
+ # For more information and examples about making a new gem, checkout our
35
+ # guide at: https://bundler.io/guides/creating_gem.html
36
+ spec.metadata = {
37
+ 'rubygems_mfa_required' => 'true'
38
+ }
39
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vscinemas
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - 蒼時弦也
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-12-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: The Taiwan VSCinema crawler to get latest film list.
28
+ email:
29
+ - contact@frost.tw
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rspec"
35
+ - ".rubocop.yml"
36
+ - CODE_OF_CONDUCT.md
37
+ - Gemfile
38
+ - Gemfile.lock
39
+ - README.md
40
+ - Rakefile
41
+ - bin/console
42
+ - bin/setup
43
+ - lib/vscinemas.rb
44
+ - lib/vscinemas/movie_item.rb
45
+ - lib/vscinemas/movie_list.rb
46
+ - lib/vscinemas/version.rb
47
+ - vscinemas.gemspec
48
+ homepage: https://github.com/elct9620/vscinemas-rb
49
+ licenses: []
50
+ metadata:
51
+ rubygems_mfa_required: 'true'
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 2.5.0
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubygems_version: 3.2.26
68
+ signing_key:
69
+ specification_version: 4
70
+ summary: The Taiwan VSCinema crawler to get latest film list.
71
+ test_files: []