nanoc 4.7.10 → 4.7.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CONTRIBUTING.md +17 -0
- data/.github/ISSUE_TEMPLATE.md +23 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +18 -0
- data/.gitignore +8 -0
- data/.rspec +3 -0
- data/.rubocop.yml +174 -0
- data/.travis.yml +27 -0
- data/Gemfile +4 -3
- data/NEWS.md +11 -0
- data/Rakefile +5 -2
- data/lib/nanoc/base/entities/dependency.rb +5 -3
- data/lib/nanoc/base/entities/layout.rb +1 -1
- data/lib/nanoc/base/repos/dependency_store.rb +64 -28
- data/lib/nanoc/base/services/dependency_tracker.rb +1 -1
- data/lib/nanoc/base/views/config_view.rb +4 -0
- data/lib/nanoc/checking/checks/external_links.rb +3 -6
- data/lib/nanoc/cli.rb +0 -2
- data/lib/nanoc/cli/commands/shell.rb +2 -3
- data/lib/nanoc/filters/colorize_syntax/colorizers.rb +4 -1
- data/lib/nanoc/telemetry/table.rb +1 -1
- data/lib/nanoc/version.rb +1 -1
- data/nanoc.gemspec +1 -5
- data/scripts/release +95 -0
- data/{test → spec/nanoc}/base/core_ext/array_spec.rb +5 -14
- data/{test → spec/nanoc}/base/core_ext/hash_spec.rb +6 -15
- data/{test → spec/nanoc}/base/core_ext/pathname_spec.rb +0 -0
- data/spec/nanoc/base/core_ext/string_spec.rb +23 -0
- data/spec/nanoc/base/directed_graph_spec.rb +291 -0
- data/spec/nanoc/base/entities/identifiable_collection_spec.rb +56 -0
- data/spec/nanoc/base/entities/item_spec.rb +8 -0
- data/spec/nanoc/base/entities/layout_spec.rb +8 -0
- data/spec/nanoc/base/repos/dependency_store_spec.rb +166 -21
- data/spec/nanoc/base/views/config_view_spec.rb +29 -1
- data/spec/nanoc/cli/commands/shell_spec.rb +23 -8
- data/spec/nanoc/filters/less_spec.rb +1 -1
- data/spec/nanoc/regressions/gh_1185_spec.rb +22 -0
- data/spec/nanoc/telemetry/table_spec.rb +22 -0
- data/spec/spec_helper.rb +5 -6
- data/test/base/test_item_array.rb +0 -35
- data/test/checking/checks/test_external_links.rb +0 -14
- data/test/filters/test_coffeescript.rb +0 -2
- data/test/filters/test_handlebars.rb +0 -4
- data/test/filters/test_uglify_js.rb +0 -4
- data/test/helper.rb +0 -6
- data/test/helpers/test_blogging.rb +66 -26
- data/test/helpers/test_xml_sitemap.rb +23 -7
- metadata +16 -9
- data/Gemfile.lock +0 -433
- data/test/base/core_ext/string_spec.rb +0 -25
- data/test/base/test_item.rb +0 -40
- data/test/base/test_layout.rb +0 -16
@@ -8,9 +8,20 @@ class Nanoc::Helpers::XMLSitemapTest < Nanoc::TestCase
|
|
8
8
|
def setup
|
9
9
|
super
|
10
10
|
|
11
|
+
config = Nanoc::Int::Configuration.new.with_defaults
|
12
|
+
items = Nanoc::Int::IdentifiableCollection.new(config)
|
13
|
+
layouts = Nanoc::Int::IdentifiableCollection.new(config)
|
14
|
+
dep_store = Nanoc::Int::DependencyStore.new(items, layouts)
|
15
|
+
dependency_tracker = Nanoc::Int::DependencyTracker.new(dep_store)
|
16
|
+
|
11
17
|
@reps = Nanoc::Int::ItemRepRepo.new
|
12
|
-
|
13
|
-
|
18
|
+
@view_context = Nanoc::ViewContext.new(
|
19
|
+
reps: @reps,
|
20
|
+
items: nil,
|
21
|
+
dependency_tracker: dependency_tracker,
|
22
|
+
compilation_context: :__irrelevant__,
|
23
|
+
snapshot_repo: :__irrelevant_snapshot_repo,
|
24
|
+
)
|
14
25
|
|
15
26
|
@items = nil
|
16
27
|
@item = nil
|
@@ -52,7 +63,8 @@ class Nanoc::Helpers::XMLSitemapTest < Nanoc::TestCase
|
|
52
63
|
@item = Nanoc::ItemWithRepsView.new(Nanoc::Int::Item.new('sitemap content', {}, '/sitemap/'), @view_context)
|
53
64
|
|
54
65
|
# Create site
|
55
|
-
|
66
|
+
config = Nanoc::Int::Configuration.new(hash: { base_url: 'http://example.com' })
|
67
|
+
@config = Nanoc::ConfigView.new(config, @view_context)
|
56
68
|
|
57
69
|
# Build sitemap
|
58
70
|
res = xml_sitemap
|
@@ -98,7 +110,8 @@ class Nanoc::Helpers::XMLSitemapTest < Nanoc::TestCase
|
|
98
110
|
@item = Nanoc::Int::Item.new('sitemap content', {}, '/sitemap/')
|
99
111
|
|
100
112
|
# Create site
|
101
|
-
|
113
|
+
config = Nanoc::Int::Configuration.new(hash: { base_url: 'http://example.com' })
|
114
|
+
@config = Nanoc::ConfigView.new(config, @view_context)
|
102
115
|
|
103
116
|
# Build sitemap
|
104
117
|
res = xml_sitemap(items: [item])
|
@@ -132,7 +145,8 @@ class Nanoc::Helpers::XMLSitemapTest < Nanoc::TestCase
|
|
132
145
|
@item = Nanoc::ItemWithRepsView.new(Nanoc::Int::Item.new('sitemap content', {}, '/sitemap/'), @view_context)
|
133
146
|
|
134
147
|
# Create site
|
135
|
-
|
148
|
+
config = Nanoc::Int::Configuration.new(hash: { base_url: 'http://example.com' })
|
149
|
+
@config = Nanoc::ConfigView.new(config, @view_context)
|
136
150
|
|
137
151
|
# Build sitemap
|
138
152
|
res = xml_sitemap(rep_select: ->(rep) { rep.name == :one_a })
|
@@ -172,7 +186,8 @@ class Nanoc::Helpers::XMLSitemapTest < Nanoc::TestCase
|
|
172
186
|
@item = Nanoc::ItemWithRepsView.new(Nanoc::Int::Item.new('sitemap content', {}, '/sitemap/'), @view_context)
|
173
187
|
|
174
188
|
# Create site
|
175
|
-
|
189
|
+
config = Nanoc::Int::Configuration.new(hash: { base_url: 'http://example.com' })
|
190
|
+
@config = Nanoc::ConfigView.new(config, @view_context)
|
176
191
|
|
177
192
|
# Build sitemap
|
178
193
|
res = xml_sitemap(items: @items)
|
@@ -203,7 +218,8 @@ class Nanoc::Helpers::XMLSitemapTest < Nanoc::TestCase
|
|
203
218
|
@item = Nanoc::ItemWithRepsView.new(Nanoc::Int::Item.new('sitemap content', {}, '/sitemap/'), @view_context)
|
204
219
|
|
205
220
|
# Create site
|
206
|
-
|
221
|
+
config = Nanoc::Int::Configuration.new(hash: { base_url: 'http://example.com' })
|
222
|
+
@config = Nanoc::ConfigView.new(config, @view_context)
|
207
223
|
|
208
224
|
# Build sitemap
|
209
225
|
res = xml_sitemap(items: @items)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nanoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.7.
|
4
|
+
version: 4.7.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Denis Defreyne
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cri
|
@@ -113,9 +113,15 @@ extra_rdoc_files:
|
|
113
113
|
- README.md
|
114
114
|
- NEWS.md
|
115
115
|
files:
|
116
|
+
- ".github/CONTRIBUTING.md"
|
117
|
+
- ".github/ISSUE_TEMPLATE.md"
|
118
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
119
|
+
- ".gitignore"
|
120
|
+
- ".rspec"
|
121
|
+
- ".rubocop.yml"
|
122
|
+
- ".travis.yml"
|
116
123
|
- Appraisals
|
117
124
|
- Gemfile
|
118
|
-
- Gemfile.lock
|
119
125
|
- Guardfile
|
120
126
|
- LICENSE
|
121
127
|
- NEWS.md
|
@@ -370,9 +376,14 @@ files:
|
|
370
376
|
- lib/nanoc/telemetry/table.rb
|
371
377
|
- lib/nanoc/version.rb
|
372
378
|
- nanoc.gemspec
|
379
|
+
- scripts/release
|
373
380
|
- spec/contributors_spec.rb
|
374
381
|
- spec/nanoc/base/checksummer_spec.rb
|
375
382
|
- spec/nanoc/base/compiler_spec.rb
|
383
|
+
- spec/nanoc/base/core_ext/array_spec.rb
|
384
|
+
- spec/nanoc/base/core_ext/hash_spec.rb
|
385
|
+
- spec/nanoc/base/core_ext/pathname_spec.rb
|
386
|
+
- spec/nanoc/base/core_ext/string_spec.rb
|
376
387
|
- spec/nanoc/base/directed_graph_spec.rb
|
377
388
|
- spec/nanoc/base/entities/action_sequence_spec.rb
|
378
389
|
- spec/nanoc/base/entities/code_snippet_spec.rb
|
@@ -494,6 +505,7 @@ files:
|
|
494
505
|
- spec/nanoc/regressions/gh_1134_spec.rb
|
495
506
|
- spec/nanoc/regressions/gh_1145_spec.rb
|
496
507
|
- spec/nanoc/regressions/gh_1171_spec.rb
|
508
|
+
- spec/nanoc/regressions/gh_1185_spec.rb
|
497
509
|
- spec/nanoc/regressions/gh_761_spec.rb
|
498
510
|
- spec/nanoc/regressions/gh_767_spec.rb
|
499
511
|
- spec/nanoc/regressions/gh_769_spec.rb
|
@@ -535,13 +547,10 @@ files:
|
|
535
547
|
- spec/nanoc/telemetry/labelled_summary_spec.rb
|
536
548
|
- spec/nanoc/telemetry/stopwatch_spec.rb
|
537
549
|
- spec/nanoc/telemetry/summary_spec.rb
|
550
|
+
- spec/nanoc/telemetry/table_spec.rb
|
538
551
|
- spec/nanoc/telemetry_spec.rb
|
539
552
|
- spec/regression_filenames_spec.rb
|
540
553
|
- spec/spec_helper.rb
|
541
|
-
- test/base/core_ext/array_spec.rb
|
542
|
-
- test/base/core_ext/hash_spec.rb
|
543
|
-
- test/base/core_ext/pathname_spec.rb
|
544
|
-
- test/base/core_ext/string_spec.rb
|
545
554
|
- test/base/test_code_snippet.rb
|
546
555
|
- test/base/test_compiler.rb
|
547
556
|
- test/base/test_context.rb
|
@@ -549,9 +558,7 @@ files:
|
|
549
558
|
- test/base/test_dependency_tracker.rb
|
550
559
|
- test/base/test_directed_graph.rb
|
551
560
|
- test/base/test_filter.rb
|
552
|
-
- test/base/test_item.rb
|
553
561
|
- test/base/test_item_array.rb
|
554
|
-
- test/base/test_layout.rb
|
555
562
|
- test/base/test_notification_center.rb
|
556
563
|
- test/base/test_site.rb
|
557
564
|
- test/base/test_store.rb
|
data/Gemfile.lock
DELETED
@@ -1,433 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/bbatsov/rubocop.git
|
3
|
-
revision: 03bda6cde059c4a83f03db025c904f3fb60968c0
|
4
|
-
specs:
|
5
|
-
rubocop (0.48.1)
|
6
|
-
parallel (~> 1.10)
|
7
|
-
parser (>= 2.3.3.1, < 3.0)
|
8
|
-
powerpack (~> 0.1)
|
9
|
-
rainbow (>= 1.99.1, < 3.0)
|
10
|
-
ruby-progressbar (~> 1.7)
|
11
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
12
|
-
|
13
|
-
PATH
|
14
|
-
remote: .
|
15
|
-
specs:
|
16
|
-
nanoc (4.7.10)
|
17
|
-
cri (~> 2.8)
|
18
|
-
ddplugin (~> 1.0)
|
19
|
-
hamster (~> 3.0)
|
20
|
-
ref (~> 2.0)
|
21
|
-
|
22
|
-
GEM
|
23
|
-
remote: https://rubygems.org/
|
24
|
-
specs:
|
25
|
-
CFPropertyList (2.3.5)
|
26
|
-
RedCloth (4.3.2)
|
27
|
-
addressable (2.5.1)
|
28
|
-
public_suffix (~> 2.0, >= 2.0.2)
|
29
|
-
adsf (1.2.1)
|
30
|
-
rack (>= 1.0.0)
|
31
|
-
appraisal (2.2.0)
|
32
|
-
bundler
|
33
|
-
rake
|
34
|
-
thor (>= 0.14.0)
|
35
|
-
ast (2.3.0)
|
36
|
-
bluecloth (2.2.0)
|
37
|
-
builder (3.2.3)
|
38
|
-
chunky_png (1.3.8)
|
39
|
-
codecov (0.1.10)
|
40
|
-
json
|
41
|
-
simplecov
|
42
|
-
url
|
43
|
-
coderay (1.1.1)
|
44
|
-
coffee-script (2.4.1)
|
45
|
-
coffee-script-source
|
46
|
-
execjs
|
47
|
-
coffee-script-source (1.12.2)
|
48
|
-
colored (1.2)
|
49
|
-
commonjs (0.2.7)
|
50
|
-
compass (1.0.3)
|
51
|
-
chunky_png (~> 1.2)
|
52
|
-
compass-core (~> 1.0.2)
|
53
|
-
compass-import-once (~> 1.0.5)
|
54
|
-
rb-fsevent (>= 0.9.3)
|
55
|
-
rb-inotify (>= 0.9)
|
56
|
-
sass (>= 3.3.13, < 3.5)
|
57
|
-
compass-core (1.0.3)
|
58
|
-
multi_json (~> 1.0)
|
59
|
-
sass (>= 3.3.0, < 3.5)
|
60
|
-
compass-import-once (1.0.5)
|
61
|
-
sass (>= 3.2, < 3.5)
|
62
|
-
concurrent-ruby (1.0.5)
|
63
|
-
contracts (0.16.0)
|
64
|
-
coveralls (0.8.21)
|
65
|
-
json (>= 1.8, < 3)
|
66
|
-
simplecov (~> 0.14.1)
|
67
|
-
term-ansicolor (~> 1.3)
|
68
|
-
thor (~> 0.19.4)
|
69
|
-
tins (~> 1.6)
|
70
|
-
crack (0.4.3)
|
71
|
-
safe_yaml (~> 1.0.0)
|
72
|
-
cri (2.8.0)
|
73
|
-
colored (~> 1.2)
|
74
|
-
ddplugin (1.0.1)
|
75
|
-
diff-lcs (1.3)
|
76
|
-
docile (1.1.5)
|
77
|
-
erubi (1.6.0)
|
78
|
-
erubis (2.7.0)
|
79
|
-
excon (0.55.0)
|
80
|
-
execjs (2.7.0)
|
81
|
-
ffi (1.9.18)
|
82
|
-
fission (0.5.0)
|
83
|
-
CFPropertyList (~> 2.2)
|
84
|
-
fog (1.38.0)
|
85
|
-
fog-aliyun (>= 0.1.0)
|
86
|
-
fog-atmos
|
87
|
-
fog-aws (>= 0.6.0)
|
88
|
-
fog-brightbox (~> 0.4)
|
89
|
-
fog-cloudatcost (~> 0.1.0)
|
90
|
-
fog-core (~> 1.32)
|
91
|
-
fog-dynect (~> 0.0.2)
|
92
|
-
fog-ecloud (~> 0.1)
|
93
|
-
fog-google (<= 0.1.0)
|
94
|
-
fog-json
|
95
|
-
fog-local
|
96
|
-
fog-openstack
|
97
|
-
fog-powerdns (>= 0.1.1)
|
98
|
-
fog-profitbricks
|
99
|
-
fog-rackspace
|
100
|
-
fog-radosgw (>= 0.0.2)
|
101
|
-
fog-riakcs
|
102
|
-
fog-sakuracloud (>= 0.0.4)
|
103
|
-
fog-serverlove
|
104
|
-
fog-softlayer
|
105
|
-
fog-storm_on_demand
|
106
|
-
fog-terremark
|
107
|
-
fog-vmfusion
|
108
|
-
fog-voxel
|
109
|
-
fog-vsphere (>= 0.4.0)
|
110
|
-
fog-xenserver
|
111
|
-
fog-xml (~> 0.1.1)
|
112
|
-
ipaddress (~> 0.5)
|
113
|
-
fog-aliyun (0.1.0)
|
114
|
-
fog-core (~> 1.27)
|
115
|
-
fog-json (~> 1.0)
|
116
|
-
ipaddress (~> 0.8)
|
117
|
-
xml-simple (~> 1.1)
|
118
|
-
fog-atmos (0.1.0)
|
119
|
-
fog-core
|
120
|
-
fog-xml
|
121
|
-
fog-aws (1.3.0)
|
122
|
-
fog-core (~> 1.38)
|
123
|
-
fog-json (~> 1.0)
|
124
|
-
fog-xml (~> 0.1)
|
125
|
-
ipaddress (~> 0.8)
|
126
|
-
fog-brightbox (0.11.0)
|
127
|
-
fog-core (~> 1.22)
|
128
|
-
fog-json
|
129
|
-
inflecto (~> 0.0.2)
|
130
|
-
fog-cloudatcost (0.1.2)
|
131
|
-
fog-core (~> 1.36)
|
132
|
-
fog-json (~> 1.0)
|
133
|
-
fog-xml (~> 0.1)
|
134
|
-
ipaddress (~> 0.8)
|
135
|
-
fog-core (1.44.1)
|
136
|
-
builder
|
137
|
-
excon (~> 0.49)
|
138
|
-
formatador (~> 0.2)
|
139
|
-
fog-dynect (0.0.3)
|
140
|
-
fog-core
|
141
|
-
fog-json
|
142
|
-
fog-xml
|
143
|
-
fog-ecloud (0.3.0)
|
144
|
-
fog-core
|
145
|
-
fog-xml
|
146
|
-
fog-google (0.1.0)
|
147
|
-
fog-core
|
148
|
-
fog-json
|
149
|
-
fog-xml
|
150
|
-
fog-json (1.0.2)
|
151
|
-
fog-core (~> 1.0)
|
152
|
-
multi_json (~> 1.10)
|
153
|
-
fog-local (0.3.1)
|
154
|
-
fog-core (~> 1.27)
|
155
|
-
fog-openstack (0.1.20)
|
156
|
-
fog-core (>= 1.40)
|
157
|
-
fog-json (>= 1.0)
|
158
|
-
ipaddress (>= 0.8)
|
159
|
-
fog-powerdns (0.1.1)
|
160
|
-
fog-core (~> 1.27)
|
161
|
-
fog-json (~> 1.0)
|
162
|
-
fog-xml (~> 0.1)
|
163
|
-
fog-profitbricks (3.0.0)
|
164
|
-
fog-core (~> 1.42)
|
165
|
-
fog-json (~> 1.0)
|
166
|
-
fog-rackspace (0.1.5)
|
167
|
-
fog-core (>= 1.35)
|
168
|
-
fog-json (>= 1.0)
|
169
|
-
fog-xml (>= 0.1)
|
170
|
-
ipaddress (>= 0.8)
|
171
|
-
fog-radosgw (0.0.5)
|
172
|
-
fog-core (>= 1.21.0)
|
173
|
-
fog-json
|
174
|
-
fog-xml (>= 0.0.1)
|
175
|
-
fog-riakcs (0.1.0)
|
176
|
-
fog-core
|
177
|
-
fog-json
|
178
|
-
fog-xml
|
179
|
-
fog-sakuracloud (1.7.5)
|
180
|
-
fog-core
|
181
|
-
fog-json
|
182
|
-
fog-serverlove (0.1.2)
|
183
|
-
fog-core
|
184
|
-
fog-json
|
185
|
-
fog-softlayer (1.1.4)
|
186
|
-
fog-core
|
187
|
-
fog-json
|
188
|
-
fog-storm_on_demand (0.1.1)
|
189
|
-
fog-core
|
190
|
-
fog-json
|
191
|
-
fog-terremark (0.1.0)
|
192
|
-
fog-core
|
193
|
-
fog-xml
|
194
|
-
fog-vmfusion (0.1.0)
|
195
|
-
fission
|
196
|
-
fog-core
|
197
|
-
fog-voxel (0.1.0)
|
198
|
-
fog-core
|
199
|
-
fog-xml
|
200
|
-
fog-vsphere (1.9.2)
|
201
|
-
fog-core
|
202
|
-
rbvmomi (~> 1.9)
|
203
|
-
fog-xenserver (0.3.0)
|
204
|
-
fog-core
|
205
|
-
fog-xml
|
206
|
-
fog-xml (0.1.3)
|
207
|
-
fog-core
|
208
|
-
nokogiri (>= 1.5.11, < 2.0.0)
|
209
|
-
formatador (0.2.5)
|
210
|
-
fuubar (2.2.0)
|
211
|
-
rspec-core (~> 3.0)
|
212
|
-
ruby-progressbar (~> 1.4)
|
213
|
-
guard (2.14.1)
|
214
|
-
formatador (>= 0.2.4)
|
215
|
-
listen (>= 2.7, < 4.0)
|
216
|
-
lumberjack (~> 1.0)
|
217
|
-
nenv (~> 0.1)
|
218
|
-
notiffany (~> 0.0)
|
219
|
-
pry (>= 0.9.12)
|
220
|
-
shellany (~> 0.0)
|
221
|
-
thor (>= 0.18.1)
|
222
|
-
guard-rake (1.0.0)
|
223
|
-
guard
|
224
|
-
rake
|
225
|
-
haml (5.0.1)
|
226
|
-
temple (>= 0.8.0)
|
227
|
-
tilt
|
228
|
-
hamster (3.0.0)
|
229
|
-
concurrent-ruby (~> 1.0)
|
230
|
-
handlebars (0.8.0)
|
231
|
-
handlebars-source (~> 4.0.5)
|
232
|
-
therubyracer (~> 0.12.1)
|
233
|
-
handlebars-source (4.0.8)
|
234
|
-
hashdiff (0.3.4)
|
235
|
-
inflecto (0.0.2)
|
236
|
-
ipaddress (0.8.3)
|
237
|
-
json (2.1.0)
|
238
|
-
kramdown (1.13.2)
|
239
|
-
less (2.6.0)
|
240
|
-
commonjs (~> 0.2.7)
|
241
|
-
libv8 (3.16.14.19)
|
242
|
-
listen (3.1.5)
|
243
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
244
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
245
|
-
ruby_dep (~> 1.2)
|
246
|
-
lumberjack (1.0.12)
|
247
|
-
m (1.5.0)
|
248
|
-
method_source (>= 0.6.7)
|
249
|
-
rake (>= 0.9.2.2)
|
250
|
-
markaby (0.8.0)
|
251
|
-
builder
|
252
|
-
maruku (0.7.3)
|
253
|
-
metaclass (0.0.4)
|
254
|
-
method_source (0.8.2)
|
255
|
-
mime-types (3.1)
|
256
|
-
mime-types-data (~> 3.2015)
|
257
|
-
mime-types-data (3.2016.0521)
|
258
|
-
mini_portile2 (2.1.0)
|
259
|
-
minitest (5.10.2)
|
260
|
-
mocha (1.2.1)
|
261
|
-
metaclass (~> 0.0.1)
|
262
|
-
multi_json (1.12.1)
|
263
|
-
mustache (1.0.5)
|
264
|
-
nenv (0.3.0)
|
265
|
-
nokogiri (1.7.2)
|
266
|
-
mini_portile2 (~> 2.1.0)
|
267
|
-
nokogumbo (1.4.10)
|
268
|
-
nokogiri
|
269
|
-
notiffany (0.1.1)
|
270
|
-
nenv (~> 0.1)
|
271
|
-
shellany (~> 0.0)
|
272
|
-
pandoc-ruby (2.0.1)
|
273
|
-
parallel (1.11.2)
|
274
|
-
parser (2.4.0.0)
|
275
|
-
ast (~> 2.2)
|
276
|
-
powerpack (0.1.1)
|
277
|
-
pry (0.10.4)
|
278
|
-
coderay (~> 1.1.0)
|
279
|
-
method_source (~> 0.8.1)
|
280
|
-
slop (~> 3.4)
|
281
|
-
public_suffix (2.0.5)
|
282
|
-
pygments.rb (1.1.2)
|
283
|
-
multi_json (>= 1.0.0)
|
284
|
-
rack (2.0.2)
|
285
|
-
rainbow (2.2.2)
|
286
|
-
rake
|
287
|
-
rainpress (1.0.1)
|
288
|
-
rake (12.0.0)
|
289
|
-
rb-fsevent (0.9.8)
|
290
|
-
rb-inotify (0.9.8)
|
291
|
-
ffi (>= 0.5.0)
|
292
|
-
rbvmomi (1.11.2)
|
293
|
-
builder (~> 3.0)
|
294
|
-
json (>= 1.8)
|
295
|
-
nokogiri (~> 1.5)
|
296
|
-
trollop (~> 2.1)
|
297
|
-
rdiscount (2.2.0.1)
|
298
|
-
rdoc (5.1.0)
|
299
|
-
redcarpet (3.4.0)
|
300
|
-
ref (2.0.0)
|
301
|
-
rouge (2.0.7)
|
302
|
-
rspec (3.6.0)
|
303
|
-
rspec-core (~> 3.6.0)
|
304
|
-
rspec-expectations (~> 3.6.0)
|
305
|
-
rspec-mocks (~> 3.6.0)
|
306
|
-
rspec-core (3.6.0)
|
307
|
-
rspec-support (~> 3.6.0)
|
308
|
-
rspec-expectations (3.6.0)
|
309
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
310
|
-
rspec-support (~> 3.6.0)
|
311
|
-
rspec-its (1.2.0)
|
312
|
-
rspec-core (>= 3.0.0)
|
313
|
-
rspec-expectations (>= 3.0.0)
|
314
|
-
rspec-mocks (3.6.0)
|
315
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
316
|
-
rspec-support (~> 3.6.0)
|
317
|
-
rspec-support (3.6.0)
|
318
|
-
ruby-progressbar (1.8.1)
|
319
|
-
ruby_dep (1.5.0)
|
320
|
-
rubypants (0.6.0)
|
321
|
-
safe_yaml (1.0.4)
|
322
|
-
sass (3.4.23)
|
323
|
-
shellany (0.0.1)
|
324
|
-
simplecov (0.14.1)
|
325
|
-
docile (~> 1.1.0)
|
326
|
-
json (>= 1.8, < 3)
|
327
|
-
simplecov-html (~> 0.10.0)
|
328
|
-
simplecov-html (0.10.0)
|
329
|
-
slim (3.0.8)
|
330
|
-
temple (>= 0.7.6, < 0.9)
|
331
|
-
tilt (>= 1.3.3, < 2.1)
|
332
|
-
slop (3.6.0)
|
333
|
-
temple (0.8.0)
|
334
|
-
term-ansicolor (1.6.0)
|
335
|
-
tins (~> 1.0)
|
336
|
-
therubyracer (0.12.3)
|
337
|
-
libv8 (~> 3.16.14.15)
|
338
|
-
ref
|
339
|
-
thor (0.19.4)
|
340
|
-
tilt (2.0.7)
|
341
|
-
timecop (0.8.1)
|
342
|
-
tins (1.13.2)
|
343
|
-
trollop (2.1.2)
|
344
|
-
typogruby (1.0.18)
|
345
|
-
rubypants
|
346
|
-
uglifier (3.2.0)
|
347
|
-
execjs (>= 0.3.0, < 3)
|
348
|
-
unicode-display_width (1.2.1)
|
349
|
-
url (0.3.2)
|
350
|
-
vcr (3.0.3)
|
351
|
-
w3c_validators (1.3.2)
|
352
|
-
json (>= 1.8)
|
353
|
-
nokogiri (~> 1.6)
|
354
|
-
webmock (3.0.1)
|
355
|
-
addressable (>= 2.3.6)
|
356
|
-
crack (>= 0.3.2)
|
357
|
-
hashdiff
|
358
|
-
xml-simple (1.1.5)
|
359
|
-
yard (0.9.9)
|
360
|
-
yard-contracts (0.1.5)
|
361
|
-
contracts (~> 0.7)
|
362
|
-
yard (~> 0.8)
|
363
|
-
yuicompressor (1.3.3)
|
364
|
-
|
365
|
-
PLATFORMS
|
366
|
-
ruby
|
367
|
-
|
368
|
-
DEPENDENCIES
|
369
|
-
RedCloth
|
370
|
-
adsf
|
371
|
-
appraisal (~> 2.1)
|
372
|
-
bluecloth
|
373
|
-
builder
|
374
|
-
bundler (>= 1.7.10, < 2.0)
|
375
|
-
codecov
|
376
|
-
coderay
|
377
|
-
coffee-script
|
378
|
-
compass
|
379
|
-
contracts (~> 0.14)
|
380
|
-
coveralls
|
381
|
-
erubi
|
382
|
-
erubis
|
383
|
-
fog
|
384
|
-
fuubar
|
385
|
-
guard-rake
|
386
|
-
haml
|
387
|
-
handlebars
|
388
|
-
json (~> 2.0)
|
389
|
-
kramdown
|
390
|
-
less (~> 2.0)
|
391
|
-
listen
|
392
|
-
m (~> 1.5)
|
393
|
-
markaby
|
394
|
-
maruku
|
395
|
-
mime-types
|
396
|
-
minitest (~> 5.0)
|
397
|
-
mocha
|
398
|
-
mustache (~> 1.0)
|
399
|
-
nanoc!
|
400
|
-
nokogiri (~> 1.6)
|
401
|
-
nokogumbo (~> 1.4)
|
402
|
-
pandoc-ruby
|
403
|
-
pry
|
404
|
-
pygments.rb (~> 1.1, >= 1.1.1)
|
405
|
-
rack
|
406
|
-
rainbow (~> 2.1)
|
407
|
-
rainpress
|
408
|
-
rake
|
409
|
-
rdiscount (~> 2.2)
|
410
|
-
rdoc (~> 5.0)
|
411
|
-
redcarpet
|
412
|
-
rouge
|
413
|
-
rspec
|
414
|
-
rspec-its (~> 1.2)
|
415
|
-
rspec-mocks
|
416
|
-
rubocop!
|
417
|
-
rubypants
|
418
|
-
sass
|
419
|
-
simplecov
|
420
|
-
slim (~> 3.0)
|
421
|
-
therubyracer (~> 0.12)
|
422
|
-
timecop
|
423
|
-
typogruby
|
424
|
-
uglifier
|
425
|
-
vcr
|
426
|
-
w3c_validators
|
427
|
-
webmock
|
428
|
-
yard
|
429
|
-
yard-contracts
|
430
|
-
yuicompressor
|
431
|
-
|
432
|
-
BUNDLED WITH
|
433
|
-
1.14.6
|