Sha256: 60963a9240582c0da6d7d8aeda35c6a4b0d06e5e9ffb4183771501f323d4769a

Contents?: true

Size: 478 Bytes

Versions: 26

Compression:

Stored size: 478 Bytes

Contents

require "bundler/gem_tasks"
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
task :default => :spec

task :environment do
  require 'dotenv'
  Dotenv.load

  $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
  require 'tessa'
end

desc "Launch a pry shell with Tessa library loaded"
task :pry => :environment do
  require 'pry'
  Pry.start
end

namespace :build do
  task :js do
    system("yarn build")
  end
end

Rake::Task['build'].enhance ['build:js']

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
tessa-6.1.3 Rakefile
tessa-6.1.2 Rakefile
tessa-6.1.1 Rakefile
tessa-6.1.0 Rakefile
tessa-6.0.3 Rakefile
tessa-6.0.2 Rakefile
tessa-6.0.1 Rakefile
tessa-6.0.0 Rakefile
tessa-6.0.0.rc5 Rakefile
tessa-6.0.0.rc4 Rakefile
tessa-6.0.0.rc3 Rakefile
tessa-6.0.0.rc2 Rakefile
tessa-6.0.0.rc1 Rakefile
tessa-1.2.3 Rakefile
tessa-1.2.2 Rakefile
tessa-2.0 Rakefile
tessa-1.2.1 Rakefile
tessa-1.2.0 Rakefile
tessa-1.1.1 Rakefile
tessa-1.1.0 Rakefile