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-3.7.0 Rakefile
stream-chat-ruby-3.5.1 Rakefile
stream-chat-ruby-3.5.0 Rakefile
stream-chat-ruby-3.4.0 Rakefile
stream-chat-ruby-3.3.0 Rakefile
stream-chat-ruby-3.2.0 Rakefile
stream-chat-ruby-3.1.0 Rakefile
stream-chat-ruby-3.0.0 Rakefile
stream-chat-ruby-2.23.0 Rakefile
stream-chat-ruby-2.22.2 Rakefile
stream-chat-ruby-2.22.1 Rakefile
stream-chat-ruby-2.22.0 Rakefile
stream-chat-ruby-2.21.0 Rakefile
stream-chat-ruby-2.20.0 Rakefile
stream-chat-ruby-2.19.0 Rakefile
stream-chat-ruby-2.18.0 Rakefile
stream-chat-ruby-2.17.2 Rakefile
stream-chat-ruby-2.17.1 Rakefile
stream-chat-ruby-2.17.0 Rakefile
stream-chat-ruby-2.16.0 Rakefile