Sha256: 07b1f640739ed68c9e5fdced59409fd28dcb6285e894339d765abd331015ab29

Contents?: true

Size: 448 Bytes

Versions: 4

Compression:

Stored size: 448 Bytes

Contents

desc "Run acceptance test in browser"
task :acceptance => :compile do
  `open test/acceptance.html`
end

desc "Run spec tests in browser"
task :specs do
  `open test/specs.html`
end

desc "Show example"
task :example => :merge do
  `open example.html`
end

desc "Show all browser examples and tests"
task :show => [:specs, :acceptance, :example]

desc "First time run to demonstrate that pages are working"
task :first_time => ['jquery:add', :show]

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jqueryplugingen-0.2.3 lib/jquery_plugin_gen/support/test.rake
jqueryplugingen-0.2.0 lib/jquery_plugin_gen/support/test.rake
jqueryplugingen-0.2.1 lib/jquery_plugin_gen/support/test.rake
jqueryplugingen-0.2.2 lib/jquery_plugin_gen/support/test.rake