theguardian-console 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (11) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +36 -0
  6. data/Rakefile +1 -0
  7. data/bin/g +47 -0
  8. data/g.gemspec +29 -0
  9. data/lib/g/version.rb +3 -0
  10. data/lib/g.rb +54 -0
  11. metadata +124 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0383560f192b6778e51bab02b6b75d5aaf997a4a
4
+ data.tar.gz: 11d77f7c241b954df8446cbbb53326666c892917
5
+ SHA512:
6
+ metadata.gz: c467bac7995c5a6abf930cd9a39399a3d31d0365407b1c5c4f8cc4ddb2aa0eacef697d566b62ec8432d21d6eccdf9c64d48ff317c90c78cb7434d1412d3b037e
7
+ data.tar.gz: b014d9d18854ad9fc771e2fa2c70a9b3df91721325bba0c70182bfad3c674d7f45bbdc3d58b11ace3761e6c228c33357680617517df0b9cfd35a429ed0b4cbf8
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .rvmrc
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in g.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Mohamed Magdy
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # G
2
+
3
+ Access TheGuardian headlines in the console
4
+
5
+ TODO: Fix the gem name. There is a typo :-(
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'thegurdian-console'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install thegurdian-console
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ g headlines
25
+ g headlines --per 20 # 20 headlines per page
26
+ g headlines -f 1-10-2013 # Headlines from 1st Oct till now
27
+ g -h # Help
28
+ ````
29
+
30
+ ## Contributing
31
+
32
+ 1. Fork it
33
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
34
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
35
+ 4. Push to the branch (`git push origin my-new-feature`)
36
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/g ADDED
@@ -0,0 +1,47 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
4
+ $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
5
+
6
+ require "g"
7
+ require "optparse"
8
+ require "optparse/time"
9
+
10
+ args = ARGV.dup
11
+
12
+ options = {}
13
+ OptionParser.new do |opts|
14
+ opts.on("-v", "--[no-]verbose", "Run verbosely") do |v|
15
+ options[:verbose] = v
16
+ end
17
+
18
+ opts.on("-p", "--page [DecimalInteger]", OptionParser::DecimalInteger, "Page") do |page|
19
+ options[:page] = page
20
+ end
21
+
22
+ opts.on("--per", "--per [DecimalInteger]", OptionParser::DecimalInteger, "Per page") do |per_page|
23
+ options[:per_page] = per_page
24
+ end
25
+
26
+ opts.on("-q x,y,z", Array, "Search query") do |query|
27
+ options[:q] = query.first
28
+ end
29
+
30
+ opts.on("-f", "--from [TIME]", Time, "Articles from date") do |from|
31
+ options[:from] = from
32
+ end
33
+
34
+ opts.on("-t", "--to [TIME]", Time, "Articles to date") do |to|
35
+ options[:to] = to
36
+ end
37
+
38
+ opts.on_tail("-h", "--help", "Show this message") do
39
+ puts opts
40
+ exit
41
+ end
42
+ end.parse!(ARGV)
43
+
44
+ ARGV.clear
45
+ command = args.shift.strip rescue 'help'
46
+
47
+ G::Command.run(command, options)
data/g.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'g/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "theguardian-console"
8
+ spec.version = G::VERSION
9
+ spec.authors = ["Mohamed Magdy"]
10
+ spec.email = ["eng.mohamagdy@gmail.com"]
11
+ spec.description = "TheGuardian is in the console ... Geek"
12
+ spec.summary = "g is for TheGuardian. The idea inspired from t for Twitter"
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = ["g"]
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ # Dependencies
22
+ spec.add_dependency("theguardian")
23
+ spec.add_dependency("table_print")
24
+ spec.add_dependency("terminal-table")
25
+
26
+ # Dependencies
27
+ spec.add_development_dependency "bundler", "~> 1.3"
28
+ spec.add_development_dependency "rake"
29
+ end
data/lib/g/version.rb ADDED
@@ -0,0 +1,3 @@
1
+ module G
2
+ VERSION = "0.0.2"
3
+ end
data/lib/g.rb ADDED
@@ -0,0 +1,54 @@
1
+ require "g/version"
2
+ require "theguardian"
3
+ require 'table_print'
4
+ require 'terminal-table'
5
+
6
+ module G
7
+ module Command
8
+ def self.run(command, args)
9
+ if command == "headlines"
10
+ G::Commands::Headline.list(args)
11
+ else
12
+ raise Exception.new("Invalide command")
13
+ end
14
+ end
15
+ end
16
+ end
17
+
18
+ module G
19
+ module Commands
20
+ module Headline
21
+ def self.list(params = {})
22
+ search_params = {
23
+ q: params[:q],
24
+ fields: ["headline"],
25
+ date: {
26
+ from: params[:from] || Time.now,
27
+ to: params[:to] || Time.now
28
+ },
29
+ page: params[:page],
30
+ per_page: params[:per_page]
31
+ }
32
+
33
+ items = Theguardian::ContentApi.search(search_params).items
34
+
35
+ table = Terminal::Table.new(headings: ["Date", "Headline", "Url"]) do |t|
36
+ items.each do |item|
37
+ item.pub_date = Time.parse(item.webPublicationDate).strftime("%Y-%m-%d %H:%M")
38
+ item.headline = item.fields.headline.scan(/.{#{40}}|.+/).map { |x| x.strip }.join("-\n")
39
+ item.webUrl = item.webUrl.scan(/.{#{60}}|.+/).map { |x| x.strip }.join("\n")
40
+
41
+ t << [item.pub_date, item.headline, item.webUrl]
42
+ t << :separator
43
+ end
44
+ end
45
+
46
+ puts table
47
+ end
48
+
49
+ def self.pretify(item)
50
+ puts "#{Time.parse(item.webPublicationDate).strftime("%Y-%m-%d %H:%M")} - #{item.fields.headline} - #{item.webUrl}"
51
+ end
52
+ end
53
+ end
54
+ end
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: theguardian-console
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Mohamed Magdy
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-10-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: theguardian
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: table_print
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: terminal-table
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '1.3'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '1.3'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
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
+ description: TheGuardian is in the console ... Geek
84
+ email:
85
+ - eng.mohamagdy@gmail.com
86
+ executables:
87
+ - g
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - .gitignore
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - bin/g
97
+ - g.gemspec
98
+ - lib/g.rb
99
+ - lib/g/version.rb
100
+ homepage: ''
101
+ licenses:
102
+ - MIT
103
+ metadata: {}
104
+ post_install_message:
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ! '>='
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubyforge_project:
120
+ rubygems_version: 2.0.7
121
+ signing_key:
122
+ specification_version: 4
123
+ summary: g is for TheGuardian. The idea inspired from t for Twitter
124
+ test_files: []