smartgen 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +0 -8
- data/Gemfile.lock +25 -31
- data/lib/smartgen/object_hash.rb +2 -2
- data/lib/smartgen/version.rb +1 -1
- metadata +138 -194
- data/spec/fixtures/expectations/common/another_index.html +0 -13
- data/spec/fixtures/expectations/common/index.html +0 -8
- data/spec/fixtures/expectations/common/other_index.html +0 -13
- data/spec/fixtures/expectations/erb/index.html +0 -15
- data/spec/fixtures/expectations/erb/with_layout/index.html +0 -19
- data/spec/fixtures/expectations/indexer/index_with_indexer.html +0 -16
- data/spec/fixtures/expectations/indexer/index_with_indexer_and_numbered_index.html +0 -16
- data/spec/fixtures/expectations/with_layout/index.html +0 -12
- data/spec/fixtures/expectations/with_layout/index_with_metadata.html +0 -43
- data/spec/fixtures/expectations/with_layout/index_with_specific_metadata.html +0 -44
- data/spec/fixtures/src/assets/images/image.gif +0 -0
- data/spec/fixtures/src/assets/javascripts/somelib.js +0 -2
- data/spec/fixtures/src/assets/stylesheets/style.css +0 -2
- data/spec/fixtures/src/common/another_index.md +0 -12
- data/spec/fixtures/src/common/index.textile +0 -10
- data/spec/fixtures/src/common/other_index.markdown +0 -12
- data/spec/fixtures/src/common/somefile +0 -10
- data/spec/fixtures/src/erb/index.html.erb +0 -7
- data/spec/fixtures/src/erb/with_layout/index.html.erb +0 -7
- data/spec/fixtures/src/erb/with_layout/layout.html.erb +0 -5
- data/spec/fixtures/src/indexer/index_with_indexer.textile +0 -26
- data/spec/fixtures/src/indexer/index_with_indexer_and_numbered_index.textile +0 -26
- data/spec/fixtures/src/layout.html.erb +0 -5
- data/spec/fixtures/src/layout_with_metadata.html.erb +0 -22
- data/spec/fixtures/src/layout_with_specific_metadata.html.erb +0 -23
- data/spec/fixtures/src/metadata.yml +0 -43
- data/spec/fixtures/src/with_layout/index.textile +0 -10
- data/spec/fixtures/src/with_layout/index_with_specific_metadata.textile +0 -10
- data/spec/lib/smartgen/configuration_spec.rb +0 -5
- data/spec/lib/smartgen/engines/base_spec.rb +0 -92
- data/spec/lib/smartgen/engines/erb_spec.rb +0 -37
- data/spec/lib/smartgen/engines/markdown_spec.rb +0 -23
- data/spec/lib/smartgen/engines/textile_spec.rb +0 -19
- data/spec/lib/smartgen/generator_spec.rb +0 -272
- data/spec/lib/smartgen/indexer_spec.rb +0 -122
- data/spec/lib/smartgen/markup_file_spec.rb +0 -168
- data/spec/lib/smartgen/object_hash_spec.rb +0 -91
- data/spec/lib/smartgen/renderers/erb_spec.rb +0 -38
- data/spec/lib/smartgen/resource_spec.rb +0 -73
- data/spec/lib/smartgen/watcher_spec.rb +0 -71
- data/spec/lib/smartgen_spec.rb +0 -18
- data/spec/sandbox/.gitkeep +0 -0
- data/spec/spec_helper.rb +0 -37
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1fb42c97c803b5847d9ae1b2d180e31ea60f5a77
|
4
|
+
data.tar.gz: ab8e500866bf9e7c1a0db836da69abb83e772218
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b5842f81e51d9ecee227fdee67d565a9a08449fb5e7ef38b8040262c052e7dabe2126aeb5ae1cbe5de333a77b5daded4cf0ca709ab3d8d8b1a604e0a3cab3e44
|
7
|
+
data.tar.gz: 20b0930c53a633e76e4de9068d6448a555f5febb96e50e7d2b66c84b91003b6229801c7e672078aec16f4568b2cff666b14fa4efe66e69a98f5148bdbf76bf26
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
smartgen (0.6.0
|
4
|
+
smartgen (0.6.0)
|
5
5
|
RedCloth (>= 4.2.7)
|
6
6
|
activesupport (>= 3.0.0)
|
7
7
|
bluecloth (>= 2.0.9)
|
@@ -14,20 +14,28 @@ GEM
|
|
14
14
|
remote: http://rubygems.org/
|
15
15
|
specs:
|
16
16
|
RedCloth (4.2.9)
|
17
|
-
activesupport (
|
18
|
-
i18n (~> 0.6)
|
19
|
-
|
20
|
-
|
17
|
+
activesupport (4.0.4)
|
18
|
+
i18n (~> 0.6, >= 0.6.9)
|
19
|
+
minitest (~> 4.2)
|
20
|
+
multi_json (~> 1.3)
|
21
|
+
thread_safe (~> 0.1)
|
22
|
+
tzinfo (~> 0.3.37)
|
21
23
|
bluecloth (2.2.0)
|
22
|
-
columnize (0.3.
|
24
|
+
columnize (0.3.6)
|
25
|
+
debugger (1.6.6)
|
26
|
+
columnize (>= 0.3.1)
|
27
|
+
debugger-linecache (~> 1.2.0)
|
28
|
+
debugger-ruby_core_source (~> 1.3.2)
|
29
|
+
debugger-linecache (1.2.0)
|
30
|
+
debugger-ruby_core_source (1.3.2)
|
23
31
|
diff-lcs (1.1.3)
|
24
|
-
directory_watcher (1.
|
25
|
-
i18n (0.6.
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
32
|
+
directory_watcher (1.5.1)
|
33
|
+
i18n (0.6.9)
|
34
|
+
mini_portile (0.5.3)
|
35
|
+
minitest (4.7.5)
|
36
|
+
multi_json (1.9.2)
|
37
|
+
nokogiri (1.6.1)
|
38
|
+
mini_portile (~> 0.5.0)
|
31
39
|
rake (0.8.7)
|
32
40
|
rspec (2.8.0)
|
33
41
|
rspec-core (~> 2.8.0)
|
@@ -37,29 +45,15 @@ GEM
|
|
37
45
|
rspec-expectations (2.8.0)
|
38
46
|
diff-lcs (~> 1.1.2)
|
39
47
|
rspec-mocks (2.8.0)
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
ruby-debug-base (0.10.4)
|
44
|
-
linecache (>= 0.3)
|
45
|
-
ruby-debug-base19 (0.11.24)
|
46
|
-
columnize (>= 0.3.1)
|
47
|
-
linecache19 (>= 0.5.11)
|
48
|
-
ruby_core_source (>= 0.1.4)
|
49
|
-
ruby-debug19 (0.11.6)
|
50
|
-
columnize (>= 0.3.1)
|
51
|
-
linecache19 (>= 0.5.11)
|
52
|
-
ruby-debug-base19 (>= 0.11.19)
|
53
|
-
ruby_core_source (0.1.4)
|
54
|
-
archive-tar-minitar (>= 0.5.2)
|
55
|
-
thor (0.14.6)
|
48
|
+
thor (0.19.1)
|
49
|
+
thread_safe (0.3.3)
|
50
|
+
tzinfo (0.3.39)
|
56
51
|
|
57
52
|
PLATFORMS
|
58
53
|
ruby
|
59
54
|
|
60
55
|
DEPENDENCIES
|
56
|
+
debugger
|
61
57
|
rake (= 0.8.7)
|
62
58
|
rspec (>= 2.3.0)
|
63
|
-
ruby-debug
|
64
|
-
ruby-debug19
|
65
59
|
smartgen!
|
data/lib/smartgen/object_hash.rb
CHANGED
@@ -12,7 +12,7 @@ module Smartgen
|
|
12
12
|
Smartgen::ObjectHash.new(self)
|
13
13
|
end
|
14
14
|
|
15
|
-
def respond_to?(method)
|
15
|
+
def respond_to?(method, include_all = false)
|
16
16
|
has_key?(method) || (setter?(method) && has_key?(method.to_s.chop)) || super
|
17
17
|
end
|
18
18
|
|
@@ -36,7 +36,7 @@ module Smartgen
|
|
36
36
|
method.to_s.end_with?('=')
|
37
37
|
end
|
38
38
|
|
39
|
-
def convert_value(value)
|
39
|
+
def convert_value(value, options = {})
|
40
40
|
case value
|
41
41
|
when Hash
|
42
42
|
value.with_object_hash
|
data/lib/smartgen/version.rb
CHANGED
metadata
CHANGED
@@ -1,249 +1,193 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: smartgen
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
version: 0.6.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.6.1
|
6
5
|
platform: ruby
|
7
|
-
authors:
|
6
|
+
authors:
|
8
7
|
- Vicente Mundim
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2014-05-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
16
14
|
name: thor
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
23
19
|
version: 0.14.6
|
24
20
|
type: :runtime
|
25
|
-
version_requirements: *id001
|
26
|
-
- !ruby/object:Gem::Dependency
|
27
|
-
name: i18n
|
28
21
|
prerelease: false
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.14.6
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: i18n
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
34
33
|
version: 0.5.0
|
35
34
|
type: :runtime
|
36
|
-
version_requirements: *id002
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: activesupport
|
39
35
|
prerelease: false
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.5.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: activesupport
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
45
47
|
version: 3.0.0
|
46
48
|
type: :runtime
|
47
|
-
version_requirements: *id003
|
48
|
-
- !ruby/object:Gem::Dependency
|
49
|
-
name: RedCloth
|
50
49
|
prerelease: false
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.0.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: RedCloth
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
56
61
|
version: 4.2.7
|
57
62
|
type: :runtime
|
58
|
-
version_requirements: *id004
|
59
|
-
- !ruby/object:Gem::Dependency
|
60
|
-
name: bluecloth
|
61
63
|
prerelease: false
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 4.2.7
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bluecloth
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
67
75
|
version: 2.0.9
|
68
76
|
type: :runtime
|
69
|
-
version_requirements: *id005
|
70
|
-
- !ruby/object:Gem::Dependency
|
71
|
-
name: nokogiri
|
72
77
|
prerelease: false
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.0.9
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: nokogiri
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
78
89
|
version: 1.4.4
|
79
90
|
type: :runtime
|
80
|
-
version_requirements: *id006
|
81
|
-
- !ruby/object:Gem::Dependency
|
82
|
-
name: directory_watcher
|
83
91
|
prerelease: false
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 1.4.4
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: directory_watcher
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '>='
|
102
|
+
- !ruby/object:Gem::Version
|
89
103
|
version: 1.3.2
|
90
104
|
type: :runtime
|
91
|
-
|
92
|
-
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.3.2
|
111
|
+
- !ruby/object:Gem::Dependency
|
93
112
|
name: rspec
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 2.3.0
|
118
|
+
type: :development
|
94
119
|
prerelease: false
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
- !ruby/object:Gem::Version
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '>='
|
123
|
+
- !ruby/object:Gem::Version
|
100
124
|
version: 2.3.0
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: debugger
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
101
132
|
type: :development
|
102
|
-
|
103
|
-
|
104
|
-
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
description: Smartgen generates static HTML files from markup files, using textile
|
140
|
+
or markdown, and ERB to create layout templates
|
141
|
+
email:
|
105
142
|
- vicente.mundim@gmail.com
|
106
143
|
executables: []
|
107
|
-
|
108
144
|
extensions: []
|
109
|
-
|
110
145
|
extra_rdoc_files: []
|
111
|
-
|
112
|
-
|
146
|
+
files:
|
147
|
+
- lib/smartgen.rb
|
148
|
+
- lib/smartgen/rake_task.rb
|
149
|
+
- lib/smartgen/watcher_rake_task.rb
|
150
|
+
- lib/smartgen/object_hash.rb
|
151
|
+
- lib/smartgen/renderers/erb.rb
|
113
152
|
- lib/smartgen/configuration.rb
|
114
|
-
- lib/smartgen/
|
115
|
-
- lib/smartgen/engines/erb.rb
|
153
|
+
- lib/smartgen/markup_file.rb
|
116
154
|
- lib/smartgen/engines/markdown.rb
|
155
|
+
- lib/smartgen/engines/erb.rb
|
156
|
+
- lib/smartgen/engines/base.rb
|
117
157
|
- lib/smartgen/engines/textile.rb
|
118
|
-
- lib/smartgen/engines.rb
|
119
158
|
- lib/smartgen/generator.rb
|
120
|
-
- lib/smartgen/indexer.rb
|
121
|
-
- lib/smartgen/markup_file.rb
|
122
|
-
- lib/smartgen/object_hash.rb
|
123
|
-
- lib/smartgen/rake_task.rb
|
124
|
-
- lib/smartgen/renderers/erb.rb
|
125
|
-
- lib/smartgen/renderers.rb
|
126
159
|
- lib/smartgen/resource.rb
|
127
160
|
- lib/smartgen/version.rb
|
161
|
+
- lib/smartgen/engines.rb
|
162
|
+
- lib/smartgen/renderers.rb
|
163
|
+
- lib/smartgen/indexer.rb
|
128
164
|
- lib/smartgen/watcher.rb
|
129
|
-
- lib/smartgen/watcher_rake_task.rb
|
130
|
-
- lib/smartgen.rb
|
131
165
|
- Gemfile
|
132
166
|
- Gemfile.lock
|
133
167
|
- Rakefile
|
134
168
|
- README.md
|
135
169
|
- ChangeLog.md
|
136
|
-
|
137
|
-
- spec/fixtures/expectations/common/index.html
|
138
|
-
- spec/fixtures/expectations/common/other_index.html
|
139
|
-
- spec/fixtures/expectations/erb/index.html
|
140
|
-
- spec/fixtures/expectations/erb/with_layout/index.html
|
141
|
-
- spec/fixtures/expectations/indexer/index_with_indexer.html
|
142
|
-
- spec/fixtures/expectations/indexer/index_with_indexer_and_numbered_index.html
|
143
|
-
- spec/fixtures/expectations/with_layout/index.html
|
144
|
-
- spec/fixtures/expectations/with_layout/index_with_metadata.html
|
145
|
-
- spec/fixtures/expectations/with_layout/index_with_specific_metadata.html
|
146
|
-
- spec/fixtures/src/assets/images/image.gif
|
147
|
-
- spec/fixtures/src/assets/javascripts/somelib.js
|
148
|
-
- spec/fixtures/src/assets/stylesheets/style.css
|
149
|
-
- spec/fixtures/src/common/another_index.md
|
150
|
-
- spec/fixtures/src/common/index.textile
|
151
|
-
- spec/fixtures/src/common/other_index.markdown
|
152
|
-
- spec/fixtures/src/common/somefile
|
153
|
-
- spec/fixtures/src/erb/index.html.erb
|
154
|
-
- spec/fixtures/src/erb/with_layout/index.html.erb
|
155
|
-
- spec/fixtures/src/erb/with_layout/layout.html.erb
|
156
|
-
- spec/fixtures/src/indexer/index_with_indexer.textile
|
157
|
-
- spec/fixtures/src/indexer/index_with_indexer_and_numbered_index.textile
|
158
|
-
- spec/fixtures/src/layout.html.erb
|
159
|
-
- spec/fixtures/src/layout_with_metadata.html.erb
|
160
|
-
- spec/fixtures/src/layout_with_specific_metadata.html.erb
|
161
|
-
- spec/fixtures/src/metadata.yml
|
162
|
-
- spec/fixtures/src/with_layout/index.textile
|
163
|
-
- spec/fixtures/src/with_layout/index_with_specific_metadata.textile
|
164
|
-
- spec/lib/smartgen/configuration_spec.rb
|
165
|
-
- spec/lib/smartgen/engines/base_spec.rb
|
166
|
-
- spec/lib/smartgen/engines/erb_spec.rb
|
167
|
-
- spec/lib/smartgen/engines/markdown_spec.rb
|
168
|
-
- spec/lib/smartgen/engines/textile_spec.rb
|
169
|
-
- spec/lib/smartgen/generator_spec.rb
|
170
|
-
- spec/lib/smartgen/indexer_spec.rb
|
171
|
-
- spec/lib/smartgen/markup_file_spec.rb
|
172
|
-
- spec/lib/smartgen/object_hash_spec.rb
|
173
|
-
- spec/lib/smartgen/renderers/erb_spec.rb
|
174
|
-
- spec/lib/smartgen/resource_spec.rb
|
175
|
-
- spec/lib/smartgen/watcher_spec.rb
|
176
|
-
- spec/lib/smartgen_spec.rb
|
177
|
-
- spec/sandbox/.gitkeep
|
178
|
-
- spec/spec_helper.rb
|
179
|
-
homepage: ""
|
170
|
+
homepage: ''
|
180
171
|
licenses: []
|
181
|
-
|
172
|
+
metadata: {}
|
182
173
|
post_install_message:
|
183
174
|
rdoc_options: []
|
184
|
-
|
185
|
-
require_paths:
|
175
|
+
require_paths:
|
186
176
|
- lib
|
187
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
- !ruby/object:Gem::Version
|
198
|
-
version: "0"
|
177
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
178
|
+
requirements:
|
179
|
+
- - '>='
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: '0'
|
182
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
183
|
+
requirements:
|
184
|
+
- - '>='
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: '0'
|
199
187
|
requirements: []
|
200
|
-
|
201
188
|
rubyforge_project: smartgen
|
202
|
-
rubygems_version: 1.
|
189
|
+
rubygems_version: 2.1.11
|
203
190
|
signing_key:
|
204
|
-
specification_version:
|
191
|
+
specification_version: 4
|
205
192
|
summary: A static HTML markup generator
|
206
|
-
test_files:
|
207
|
-
- spec/fixtures/expectations/common/another_index.html
|
208
|
-
- spec/fixtures/expectations/common/index.html
|
209
|
-
- spec/fixtures/expectations/common/other_index.html
|
210
|
-
- spec/fixtures/expectations/erb/index.html
|
211
|
-
- spec/fixtures/expectations/erb/with_layout/index.html
|
212
|
-
- spec/fixtures/expectations/indexer/index_with_indexer.html
|
213
|
-
- spec/fixtures/expectations/indexer/index_with_indexer_and_numbered_index.html
|
214
|
-
- spec/fixtures/expectations/with_layout/index.html
|
215
|
-
- spec/fixtures/expectations/with_layout/index_with_metadata.html
|
216
|
-
- spec/fixtures/expectations/with_layout/index_with_specific_metadata.html
|
217
|
-
- spec/fixtures/src/assets/images/image.gif
|
218
|
-
- spec/fixtures/src/assets/javascripts/somelib.js
|
219
|
-
- spec/fixtures/src/assets/stylesheets/style.css
|
220
|
-
- spec/fixtures/src/common/another_index.md
|
221
|
-
- spec/fixtures/src/common/index.textile
|
222
|
-
- spec/fixtures/src/common/other_index.markdown
|
223
|
-
- spec/fixtures/src/common/somefile
|
224
|
-
- spec/fixtures/src/erb/index.html.erb
|
225
|
-
- spec/fixtures/src/erb/with_layout/index.html.erb
|
226
|
-
- spec/fixtures/src/erb/with_layout/layout.html.erb
|
227
|
-
- spec/fixtures/src/indexer/index_with_indexer.textile
|
228
|
-
- spec/fixtures/src/indexer/index_with_indexer_and_numbered_index.textile
|
229
|
-
- spec/fixtures/src/layout.html.erb
|
230
|
-
- spec/fixtures/src/layout_with_metadata.html.erb
|
231
|
-
- spec/fixtures/src/layout_with_specific_metadata.html.erb
|
232
|
-
- spec/fixtures/src/metadata.yml
|
233
|
-
- spec/fixtures/src/with_layout/index.textile
|
234
|
-
- spec/fixtures/src/with_layout/index_with_specific_metadata.textile
|
235
|
-
- spec/lib/smartgen/configuration_spec.rb
|
236
|
-
- spec/lib/smartgen/engines/base_spec.rb
|
237
|
-
- spec/lib/smartgen/engines/erb_spec.rb
|
238
|
-
- spec/lib/smartgen/engines/markdown_spec.rb
|
239
|
-
- spec/lib/smartgen/engines/textile_spec.rb
|
240
|
-
- spec/lib/smartgen/generator_spec.rb
|
241
|
-
- spec/lib/smartgen/indexer_spec.rb
|
242
|
-
- spec/lib/smartgen/markup_file_spec.rb
|
243
|
-
- spec/lib/smartgen/object_hash_spec.rb
|
244
|
-
- spec/lib/smartgen/renderers/erb_spec.rb
|
245
|
-
- spec/lib/smartgen/resource_spec.rb
|
246
|
-
- spec/lib/smartgen/watcher_spec.rb
|
247
|
-
- spec/lib/smartgen_spec.rb
|
248
|
-
- spec/sandbox/.gitkeep
|
249
|
-
- spec/spec_helper.rb
|
193
|
+
test_files: []
|