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.2 Rakefile
onebox-1.8.1 Rakefile
onebox-1.8.0 Rakefile
onebox-1.7.9 Rakefile
onebox-1.7.8 Rakefile
onebox-1.7.7 Rakefile
onebox-1.7.6 Rakefile
onebox-1.7.5 Rakefile
onebox-1.7.4 Rakefile
onebox-1.7.3 Rakefile
onebox-1.7.2 Rakefile
onebox-1.7.1 Rakefile
onebox-1.7.0 Rakefile
onebox-1.6.9 Rakefile
onebox-1.6.8 Rakefile
onebox-1.6.7 Rakefile
onebox-1.6.6 Rakefile
onebox-1.6.5 Rakefile
onebox-1.6.4 Rakefile
onebox-1.6.3 Rakefile