stars 0.3.2 → 0.4.0

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.
data/README.markdown CHANGED
@@ -57,11 +57,12 @@ You can also get some knowledge dropped all over your face about a specific toot
57
57
  I'm sequestering it in a small room underneath my stairs so
58
58
  its screams can't be heard.
59
59
 
60
- twilighteyes08
61
- itsjustEm
62
- aklw
63
- shariv67
64
- IsJonas
60
+ twilighteyes08
61
+ itsjustEm
62
+ aklw
63
+ shariv67
64
+ IsJonas
65
+ RT kneath
65
66
 
66
67
 
67
68
  ## state of affairs
@@ -70,4 +71,4 @@ Fork this bad boy and shape it as you see fit. I just randomly built some shit t
70
71
 
71
72
  ## who
72
73
 
73
- [@holman](http://twitter.com/holman) did this. Follow me and star my stuff incessantly so we can prove to Dean Allen that stars are as important as currency, much [to his logically-argued dismay](http://favrd.textism.com/).
74
+ [@holman](http://twitter.com/holman) did this. Follow me and star my stuff incessantly so we can prove to Dean Allen that stars are as important as currency, much [to his logically-argued dismay](http://favrd.textism.com/).
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.2
1
+ 0.4.0
data/lib/stars/favstar.rb CHANGED
@@ -16,9 +16,18 @@ module Stars
16
16
  def show(url)
17
17
  # hardcode 17 to strip favstar domain for now
18
18
  html = self.class.get(url[17..200], :format => :html)
19
+
20
+ output = ''
21
+
19
22
  Nokogiri::HTML(html).css('div[id^="faved_by_others"] img').collect do |img|
20
- " ★ #{img.attributes['alt'].value}"
23
+ output << " ★ #{img.attributes['alt'].value}\n"
21
24
  end
25
+
26
+ Nokogiri::HTML(html).css('div[id^="rt_by_others"] img').collect do |img|
27
+ output << " RT #{img.attributes['alt'].value}\n"
28
+ end
29
+
30
+ output
22
31
  end
23
32
  end
24
33
  end
data/stars.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{stars}
8
- s.version = "0.3.2"
8
+ s.version = "0.4.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Zach Holman"]
12
- s.date = %q{2010-09-23}
12
+ s.date = %q{2010-12-24}
13
13
  s.default_executable = %q{stars}
14
14
  s.description = %q{Recent favstar faves on your command line.}
15
15
  s.email = %q{github.com@zachholman.com}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stars
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 15
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 3
9
- - 2
10
- version: 0.3.2
8
+ - 4
9
+ - 0
10
+ version: 0.4.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Zach Holman
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-09-23 00:00:00 -07:00
18
+ date: 2010-12-24 00:00:00 -06:00
19
19
  default_executable: stars
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency