Sha256: 51a5f55ded83bbe6f6d8fedc0b81265f047d27c103923f8ced43e20fa9e1a717

Contents?: true

Size: 556 Bytes

Versions: 57

Compression:

Stored size: 556 Bytes

Contents

#!/usr/bin/env rake
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

57 entries across 57 versions & 1 rubygems

Version Path
onebox-1.8.69 Rakefile
onebox-1.8.68 Rakefile
onebox-1.8.67 Rakefile
onebox-1.8.66 Rakefile
onebox-1.8.65 Rakefile
onebox-1.8.64 Rakefile
onebox-1.8.63 Rakefile
onebox-1.8.62 Rakefile
onebox-1.8.61 Rakefile
onebox-1.8.60 Rakefile
onebox-1.8.59 Rakefile
onebox-1.8.58 Rakefile
onebox-1.8.57 Rakefile
onebox-1.8.55 Rakefile
onebox-1.8.54 Rakefile
onebox-1.8.53 Rakefile
onebox-1.8.52 Rakefile
onebox-1.8.51 Rakefile
onebox-1.8.50 Rakefile
onebox-1.8.49 Rakefile