twitter-stream 0.1.11 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of twitter-stream might be problematic. Click here for more details.
- data/Rakefile +9 -9
- data/VERSION +1 -1
- data/spec/spec_helper.rb +3 -3
- data/spec/twitter/{json_stream.rb → json_stream_spec.rb} +0 -0
- metadata +5 -5
data/Rakefile
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
#
|
9
|
-
|
10
|
-
|
11
|
-
|
3
|
+
gem 'rspec', '>= 2.5.0'
|
4
|
+
require 'rspec/core/rake_task'
|
5
|
+
|
6
|
+
desc "Run all specs"
|
7
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
8
|
+
# t.spec_files = FileList['spec/**/*.rb']
|
9
|
+
t.rspec_opts = %w(-fs --color)
|
10
|
+
end
|
11
|
+
task :default => :spec
|
12
12
|
|
13
13
|
begin
|
14
14
|
require 'jeweler'
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.12
|
data/spec/spec_helper.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twitter-stream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 3
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 12
|
10
|
+
version: 0.1.12
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Vladimir Kolesnikov
|
@@ -82,7 +82,7 @@ files:
|
|
82
82
|
- fixtures/twitter/basic_http.txt
|
83
83
|
- lib/twitter/json_stream.rb
|
84
84
|
- spec/spec_helper.rb
|
85
|
-
- spec/twitter/
|
85
|
+
- spec/twitter/json_stream_spec.rb
|
86
86
|
- twitter-stream.gemspec
|
87
87
|
has_rdoc: true
|
88
88
|
homepage: http://github.com/voloko/twitter-stream
|
@@ -121,4 +121,4 @@ summary: Twitter realtime API client
|
|
121
121
|
test_files:
|
122
122
|
- examples/reader.rb
|
123
123
|
- spec/spec_helper.rb
|
124
|
-
- spec/twitter/
|
124
|
+
- spec/twitter/json_stream_spec.rb
|