Sha256: e55249e5c2b9e8484f076e318931f27a1127139e87af50eb1100713ea847c3d9

Contents?: true

Size: 830 Bytes

Versions: 3

Compression:

Stored size: 830 Bytes

Contents

require 'rubygems'
gem 'rspec'
require 'spec/rake/spectask'

desc "Run all specs"
Spec::Rake::SpecTask.new('spec') do |t|
  t.spec_files = FileList['spec/**/*.rb']
  t.spec_opts = %w(-fs --color)
end

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "twitter-stream"
    gemspec.summary = "Twitter realtime API client"
    gemspec.description = "Simple Ruby client library for twitter streaming API. Uses EventMachine for connection handling. Adheres to twitter's reconnection guidline. JSON format only."
    gemspec.email = "voloko@gmail.com"
    gemspec.homepage = "http://github.com/voloko/twitter-stream"
    gemspec.authors = ["Vladimir Kolesnikov"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
twitter-stream-0.1.2 Rakefile
twitter-stream-0.1.1 Rakefile
twitter-stream-0.1.0 Rakefile