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 CHANGED
@@ -1,14 +1,14 @@
1
1
  require 'rubygems'
2
2
 
3
- # gem 'rspec', '= 1.3.0'
4
- # require 'spec/rake/spectask'
5
- #
6
- # desc "Run all specs"
7
- # Spec::Rake::SpecTask.new('spec') do |t|
8
- # t.spec_files = FileList['spec/**/*.rb']
9
- # t.spec_opts = %w(-fs --color)
10
- # end
11
- # task :default => :spec
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.11
1
+ 0.1.12
@@ -1,9 +1,9 @@
1
1
  require 'rubygems'
2
2
  $:.unshift File.expand_path("../../lib", __FILE__)
3
3
 
4
- gem 'rspec', '= 1.3.0'
5
- require 'spec'
6
- require 'spec/mocks'
4
+ gem 'rspec', '>= 2.5.0'
5
+ require 'rspec'
6
+ require 'rspec/mocks'
7
7
 
8
8
  require 'twitter/json_stream'
9
9
 
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: 13
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 11
10
- version: 0.1.11
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/json_stream.rb
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/json_stream.rb
124
+ - spec/twitter/json_stream_spec.rb