stream_grabber 0.1.0 → 0.1.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.
Files changed (3) hide show
  1. data/README.md +2 -2
  2. data/lib/stream_grabber/github.rb +1 -1
  3. metadata +3 -3
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  StreamGrabber
2
2
  =============
3
3
 
4
- StreamGrabber is a way of multiplexing streams and feeds together into a timeline, it supports twitter, last.fm and github at the moment but is designed to be fairly trivial to add new sources, providing they have some kind of public facing data stream…
4
+ StreamGrabber is a Rails Engine that can be included in your application to multiplex streams and feeds together into a timeline, it supports twitter, last.fm and github at the moment but is designed to be fairly trivial to add new sources, providing they have some kind of public facing data stream…
5
5
 
6
6
  Usage
7
7
  -----
@@ -11,7 +11,7 @@ you'll need to give it your username for these sites. Create
11
11
  following
12
12
 
13
13
  :twitter: username
14
- :lastfm: username
14
+ :last_fm: username
15
15
  :github: username
16
16
 
17
17
  And then you can include the plugin in your Gemfile like so
@@ -18,7 +18,7 @@ module StreamGrabber
18
18
  end
19
19
 
20
20
  def message_from(link, title)
21
- %Q{<a href="#{link}">#{title}</a>"}
21
+ %Q{<a href="#{link}">#{title}</a>}
22
22
  end
23
23
  end
24
24
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stream_grabber
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matt House