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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c6e0f2228fa214c1c78f18910e095b1bcd241188
4
- data.tar.gz: 98301ef3da68ee7f75056dc9832ffb8cbcd10b6b
3
+ metadata.gz: 1d9064d3a9adac811027804085f0d11834c54b8d
4
+ data.tar.gz: 108bd373bff44bf1da7dfba655be81248ff7bb6f
5
5
  SHA512:
6
- metadata.gz: 7e6d269352e7fa1b5b07be5fb23dced46149687897bfc0f354a1dd03324b5d1f544b8236e9d79fe68e49c87273ab524744d1231f7e83fe33623b3bb0c4377078
7
- data.tar.gz: 54b45a3eabc427aad2af3bf46fc8ee2c8352106d13dc2e37225055e58eada21db2d860f503c447f457398191b01f6c7c8ea2cac5369fcb9a8e8165ff71491f53
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: 1.4.1
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-10-23 00:00:00.000000000 Z
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
@@ -1,7 +0,0 @@
1
- source 'http://rubygems.org'
2
-
3
- gemspec
4
-
5
- group :test do
6
- gem 'rake'
7
- end
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
@@ -1,5 +0,0 @@
1
- task :default => :spec
2
- desc 'Run specs'
3
- task :spec do
4
- sh 'ruby -I lib spec/minitest.rb'
5
- end
data/lib/.DS_Store DELETED
Binary file
@@ -1,10 +0,0 @@
1
- require_relative 'thenewslensapi.rb'
2
-
3
- newsfound = Thenewslensapi::NewsLens.gets_news
4
-
5
- File.open('test.txt', 'w') do |file|
6
- # use "\n" for two lines of text
7
- newsfound.each do |x|
8
- file.puts x.to_yaml
9
- end
10
- end
@@ -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
@@ -1,4 +0,0 @@
1
- # Versioning
2
- module Thenewslensapi
3
- VERSION = '1.4.1'
4
- end
@@ -1,2 +0,0 @@
1
- require 'thenewslensapi/thenewslensapi.rb'
2
- #require 'Scraper/newsdigest.rb'
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
@@ -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