ichiban 1.0.0 → 1.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/ichiban +9 -0
- data/empty_project/Capfile +19 -0
- data/empty_project/assets/css/screen.scss +1 -0
- data/empty_project/assets/js/interaction.js +1 -0
- data/empty_project/assets/misc/readme.txt +6 -0
- data/empty_project/compiled/css/screen.css +1 -0
- data/empty_project/compiled/index.html +12 -0
- data/empty_project/compiled/js/interaction.js +1 -0
- data/empty_project/config.rb +3 -0
- data/empty_project/data/readme.txt +2 -0
- data/empty_project/helpers/readme.txt +10 -0
- data/empty_project/html/index.html +3 -0
- data/empty_project/layouts/default.html +12 -0
- data/empty_project/models/readme.txt +3 -0
- data/empty_project/scripts/readme.txt +6 -0
- data/empty_project/webserver/htaccess.txt +24 -0
- data/lib/ichiban/asset_compiler.rb +21 -0
- data/lib/ichiban/bundle.rb +7 -0
- data/lib/ichiban/command.rb +13 -3
- data/lib/ichiban/config.rb +2 -2
- data/lib/ichiban/deleter.rb +4 -7
- data/lib/ichiban/dependencies.rb +28 -7
- data/lib/ichiban/file.rb +122 -17
- data/lib/ichiban/helpers.rb +16 -47
- data/lib/ichiban/html_compiler.rb +62 -12
- data/lib/ichiban/loader.rb +53 -0
- data/lib/ichiban/logger.rb +37 -3
- data/lib/ichiban/markdown.rb +11 -2
- data/lib/ichiban/nav_helper.rb +175 -0
- data/lib/ichiban/project_generator.rb +16 -0
- data/lib/ichiban/scripts.rb +91 -0
- data/lib/ichiban/watcher.rb +36 -19
- data/lib/ichiban.rb +16 -4
- metadata +54 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ichiban
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -75,6 +75,22 @@ dependencies:
|
|
75
75
|
- - ! '>='
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: bundler
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
type: :runtime
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
78
94
|
- !ruby/object:Gem::Dependency
|
79
95
|
name: mocha
|
80
96
|
requirement: !ruby/object:Gem::Requirement
|
@@ -125,10 +141,13 @@ dependencies:
|
|
125
141
|
version: '0'
|
126
142
|
description: Static website compiler with advanced feature, including watcher script.
|
127
143
|
email: jarrett@madebyhq.com
|
128
|
-
executables:
|
144
|
+
executables:
|
145
|
+
- ichiban
|
129
146
|
extensions: []
|
130
147
|
extra_rdoc_files: []
|
131
148
|
files:
|
149
|
+
- lib/ichiban/asset_compiler.rb
|
150
|
+
- lib/ichiban/bundle.rb
|
132
151
|
- lib/ichiban/command.rb
|
133
152
|
- lib/ichiban/config.rb
|
134
153
|
- lib/ichiban/deleter.rb
|
@@ -136,13 +155,35 @@ files:
|
|
136
155
|
- lib/ichiban/file.rb
|
137
156
|
- lib/ichiban/helpers.rb
|
138
157
|
- lib/ichiban/html_compiler.rb
|
158
|
+
- lib/ichiban/loader.rb
|
139
159
|
- lib/ichiban/logger.rb
|
140
160
|
- lib/ichiban/markdown.rb
|
161
|
+
- lib/ichiban/nav_helper.rb
|
162
|
+
- lib/ichiban/project_generator.rb
|
163
|
+
- lib/ichiban/scripts.rb
|
141
164
|
- lib/ichiban/watcher.rb
|
142
165
|
- lib/ichiban.rb
|
166
|
+
- empty_project/assets/css/screen.scss
|
167
|
+
- empty_project/assets/js/interaction.js
|
168
|
+
- empty_project/assets/misc/readme.txt
|
169
|
+
- empty_project/Capfile
|
170
|
+
- empty_project/compiled/css/screen.css
|
171
|
+
- empty_project/compiled/index.html
|
172
|
+
- empty_project/compiled/js/interaction.js
|
173
|
+
- empty_project/config.rb
|
174
|
+
- empty_project/data/readme.txt
|
175
|
+
- empty_project/helpers/readme.txt
|
176
|
+
- empty_project/html/index.html
|
177
|
+
- empty_project/layouts/default.html
|
178
|
+
- empty_project/models/readme.txt
|
179
|
+
- empty_project/scripts/readme.txt
|
180
|
+
- empty_project/webserver/htaccess.txt
|
181
|
+
- bin/ichiban
|
143
182
|
homepage: https://github.com/jarrett/ichiban
|
144
183
|
licenses: []
|
145
|
-
post_install_message: ! '
|
184
|
+
post_install_message: ! '
|
185
|
+
|
186
|
+
Ichiban was installed successfully.
|
146
187
|
|
147
188
|
Type `ichiban` for usage hints.
|
148
189
|
|
@@ -158,6 +199,15 @@ post_install_message: ! 'Ichiban was installed successfully.
|
|
158
199
|
rdiscount
|
159
200
|
|
160
201
|
|
202
|
+
Ichiban uses Guard (http://github.com/guard/guard).
|
203
|
+
|
204
|
+
When you run `ichiban watch`, Guard may prompt
|
205
|
+
|
206
|
+
you to install an event listener specific to your
|
207
|
+
|
208
|
+
operating system. Follow its advice.
|
209
|
+
|
210
|
+
|
161
211
|
For more information:
|
162
212
|
|
163
213
|
https://github.com/jarrett/ichiban'
|
@@ -178,7 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
228
|
version: '0'
|
179
229
|
requirements: []
|
180
230
|
rubyforge_project:
|
181
|
-
rubygems_version: 1.8.
|
231
|
+
rubygems_version: 1.8.25
|
182
232
|
signing_key:
|
183
233
|
specification_version: 3
|
184
234
|
summary: Ichiban
|