Sha256: 06a73784404b3271deda7d2648ce9b9d5f06949654723a8ee9d750eda618fa9f

Contents?: true

Size: 283 Bytes

Versions: 9

Compression:

Stored size: 283 Bytes

Contents

require 'bundler/gem_tasks'
# rake spec
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) { |t| t.verbose = false   }

# rake console
task :console do
  require 'pry'
  require 'stream-chat'
  ARGV.clear
  Pry.start
end

task :default => [:spec]
task :test => [:spec]

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
stream-chat-ruby-1.1.3 Rakefile
stream-chat-ruby-1.1.2 Rakefile
stream-chat-ruby-1.1.1 Rakefile
stream-chat-ruby-1.1.0 Rakefile
stream-chat-ruby-1.0.0 Rakefile
stream-chat-ruby-0.1.3 Rakefile
stream-chat-ruby-0.1.2 Rakefile
stream-chat-ruby-0.1.1 Rakefile
stream-chat-ruby-0.1.0 Rakefile