Sha256: 37c880c1ab3e9040df1e4462c28542b1badfef06d9102222ebef3659cbb2ea80

Contents?: true

Size: 566 Bytes

Versions: 10

Compression:

Stored size: 566 Bytes

Contents

lib_path = File.join(File.dirname(__FILE__), 'lib')
$:.unshift(lib_path) unless $:.include?(lib_path)

require 'rake/testtask'
task :test do |t|
  $: << File.expand_path('test/')
  Dir.glob('./test/**/*_test.rb').each { |file| require file }
end

desc 'Start a dummy (test) Rails app server'
task :dummy_rails do
  require 'rack'
  require 'term/ansicolor'
  port = ENV['PORT'] || 9292
  puts %Q(Starting on #{Term::ANSIColor.cyan "http://localhost:#{port}"})
  Rack::Server.start(
    config: 'test/dummy_rails/config.ru',
    Port: port)
end

task default: :test

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
envvy-1.0.10 Rakefile
envvy-1.0.9 Rakefile
envvy-1.0.8 Rakefile
envvy-1.0.7 Rakefile
envvy-1.0.6 Rakefile
envvy-1.0.5 Rakefile
envvy-1.0.4 Rakefile
envvy-1.0.3 Rakefile
envvy-1.0.2 Rakefile
envvy-1.0.1 Rakefile