Sha256: 4c7a4afbd87da3e8cfc2d361d4013717b2496d053e8e7edf8f7be9775fefe89e

Contents?: true

Size: 415 Bytes

Versions: 38

Compression:

Stored size: 415 Bytes

Contents

# frozen_string_literal: true

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

require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop) do |t|
  t.options = ['--display-cop-names']
end

task default: [:spec]
task test: [:spec]

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
stream-chat-ruby-2.15.0 Rakefile
stream-chat-ruby-2.14.0 Rakefile
stream-chat-ruby-2.13.0 Rakefile
stream-chat-ruby-2.12.0 Rakefile
stream-chat-ruby-2.11.3 Rakefile
stream-chat-ruby-2.11.2 Rakefile
stream-chat-ruby-2.11.1 Rakefile
stream-chat-ruby-2.11.0 Rakefile
stream-chat-ruby-2.10.0 Rakefile
stream-chat-ruby-2.9.0 Rakefile
stream-chat-ruby-2.8.0 Rakefile
stream-chat-ruby-2.6.0 Rakefile
stream-chat-ruby-2.5.0 Rakefile
stream-chat-ruby-2.4.0 Rakefile
stream-chat-ruby-2.3.0 Rakefile
stream-chat-ruby-2.2.0 Rakefile
stream-chat-ruby-2.1.0 Rakefile
stream-chat-ruby-2.0.0 Rakefile