Sha256: e8d48f10a0bcea7763eb222c066e48bdd341488e8d5798b3791356a7038b9984

Contents?: true

Size: 587 Bytes

Versions: 77

Compression:

Stored size: 587 Bytes

Contents

#!/usr/bin/env rake
# frozen_string_literal: true

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

begin
  Bundler.setup :default, :development
  Bundler::GemHelper.install_tasks
rescue Bundler::BundlerError => error
  $stderr.puts error.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit error.status_code
end

RSpec::Core::RakeTask.new(:spec)

desc "Default: run tests"
task default: [ :spec ]

task :server do
  require 'onebox/web'
  app = Onebox::Web
  app.set :environment, :development
  app.set :bind, '127.0.0.1'
  app.set :port, 9000
  app.run!
end

Version data entries

77 entries across 77 versions & 1 rubygems

Version Path
onebox-2.2.19 Rakefile
onebox-2.2.18 Rakefile
onebox-2.2.17 Rakefile
onebox-2.2.16 Rakefile
onebox-2.2.15 Rakefile
onebox-2.2.14 Rakefile
onebox-2.2.13 Rakefile
onebox-2.2.12 Rakefile
onebox-2.2.11 Rakefile
onebox-2.2.10 Rakefile
onebox-2.2.9 Rakefile
onebox-2.2.8 Rakefile
onebox-2.2.6 Rakefile
onebox-2.2.5 Rakefile
onebox-2.2.4 Rakefile
onebox-2.2.2 Rakefile
onebox-2.2.1 Rakefile
onebox-2.2.0 Rakefile
onebox-2.1.9 Rakefile
onebox-2.1.8 Rakefile