hacker_term 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,8 +1,14 @@
1
1
  hacker_term
2
2
  ==========
3
-
4
3
  Hacker News on the Terminal.
5
4
 
5
+ Installation
6
+ ------------
7
+ * Install with `gem install hacker_term`
8
+ * Run using `hacker_term`
9
+
10
+ Overview
11
+ --------
6
12
  See the front page of HN, use the arrow keys to browse and open particular items in the default system browser.
7
13
 
8
14
  * Uses the Ruby `curses` library to create a terminal UI.
@@ -13,6 +19,8 @@ See the front page of HN, use the arrow keys to browse and open particular items
13
19
  * Sorting options included.
14
20
  * Some stats included.
15
21
 
22
+ Background
23
+ ----------
16
24
  This project was created to allow me to scratch a particular programming itch after reading about https://github.com/etsy/mctop. It brought me back to my days in college coding in C where everything was a terminal program!
17
25
 
18
26
  Please enjoy/contribute/ignore as you see fit.
data/Rakefile CHANGED
@@ -1 +1,3 @@
1
1
  require "bundler/gem_tasks"
2
+ require 'bundler'
3
+ Bundler::GemHelper.install_tasks
@@ -1,3 +1,3 @@
1
1
  module HackerTerm
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: hacker_term
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Ciaran Archer
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  requirements: []
94
94
 
95
95
  rubyforge_project:
96
- rubygems_version: 1.8.10
96
+ rubygems_version: 1.8.24
97
97
  signing_key:
98
98
  specification_version: 3
99
99
  summary: Allows the reading, sorting and opening of HN articles from the terminal.