Sha256: 85d28d0c2b43be8dd121e72b29577b415a48aa0535e4ff92b3363f59f15debd2

Contents?: true

Size: 340 Bytes

Versions: 8

Compression:

Stored size: 340 Bytes

Contents

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

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

task :default => :spec

desc 'Start development Rails app'
task :web do
  app_path = 'spec/dummy'
  port     = ENV['PORT'] || 3000

  puts "Starting application in http://localhost:#{port} ... \n"

  Dir.chdir(app_path)
  `rails s -p #{port}`
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
invisible_captcha-0.9.3 Rakefile
invisible_captcha-0.9.2 Rakefile
invisible_captcha-0.9.1 Rakefile
invisible_captcha-0.9.0 Rakefile
invisible_captcha-0.8.2 Rakefile
invisible_captcha-0.8.1 Rakefile
invisible_captcha-0.8.0 Rakefile
invisible_captcha-0.7.0 Rakefile