shopee 0.0.1 → 0.0.2
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/LICENSE +21 -0
- data/README.md +7 -7
- data/bin/shopee_titles +1 -1
- data/fixtures/vcr_cassettes/shopee.yml +1239 -0
- data/lib/shopee/version.rb +4 -0
- data/shopee.gemspec +22 -0
- metadata +5 -1
data/shopee.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
2
|
+
require 'shopee/version'
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = 'shopee'
|
5
|
+
s.version = ShopeeTileScrape::VERSION
|
6
|
+
s.date = ShopeeTileScrape::DATE
|
7
|
+
s.executables << 'shopee_titles'
|
8
|
+
s.summary = 'Scrape categories of shopee!'
|
9
|
+
s.description = 'Scrape categories of shopee!'
|
10
|
+
s.authors = ['Sheng Jung Wu', 'Calvin Jeng', 'Henry Chang', 'Yi Wei Huang']
|
11
|
+
s.files = `git ls-files`.split("\n")
|
12
|
+
s.test_files = `git ls-files spec/*`.split("\n")
|
13
|
+
s.homepage = 'https://github.com/Smartibuy/ideate-and-scrape'
|
14
|
+
s.license = 'MIT'
|
15
|
+
|
16
|
+
# depend gem
|
17
|
+
s.add_development_dependency 'minitest'
|
18
|
+
s.add_development_dependency 'vcr'
|
19
|
+
s.add_development_dependency 'webmock'
|
20
|
+
s.add_runtime_dependency 'oga'
|
21
|
+
s.add_runtime_dependency 'json'
|
22
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shopee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sheng Jung Wu
|
@@ -93,10 +93,14 @@ files:
|
|
93
93
|
- ".gitignore"
|
94
94
|
- ".travis.yml"
|
95
95
|
- Gemfile
|
96
|
+
- LICENSE
|
96
97
|
- README.md
|
97
98
|
- Rakefile
|
98
99
|
- bin/shopee_titles
|
100
|
+
- fixtures/vcr_cassettes/shopee.yml
|
101
|
+
- lib/shopee/version.rb
|
99
102
|
- lib/shopee_scrap.rb
|
103
|
+
- shopee.gemspec
|
100
104
|
- spec/shopee_spec.rb
|
101
105
|
- vcr/vcr.rb
|
102
106
|
homepage: https://github.com/Smartibuy/ideate-and-scrape
|