chrome_packager 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/bin/chrome-packager CHANGED
@@ -37,6 +37,7 @@ def create_new_app(name)
37
37
  generator.copy_file 'Gemfile', 'Gemfile'
38
38
  generator.copy_file 'config.ru', 'config.ru'
39
39
  generator.copy_file 'background.js', 'background.js'
40
+ generator.copy_file 'index.haml', 'app/views/index.haml'
40
41
  generator.instance_variable_set '@app_name', name
41
42
  generator.template 'manifest.json', 'manifest.json'
42
43
  generator.inside name do
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'chrome_packager'
3
- s.version = '0.0.5'
3
+ s.version = '0.0.6'
4
4
  s.date = '2012-09-23'
5
5
  s.summary = "Create packaged chrome apps"
6
6
  s.description = "A simple tool to create packaged chrome apps"
@@ -1,3 +1,3 @@
1
1
  module ChromePackager
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -0,0 +1,8 @@
1
+ !!! 5
2
+ %html
3
+ %head
4
+ %title Chrome packaged app
5
+ %script{ src: '/assets/application.js' }
6
+ %link{ rel: 'stylesheet', href: '/assets/application.css', type: 'text/css', media: 'screen' }
7
+ %body
8
+ %h1 Hello world
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chrome_packager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -141,6 +141,7 @@ files:
141
141
  - lib/templates/Gemfile
142
142
  - lib/templates/background.js
143
143
  - lib/templates/config.ru
144
+ - lib/templates/index.haml
144
145
  - lib/templates/manifest.json
145
146
  homepage: https://github.com/supherman/chrome_packager
146
147
  licenses: []