tellmeabout 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.
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'tellmeabout'
4
+ if ARGV.empty?
5
+ puts "usage: tellmeabout [name of article]"
6
+ puts "example: tellmeabout saturn"
7
+ puts "example: tellmeabout margaret thatcher"
8
+ exit 1
9
+ end
10
+
11
+ Tellmeabout.read_article(ARGV.join('_'))
@@ -1,3 +1,3 @@
1
1
  module Tellmeabout
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tellmeabout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-11 00:00:00.000000000 Z
12
+ date: 2013-04-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -46,7 +46,8 @@ dependencies:
46
46
  description: Wikipedia article reader
47
47
  email:
48
48
  - wlgriffiths@gmail.com
49
- executables: []
49
+ executables:
50
+ - tellmeabout
50
51
  extensions: []
51
52
  extra_rdoc_files: []
52
53
  files:
@@ -55,6 +56,7 @@ files:
55
56
  - LICENSE.txt
56
57
  - README.md
57
58
  - Rakefile
59
+ - bin/tellmeabout
58
60
  - lib/tellmeabout.rb
59
61
  - lib/tellmeabout/version.rb
60
62
  - lib/tellmeabout/wikipedia_content_cleaner.rb