Skip to content

Commit

Permalink
トゥワンがトゥー
Browse files Browse the repository at this point in the history
  • Loading branch information
hrysd committed Oct 6, 2012
0 parents commit bda314b
Show file tree
Hide file tree
Showing 15 changed files with 18,308 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
*.pem
*.zip
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source 'http://rubygems.org'

gem 'crxmake'
12 changes: 12 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,12 @@
GEM
remote: http://rubygems.org/
specs:
crxmake (2.0.7)
zip (~> 2.0.2)
zip (2.0.2)

PLATFORMS
ruby

DEPENDENCIES
crxmake
8 changes: 8 additions & 0 deletions README.md
@@ -0,0 +1,8 @@
# MISAWA::MD

Githubでのコードレビューを濃厚にする拡張です。

[詳細](http)

## Install

19 changes: 19 additions & 0 deletions Rakefile
@@ -0,0 +1,19 @@
require 'crxmake'
require 'json'

NAME = 'misawa_md'

namespace :pkg do
desc 'create zip for Google Extension Gallery'
task :zip do
package = "pkg/#{NAME}.zip"
`rm #{package}` if File.exists?(package)
CrxMake.zip(
:ex_dir => 'src',
:pkey => "#{NAME}.pem",
:zip_output => package,
:verbose => true,
:ignoredir => /^\.git$/
)
end
end

0 comments on commit bda314b

Please sign in to comment.