cure_line 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: 5ad6e35b7296af286c9e0d93b073b3d54a12ca8af8f1094d8ca621118535f5be
4
+ data.tar.gz: ae4a0b2c45e4922b42096060edd8c7fbe1c2e7383700c85d71159732434bdf5e
5
+ SHA512:
6
+ metadata.gz: 002c16d842711c311d43a172125f07cd9230841aa4c0151b9e49653aebb1d2695908f33a6ea50fa007cde5b00b421b5a6111b0baf59ab4f49fc0e6758c08fa3f
7
+ data.tar.gz: 6ded5dc4a28480ed8132f3f6943c8b83ec756d6cbd379de2d3c954f39226ff50f735ee6c6fbdd3a786bae8777439c09947214724dd770f8f18b7fe7403f38db1
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ repo_token: aMXZgwUZB6CJaPiTyRvmo6fM9OQr3avnj
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,27 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.3
4
+ - 2.4.1
5
+ - 2.5.0
6
+ - ruby-head
7
+ bundler_args: "--jobs=4"
8
+ cache: bundler
9
+ before_install:
10
+ - gem update --system --no-document
11
+ - gem install bundler -v 1.16.1 --no-document
12
+ before_script:
13
+ - export CODECLIMATE_REPO_TOKEN=29bb92272b70024f792a291432c81de6da73524199d344128630289f14367f9b
14
+ script:
15
+ - bundle exec rspec
16
+ - bundle exec codeclimate-test-reporter
17
+ branches:
18
+ only:
19
+ - master
20
+ notifications:
21
+ email: false
22
+ slack:
23
+ secure: u7fcioS9qrq1phAZ2sr6kueIwyIsZCLHWvrdY75Fc/+0STnSwYEVQ24rX1yY2A+ThJdfOcqriUb4txpH1QmGQaf4GgddMdhslr+uBA5ISQuBgI4QZ5ePb8w7CyJGGkZB6+61QMY5InorWuNxOcTcOhne40KTkdieH0HP2QIu2vRZlxWNrCZ3dlkIsVt5ndPRT5/+0RPicJthj/cSlcsavr/W68XV8qWx9xFZmVmxLRMuoo6fR2SH6qAn2xfrvuG0NUVnZWsoMaB7J4A3qZaeZmq5vbYlP6rdp+VyBZpDl84VpbCEGtXXMS0vE+qyRPUWQGWATGlnP3inp6dZ6wumiutDRDVkSH3zFGJfL3q6dXJRFiYFAP8H9vVBMKvQYqPBfRv1mOmdA9hyRTlkGbOogh4lv/+NCs8kbfvoTQ9ywSR9QWgfc6U066+SwXJ7PKgaRs+gYLi9H5TOprwhEgSSmrHD2kIepQwDdAttLM84msAoz+FNx2Uwt1tvvvfjfKanTlqQjZQed7cTxlevA0SHS/EM0MoGHPHrwmWA8LPgHxAGYdPKLFfQxNJNpLBi/WDnVFYE5xVxyXklJcAsjWXu4lDPOT/FurovsJSk+SpNOINAnvaD50RJDQCDwdv5qGuucb0dldJDaDC/wp6GDNecZWo6cUo7lnUbt/odrl/d6k0=
24
+ matrix:
25
+ allow_failures:
26
+ - rvm: ruby-head
27
+ sudo: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## Unreleased
2
+ [full changelog](http://github.com/sue445/cure_line/compare/v0.1.0...master)
3
+
4
+ ## v0.1.0
5
+ * first release
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in cure_line.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 sue445
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,83 @@
1
+ # CureLine
2
+ [LINE TIMELINE](https://timeline.line.me/) scraping tool
3
+
4
+ [![Build Status](https://travis-ci.org/sue445/cure_line.svg?branch=master)](https://travis-ci.org/sue445/cure_line)
5
+ [![Maintainability](https://api.codeclimate.com/v1/badges/25259e188e96c1b78164/maintainability)](https://codeclimate.com/github/sue445/cure_line/maintainability)
6
+ [![Coverage Status](https://coveralls.io/repos/github/sue445/cure_line/badge.svg?branch=master)](https://coveralls.io/github/sue445/cure_line?branch=master)
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'cure_line'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install cure_line
23
+
24
+ ## Usage
25
+
26
+ ```ruby
27
+ # read https://timeline.line.me/user/_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE
28
+ user = CureLine.user("_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE")
29
+
30
+ user.info
31
+ #=> {"mid"=>"_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE",
32
+ # "nickname"=>"プリキュア",
33
+ # "pictureUrl"=>"https://profile.line-scdn.net/0hU_sA3K0gCnBOOCZuQUx1J3J9BB05Fgw4Nl9BQmxsUEZjCU0jewlCFWo-UEk3CRhxdQtCQ20_VRBk",
34
+ # "userValid"=>true,
35
+ # "writerMid"=>"_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE"}
36
+
37
+ user.header_url
38
+ #=> "https://obs.line-scdn.net/htzWKFLgwN1RRXiRaCAgwLR0sfTZOB28EU1VjYxs0IWYTAjkDUFViZhhgJjJHUmRR"
39
+
40
+ post = user.posts.first
41
+
42
+ post.nickname
43
+ #=> "プリキュア"
44
+
45
+ post.picture_url
46
+ #=> "https://profile.line-scdn.net/0hU_sA3K0gCnBOOCZuQUx1J3J9BB05Fgw4Nl9BQmxsUEZjCU0jewlCFWo-UEk3CRhxdQtCQ20_VRBk"
47
+
48
+ post.post_url
49
+ #=> "https://timeline.line.me/post/_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE/1152127900305060448"
50
+
51
+ post.text
52
+ #=> "プリキュアになってから、さあやとほまれとますます仲良くなれて、\n超うれしー!!\(^o^)/\n今日はビューティーハリーで、お互いに洋服をコーディネイトし合ったんだ~。\n\nさあやは、大人っぽいデザインのスカートがめっちゃ似合ってた!\nう~ん、絵のモデルさんになれそうなくらい素敵!( *´艸`)\n\nほまれはオシャレ上級者しか着こなせないような、最先端のオールインワンがぴったり!\n背が高くて、足が長い人はいいな~、うぅ……(T_T)\n\nはぐたんはくまさんの耳がついたフードをかぶって……。\nきゃ、きゃ、きゃわたん~~~~(・´з`・)\n拝みたくなる可愛さでした♡\n\nで……私は!?私は何が似合うかな!?\nえっ……ハリーおすすめのどデカイ虎の絵が描いてあるトレーナー!!?\nみんな、似合ってるって言ってくれるけど……お腹抱えて笑ってるじゃん!!ヽ(`Д´)ノプンプン\n\nう~ん、でも言われてみれば、たしかに似合ってるような……。\nこれを着こなせるって、逆にすごいかも☆(^ε^)\nはぁ~、今日もいい一日でした!"
53
+
54
+ post.created_time
55
+ #=> 2018-03-17 18:30:03 +0900
56
+
57
+ post.updated_time
58
+ #=> 2018-03-17 18:30:03 +0900
59
+
60
+ post.photo_urls
61
+ #=> ["https://obs.line-scdn.net/h5XG4_2KndnZXIWV4GHdxDwZTY0ZUe34iR3snQghNNkNUfSx0Qy4lRF9PPERUeS8iQy9gFwtOYENTfg"]
62
+ ```
63
+
64
+ ### [Config](lib/cure_line/config.rb)
65
+ ```ruby
66
+ CureLine.config.user_agent = "XXXX"
67
+ ```
68
+
69
+ * `user_agent` : User Agent
70
+
71
+ ## Development
72
+
73
+ 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.
74
+
75
+ 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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
76
+
77
+ ## Contributing
78
+
79
+ Bug reports and pull requests are welcome on GitHub at https://github.com/sue445/cure_line.
80
+
81
+ ## License
82
+
83
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cure_line"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ require "pry"
10
+ Pry.start
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
data/cure_line.gemspec ADDED
@@ -0,0 +1,35 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "cure_line/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cure_line"
8
+ spec.version = CureLine::VERSION
9
+ spec.authors = ["sue445"]
10
+ spec.email = ["sue445@sue445.net"]
11
+
12
+ spec.summary = %q{LINE TIMELINE scraping tool}
13
+ spec.description = %q{LINE TIMELINE scraping tool}
14
+ spec.homepage = "https://github.com/sue445/cure_line"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_dependency "hashie"
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.16"
27
+ spec.add_development_dependency "codeclimate-test-reporter", "~> 1.0.0"
28
+ spec.add_development_dependency "coveralls"
29
+ spec.add_development_dependency "pry-byebug"
30
+ spec.add_development_dependency "rake", "~> 10.0"
31
+ spec.add_development_dependency "rspec", "~> 3.0"
32
+ spec.add_development_dependency "rspec-its"
33
+ spec.add_development_dependency "simplecov"
34
+ spec.add_development_dependency "webmock"
35
+ end
@@ -0,0 +1,7 @@
1
+ module CureLine
2
+ class Config
3
+ # @!attribute [rw] user_agent
4
+ # @return [String]
5
+ attr_accessor :user_agent
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module CureLine
2
+ class Mash < Hashie::Mash
3
+ disable_warnings
4
+ end
5
+ end
@@ -0,0 +1,52 @@
1
+ module CureLine
2
+ class Post < Mash
3
+ include TimeMethods
4
+ include ResourceMethods
5
+
6
+ # @return [String]
7
+ def nickname
8
+ dig("post", "userInfo", "nickname")
9
+ end
10
+
11
+ # @return [String]
12
+ def picture_url
13
+ dig("post", "userInfo", "pictureUrl")
14
+ end
15
+
16
+ # @return [String]
17
+ def post_url
18
+ home_id = dig("post", "postInfo", "homeId")
19
+ post_id = dig("post", "postInfo", "postId")
20
+ "https://timeline.line.me/post/#{home_id}/#{post_id}"
21
+ end
22
+
23
+ # @return [String]
24
+ def text
25
+ dig("post", "contents", "text")
26
+ end
27
+
28
+ # @return [ActiveSupport::TimeWithZone] When `Time.zone` is initialized
29
+ # @return [Time] When `Time.zone` is not initialized or without activesupport
30
+ def created_time
31
+ millisec = dig("post", "postInfo", "createdTime")
32
+ time_at(millisec / 1000)
33
+ end
34
+
35
+ # @return [ActiveSupport::TimeWithZone] When `Time.zone` is initialized
36
+ # @return [Time] When `Time.zone` is not initialized or without activesupport
37
+ def updated_time
38
+ millisec = dig("post", "postInfo", "updatedTime")
39
+ time_at(millisec / 1000)
40
+ end
41
+
42
+ # @return [Array<String>]
43
+ def photo_urls
44
+ medias.select { |media| media["type"] == "PHOTO" }.map { |media| resource_url(media["resourceId"]) }
45
+ end
46
+
47
+ # @return [Array<Hash>]
48
+ def medias
49
+ dig("post", "contents", "media")
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,9 @@
1
+ module CureLine
2
+ module ResourceMethods
3
+ def resource_url(resource_id)
4
+ raise ArgumentError, "resource_id is required" unless resource_id
5
+
6
+ "https://obs.line-scdn.net/#{resource_id}"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,15 @@
1
+ module CureLine
2
+ module TimeMethods
3
+ # @param unixtime [Integer]
4
+ #
5
+ # @return [ActiveSupport::TimeWithZone] When `Time.zone` is initialized
6
+ # @return [Time] When `Time.zone` is not initialized or without activesupport
7
+ def time_at(unixtime)
8
+ if Time.respond_to?(:zone) && Time.zone.respond_to?(:at)
9
+ Time.zone.at(unixtime)
10
+ else
11
+ Time.at(unixtime)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,50 @@
1
+ module CureLine
2
+ require "open-uri"
3
+ require "json"
4
+
5
+ class User
6
+ attr_reader :user_id
7
+
8
+ include ResourceMethods
9
+
10
+ # @param user_id [String]
11
+ #
12
+ # @example
13
+ # # read https://timeline.line.me/user/_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE
14
+ # user = CureLine::User.new("_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE")
15
+ def initialize(user_id)
16
+ @user_id = user_id
17
+ end
18
+
19
+ # @return [CureLine::Mash]
20
+ def info
21
+ preloaded_state["userHome"]["homeInfo"]["userInfo"]
22
+ end
23
+
24
+ # @return [String]
25
+ def header_url
26
+ resource_url(preloaded_state["userHome"]["homeInfo"]["resourceId"])
27
+ end
28
+
29
+ # @return [Array<CureLine::Post>]
30
+ def posts
31
+ preloaded_state["userHome"]["feeds"].map { |feed| CureLine::Post.new(feed) }
32
+ end
33
+
34
+ # @return [CureLine::Mash]
35
+ def preloaded_state
36
+ return @preloaded_state if @preloaded_state
37
+
38
+ options = {}
39
+ options["User-Agent"] = CureLine.config.user_agent if CureLine.config.user_agent
40
+
41
+ url = "https://timeline.line.me/user/#{user_id}"
42
+ html = open(url, options).read
43
+
44
+ m = html.match(/window.__PRELOADED_STATE__\s*=\s*({.+})/)
45
+ raise "Not Found window.__PRELOADED_STATE__ in #{url}" unless m
46
+
47
+ @preloaded_state = CureLine::Mash.new(JSON.parse(m[1]))
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,3 @@
1
+ module CureLine
2
+ VERSION = "0.1.0"
3
+ end
data/lib/cure_line.rb ADDED
@@ -0,0 +1,27 @@
1
+ require "cure_line/version"
2
+ require "hashie"
3
+
4
+ module CureLine
5
+ autoload :Config, "cure_line/config"
6
+ autoload :Mash, "cure_line/mash"
7
+ autoload :Post, "cure_line/post"
8
+ autoload :ResourceMethods, "cure_line/resource_methods"
9
+ autoload :TimeMethods, "cure_line/time_methods"
10
+ autoload :User, "cure_line/user"
11
+
12
+ # @param user_id [String]
13
+ #
14
+ # @return [CureLine::User]
15
+ #
16
+ # @example
17
+ # # read https://timeline.line.me/user/_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE
18
+ # user = CureLine.user("_dYbbV3vmaJrvqBoV5ZlpCbPN2CWUZdDQayBvjBE")
19
+ def self.user(user_id)
20
+ User.new(user_id)
21
+ end
22
+
23
+ # @return [CureLine::Config]
24
+ def self.config
25
+ @config ||= Config.new
26
+ end
27
+ end
metadata ADDED
@@ -0,0 +1,204 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cure_line
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - sue445
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-03-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: hashie
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
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: codeclimate-test-reporter
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.0.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.0.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: coveralls
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry-byebug
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '10.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '10.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rspec-its
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: simplecov
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: webmock
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ description: LINE TIMELINE scraping tool
154
+ email:
155
+ - sue445@sue445.net
156
+ executables: []
157
+ extensions: []
158
+ extra_rdoc_files: []
159
+ files:
160
+ - ".coveralls.yml"
161
+ - ".gitignore"
162
+ - ".rspec"
163
+ - ".travis.yml"
164
+ - CHANGELOG.md
165
+ - Gemfile
166
+ - LICENSE.txt
167
+ - README.md
168
+ - Rakefile
169
+ - bin/console
170
+ - bin/setup
171
+ - cure_line.gemspec
172
+ - lib/cure_line.rb
173
+ - lib/cure_line/config.rb
174
+ - lib/cure_line/mash.rb
175
+ - lib/cure_line/post.rb
176
+ - lib/cure_line/resource_methods.rb
177
+ - lib/cure_line/time_methods.rb
178
+ - lib/cure_line/user.rb
179
+ - lib/cure_line/version.rb
180
+ homepage: https://github.com/sue445/cure_line
181
+ licenses:
182
+ - MIT
183
+ metadata: {}
184
+ post_install_message:
185
+ rdoc_options: []
186
+ require_paths:
187
+ - lib
188
+ required_ruby_version: !ruby/object:Gem::Requirement
189
+ requirements:
190
+ - - ">="
191
+ - !ruby/object:Gem::Version
192
+ version: '0'
193
+ required_rubygems_version: !ruby/object:Gem::Requirement
194
+ requirements:
195
+ - - ">="
196
+ - !ruby/object:Gem::Version
197
+ version: '0'
198
+ requirements: []
199
+ rubyforge_project:
200
+ rubygems_version: 2.7.6
201
+ signing_key:
202
+ specification_version: 4
203
+ summary: LINE TIMELINE scraping tool
204
+ test_files: []