Skip to content

Commit

Permalink
create Rakefile, use rake task to build extension zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
camsong committed Dec 18, 2013
1 parent 3807ab5 commit 674262e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
.DS_Store
*.zip
11 changes: 11 additions & 0 deletions Rakefile
@@ -0,0 +1,11 @@
namespace :chrome do
desc 'build chrome zip file'
task :zip do
puts 'building zip for chrome...'
sh %{ zip -r chrome-github-mate.zip _locales/ style.css script.js manifest.json icon.png background.js background.html icon.png }
puts 'build done.'
end
end

task default: 'chrome:zip'

0 comments on commit 674262e

Please sign in to comment.