thenewslensapi 1.4.1 → 2.0.1
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
- metadata +3 -15
- data/.DS_Store +0 -0
- data/Gemfile +0 -7
- data/README.md +0 -34
- data/Rakefile +0 -5
- data/lib/.DS_Store +0 -0
- data/lib/thenewslensapi/newsdigest.rb +0 -10
- data/lib/thenewslensapi/thenewslensapi.rb +0 -41
- data/lib/thenewslensapi/version.rb +0 -4
- data/lib/thenewslensapi.rb +0 -2
- data/spec/minitest.rb +0 -30
- data/thenewslensapi.gemspec +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d9064d3a9adac811027804085f0d11834c54b8d
|
4
|
+
data.tar.gz: 108bd373bff44bf1da7dfba655be81248ff7bb6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbf21934690308152796151df36658e8ddeb501ce004a23304c97ae79a0d749af38c4ddd5f1343502415ac7f646fe55913a31d0388b460bfbcffe0c078b68b9b
|
7
|
+
data.tar.gz: 16662916af0cc189c3ee04485ef13bc638fce4265b99e27a3e77be331af5fb4d254682ed994a613368b87abafed162aabf963bd08de6cf4ee2ec8b305068e2c2
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thenewslensapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anita Lin
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-
|
13
|
+
date: 2014-11-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|
@@ -61,18 +61,7 @@ executables:
|
|
61
61
|
extensions: []
|
62
62
|
extra_rdoc_files: []
|
63
63
|
files:
|
64
|
-
- ".DS_Store"
|
65
|
-
- Gemfile
|
66
|
-
- README.md
|
67
|
-
- Rakefile
|
68
64
|
- bin/thenewslensapi
|
69
|
-
- lib/.DS_Store
|
70
|
-
- lib/thenewslensapi.rb
|
71
|
-
- lib/thenewslensapi/newsdigest.rb
|
72
|
-
- lib/thenewslensapi/thenewslensapi.rb
|
73
|
-
- lib/thenewslensapi/version.rb
|
74
|
-
- spec/minitest.rb
|
75
|
-
- thenewslensapi.gemspec
|
76
65
|
homepage: https://github.com/SOAgroup3/theNewsLensApi
|
77
66
|
licenses:
|
78
67
|
- MIT
|
@@ -97,5 +86,4 @@ rubygems_version: 2.2.2
|
|
97
86
|
signing_key:
|
98
87
|
specification_version: 4
|
99
88
|
summary: Grab the news information from theNewsLens
|
100
|
-
test_files:
|
101
|
-
- spec/minitest.rb
|
89
|
+
test_files: []
|
data/.DS_Store
DELETED
Binary file
|
data/Gemfile
DELETED
data/README.md
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
|
2
|
-
## The-Newslens_HW - A RSS reader by ourselves
|
3
|
-
|
4
|
-
Authors : LinAnita, peyruchao(peggy) and ethancychen
|
5
|
-
|
6
|
-
### The website: The News Lens ( http://www.thenewslens.com )
|
7
|
-
> This website is a platform to provide different and multiple points of the news or some accidents.
|
8
|
-
It can let users to discuss the news and make comments.
|
9
|
-
|
10
|
-
### What do we want to scrape?
|
11
|
-
|
12
|
-
> The title, author and lauched time of the news in NewsLens.com's main page.
|
13
|
-
|
14
|
-
###Usage
|
15
|
-
> In command line just type in
|
16
|
-
```ruby newsdigests.rb```
|
17
|
-
and our program will put out a new file(test.txt) in the directory. The file shows the titles, author and lauched time of the news in NewsLens.com's main page. No parameters is needed.
|
18
|
-
For example, if we type ```ruby newsdigests.rb``` in command line, it will produce a file call "test.txt". The outcome of the file will be look like this:
|
19
|
-
> <pre>
|
20
|
-
---
|
21
|
-
title: 習近平點名批評央視「大褲衩」,北京此後不再興建奇怪建築
|
22
|
-
author: KaChun
|
23
|
-
date: 2014-10-18
|
24
|
-
---
|
25
|
-
title: 教師的多元發聲:第二個全國教師工會「全教產」成立
|
26
|
-
author: TNL 編輯
|
27
|
-
date: 2014-10-18
|
28
|
-
</pre>
|
29
|
-
|
30
|
-
> Install it with the following command:
|
31
|
-
```gem install thenewslensapi```
|
32
|
-
|
33
|
-
> Then in your file:
|
34
|
-
```require "thenewslensapi"```
|
data/Rakefile
DELETED
data/lib/.DS_Store
DELETED
Binary file
|
@@ -1,41 +0,0 @@
|
|
1
|
-
require 'nokogiri'
|
2
|
-
require 'open-uri'
|
3
|
-
require 'yaml'
|
4
|
-
require 'date'
|
5
|
-
module Thenewslensapi
|
6
|
-
# class for NewsLens
|
7
|
-
class NewsLens
|
8
|
-
LINK = 'http://www.thenewslens.com'
|
9
|
-
NEWS_XPATH = "//main[@class='HolyGrail-content']
|
10
|
-
//div[@class='post-list-item']"
|
11
|
-
|
12
|
-
def self.gets_news
|
13
|
-
doc = gets_html(LINK)
|
14
|
-
content = gets_content(doc)
|
15
|
-
news = gets_titles(content)
|
16
|
-
to_yaml(news)
|
17
|
-
end
|
18
|
-
def self.gets_html(url)
|
19
|
-
Nokogiri::HTML(open(url))
|
20
|
-
end
|
21
|
-
def self.gets_content(doc)
|
22
|
-
doc.xpath(NEWS_XPATH)
|
23
|
-
end
|
24
|
-
def self.gets_titles(news)
|
25
|
-
news.map(&:text)
|
26
|
-
end
|
27
|
-
def self.to_yaml(item)
|
28
|
-
my_hash = {}
|
29
|
-
col_name = ["title","author","date"]
|
30
|
-
item.map do |x|
|
31
|
-
x.strip!
|
32
|
-
x.gsub!(/\n+/,"\n")
|
33
|
-
values = x.split("\n")
|
34
|
-
values[2] = Date.parse(values[2])
|
35
|
-
my_hash = Hash[col_name.zip values]
|
36
|
-
#my_hash.to_yaml
|
37
|
-
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
data/lib/thenewslensapi.rb
DELETED
data/spec/minitest.rb
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
require 'minitest/spec'
|
2
|
-
require 'minitest/autorun'
|
3
|
-
require './newsdigest.rb'
|
4
|
-
|
5
|
-
describe 'the_newslens_test' do
|
6
|
-
before do
|
7
|
-
@newsfound = Thenewslensapi::NewsLens.gets_news
|
8
|
-
end
|
9
|
-
|
10
|
-
it 'they are not nil' do
|
11
|
-
@newsfound.each do |x|
|
12
|
-
x['title'].wont_be_nil
|
13
|
-
x['author'].wont_be_nil
|
14
|
-
x['date'].wont_be_nil
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
it 'it is a date string' do
|
19
|
-
@newsfound.each do |x|
|
20
|
-
x['date'].must_be_instance_of Date
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'it is close to 2013' do
|
25
|
-
@newsfound.each do |x|
|
26
|
-
x['date'].year.must_be_close_to 2013, 2
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
end
|
data/thenewslensapi.gemspec
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
$:.push File.expand_path("../lib", __FILE__)
|
2
|
-
require 'thenewslensapi/version'
|
3
|
-
|
4
|
-
Gem::Specification.new do |s|
|
5
|
-
s.name = 'thenewslensapi'
|
6
|
-
s.version = Thenewslensapi::VERSION
|
7
|
-
s.executables << 'thenewslensapi'
|
8
|
-
s.date = '2014-10-23'
|
9
|
-
s.summary = 'Grab the news information from theNewsLens'
|
10
|
-
s.description = 'Automatically give you the titles of latest news.'
|
11
|
-
s.authors = ['Anita Lin', 'Peggy Chao', 'Ethan Chen']
|
12
|
-
s.email = 'gatheringbc@gmail.com'
|
13
|
-
s.files = `git ls-files`.split("\n")
|
14
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
15
|
-
s.homepage = 'https://github.com/SOAgroup3/theNewsLensApi'
|
16
|
-
s.license = 'MIT'
|
17
|
-
|
18
|
-
s.add_development_dependency 'minitest'
|
19
|
-
s.add_development_dependency 'minitest-rg'
|
20
|
-
s.add_runtime_dependency 'nokogiri', '>= 1.6.2' # v.1.6.2 has documented problems
|
21
|
-
end
|