Skip to content

Commit

Permalink
Split up main execution function into separate testable classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Casey O'Hara committed Apr 14, 2012
1 parent 268db11 commit da61991
Show file tree
Hide file tree
Showing 40 changed files with 8,621 additions and 96 deletions.
9 changes: 7 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ require 'fileutils'
require 'zip/zip'
require 'zip/zipfilesystem'
require 'coyote'
require 'coyote/rake'

task :build do
FileUtils.mkdir_p 'build'
Coyote.run "src/retina.coffee", "build/retina.js", :compress => true
Coyote.run "src/retina.coffee", "test/functional/public/retina.js", :compress => true
Coyote.run "src/retina.coffee", "test/functional/public/retina.js"
end

coyote :watch do |config|
config.input = "src/retina.coffee"
config.output = "test/functional/public/retina.js"
end

task :package => [:build] do
Expand Down
3 changes: 3 additions & 0 deletions node_modules/chai/.npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions node_modules/chai/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

338 changes: 338 additions & 0 deletions node_modules/chai/History.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit da61991

Please sign in to comment.