Sha256: 7c34e080adfae84bafde723665391f166d4716764a4d1054daa2d718b42bfb82

Contents?: true

Size: 711 Bytes

Versions: 81

Compression:

Stored size: 711 Bytes

Contents

#!/usr/bin/env rake
require "rspec/core/rake_task"
require "yard"
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 "Generate all of the docs"
YARD::Rake::YardocTask.new do |config|
  config.files = Dir["lib/**/*.rb"]
end

desc "Default: run tests and generate docs"
task :default => [ :spec, :yard ]

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

81 entries across 81 versions & 1 rubygems

Version Path
onebox-1.8.22 Rakefile
onebox-1.8.21 Rakefile
onebox-1.8.20 Rakefile
onebox-1.8.19 Rakefile
onebox-1.8.18 Rakefile
onebox-1.8.17 Rakefile
onebox-1.8.16 Rakefile
onebox-1.8.15 Rakefile
onebox-1.8.14 Rakefile
onebox-1.8.13 Rakefile
onebox-1.8.12 Rakefile
onebox-1.8.11 Rakefile
onebox-1.8.10 Rakefile
onebox-1.8.9 Rakefile
onebox-1.8.8 Rakefile
onebox-1.8.7 Rakefile
onebox-1.8.6 Rakefile
onebox-1.8.5 Rakefile
onebox-1.8.4 Rakefile
onebox-1.8.3 Rakefile