rubyhtmlapp 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/RubyHtmlApp.gemspec +1 -1
- data/lib/RubyHtmlApp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2516c1290c7aa1588250b79f0763ca529629ed80
|
4
|
+
data.tar.gz: d51d57e4664cb5685303a060b167520e37814e80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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($/)
|
data/lib/RubyHtmlApp/version.rb
CHANGED
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.
|
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: {}
|