rubyhtmlapp 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d0968fb97c66308e369dd5937c4c164a9e257ca
4
- data.tar.gz: e3cba029038a9e9f78a34331efcc73436db18420
3
+ metadata.gz: 2516c1290c7aa1588250b79f0763ca529629ed80
4
+ data.tar.gz: d51d57e4664cb5685303a060b167520e37814e80
5
5
  SHA512:
6
- metadata.gz: 99f9cdc9c019d67c993cf65802ab9d75cc38e35e470e3764f10f2d177c004770412476625e4e13c230d4ecf2995c00efb5792b0dffec7bc8589e5f2ffc41abe6
7
- data.tar.gz: e0df598eba603e52933bb8714d79b92ece2e12f5faa4dea44d1edfc4f00b692167f0b396298de25a13ad952cdc7f467027e668ee7420a8e07f5d2777fa942fcb
6
+ metadata.gz: 66601406e94e0e94f06ab564763c49c9e844fdb79682a9a6abf680a6613b79cfb31cdfdbb94e014beee8d7ac04a17a332fa66018841fc641ad420aa8b0cf9d22
7
+ data.tar.gz: 576b376181a9380be5874eaba40795abe11b1069906d4ca14f330d0e077e3f3c745784bb9fe638b777fc12cc54cc4e05510fa27346b21f3887cd09d0dcdfeb33
data/README.md CHANGED
@@ -19,9 +19,11 @@ Or install it yourself as:
19
19
  ## Usage
20
20
 
21
21
  To create a blank project run:
22
+
22
23
  rubyhtmlapp create [project_name]
23
24
 
24
25
  This will intitialize a git repository and setup a simple hello world example. To 'compile' the project run:
26
+
25
27
  bundle exec ruby bin/[project_name] compile
26
28
 
27
29
  This will inline all js files located in the lib/[project_name]/javascripts directory, all css files located in lib/[project_name]/stylesheets into the template application.html (using layout.html). The final result will be located in the dist/ directory.
data/RubyHtmlApp.gemspec CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
  spec.description = %q{Creates an inlined html app using sprockets and tilt}
12
12
  spec.summary = %q{A simple generator used to setup a project for sprockets and tilt
13
13
  which will compile all source files into a single html file}
14
- spec.homepage = ""
14
+ spec.homepage = "https://github.com/cjbissonnette/rubyhtmlapp"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files`.split($/)
@@ -1,3 +1,3 @@
1
1
  module RubyHtmlApp
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyhtmlapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Curtis Bissonnette
@@ -135,7 +135,7 @@ files:
135
135
  - lib/RubyHtmlApp/templates/run
136
136
  - lib/RubyHtmlApp/templates/stylesheets/application.css.scss
137
137
  - lib/RubyHtmlApp/version.rb
138
- homepage: ''
138
+ homepage: https://github.com/cjbissonnette/rubyhtmlapp
139
139
  licenses:
140
140
  - MIT
141
141
  metadata: {}