tweetstream 0.1.7 → 0.1.8
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.rdoc +1 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -94,7 +94,7 @@ application.
|
|
|
94
94
|
|
|
95
95
|
It is often the case that you will need to change the parameters of your
|
|
96
96
|
track or follow tweet streams. In the case that you need to terminate
|
|
97
|
-
a stream, simply call <tt>TweetStream::Client.stop from within your
|
|
97
|
+
a stream, simply call <tt>TweetStream::Client.stop</tt> from within your
|
|
98
98
|
loop:
|
|
99
99
|
|
|
100
100
|
# Stop after collecting 10 statuses
|
data/Rakefile
CHANGED
|
@@ -24,7 +24,7 @@ end
|
|
|
24
24
|
namespace :release do
|
|
25
25
|
%w(patch minor major).each do |level|
|
|
26
26
|
desc "Tag a #{level} version and push it to Gemcutter."
|
|
27
|
-
|
|
27
|
+
task level.to_sym => %w(version:bump:patch release gemcutter:release)
|
|
28
28
|
end
|
|
29
29
|
end
|
|
30
30
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.8
|