nesta 0.9.11 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -11
  3. data/.gitmodules +6 -0
  4. data/.hound.yml +2 -0
  5. data/{spec/spec.opts → .rspec} +0 -0
  6. data/.travis.yml +11 -0
  7. data/CHANGES +250 -2
  8. data/Gemfile +2 -2
  9. data/Gemfile.lock +89 -33
  10. data/Guardfile +7 -0
  11. data/LICENSE +1 -1
  12. data/README.md +38 -6
  13. data/RELEASING.md +21 -0
  14. data/Rakefile +20 -4
  15. data/bin/nesta +131 -14
  16. data/config.ru +3 -0
  17. data/lib/nesta.rb +9 -1
  18. data/lib/nesta/app.rb +21 -107
  19. data/lib/nesta/commands.rb +5 -256
  20. data/lib/nesta/commands/command.rb +57 -0
  21. data/lib/nesta/commands/demo.rb +1 -0
  22. data/lib/nesta/commands/demo/content.rb +56 -0
  23. data/lib/nesta/commands/edit.rb +21 -0
  24. data/lib/nesta/commands/new.rb +57 -0
  25. data/lib/nesta/commands/plugin.rb +1 -0
  26. data/lib/nesta/commands/plugin/create.rb +82 -0
  27. data/lib/nesta/commands/theme.rb +3 -0
  28. data/lib/nesta/commands/theme/create.rb +36 -0
  29. data/lib/nesta/commands/theme/enable.rb +22 -0
  30. data/lib/nesta/commands/theme/install.rb +31 -0
  31. data/lib/nesta/config.rb +51 -22
  32. data/lib/nesta/helpers.rb +115 -0
  33. data/lib/nesta/models.rb +111 -70
  34. data/lib/nesta/navigation.rb +36 -12
  35. data/lib/nesta/overrides.rb +10 -5
  36. data/lib/nesta/plugin.rb +10 -8
  37. data/lib/nesta/version.rb +1 -1
  38. data/nesta.gemspec +14 -13
  39. data/templates/Gemfile +6 -3
  40. data/templates/config.ru +3 -0
  41. data/templates/config/config.yml +14 -14
  42. data/templates/config/deploy.rb +2 -2
  43. data/templates/index.haml +2 -0
  44. data/templates/plugins/Gemfile +4 -0
  45. data/templates/plugins/README.md +13 -0
  46. data/templates/plugins/Rakefile +58 -0
  47. data/templates/plugins/gitignore +3 -0
  48. data/templates/plugins/lib/init.rb +13 -0
  49. data/templates/plugins/lib/required.rb +3 -0
  50. data/templates/plugins/lib/version.rb +5 -0
  51. data/templates/plugins/plugin.gemspec +28 -0
  52. data/templates/themes/README.md +1 -1
  53. data/templates/themes/app.rb +1 -1
  54. data/templates/themes/views/layout.haml +7 -0
  55. data/templates/themes/views/master.sass +3 -0
  56. data/templates/themes/views/page.haml +1 -0
  57. data/{spec → test}/fixtures/nesta-plugin-test/Gemfile +0 -0
  58. data/{spec → test}/fixtures/nesta-plugin-test/Rakefile +0 -0
  59. data/{spec → test}/fixtures/nesta-plugin-test/lib/nesta-plugin-test.rb +0 -0
  60. data/{spec → test}/fixtures/nesta-plugin-test/lib/nesta-plugin-test/init.rb +1 -3
  61. data/{spec → test}/fixtures/nesta-plugin-test/lib/nesta-plugin-test/version.rb +0 -0
  62. data/{spec → test}/fixtures/nesta-plugin-test/nesta-plugin-test.gemspec +0 -0
  63. data/test/integration/atom_feed_test.rb +178 -0
  64. data/test/integration/commands/demo/content_test.rb +31 -0
  65. data/test/integration/commands/edit_test.rb +21 -0
  66. data/test/integration/commands/new_test.rb +120 -0
  67. data/test/integration/commands/plugin/create_test.rb +128 -0
  68. data/test/integration/commands/theme/create_test.rb +35 -0
  69. data/test/integration/commands/theme/enable_test.rb +22 -0
  70. data/test/integration/commands/theme/install_test.rb +62 -0
  71. data/test/integration/default_theme_test.rb +220 -0
  72. data/test/integration/overrides_test.rb +118 -0
  73. data/test/integration/route_handlers_test.rb +96 -0
  74. data/test/integration/sitemap_test.rb +85 -0
  75. data/test/integration_test_helper.rb +61 -0
  76. data/test/support/model_factory.rb +169 -0
  77. data/test/support/silence_commands_during_tests.rb +5 -0
  78. data/test/support/temporary_files.rb +33 -0
  79. data/test/support/test_configuration.rb +19 -0
  80. data/test/test_helper.rb +26 -0
  81. data/test/unit/commands_test.rb +23 -0
  82. data/test/unit/config_test.rb +138 -0
  83. data/test/unit/file_model_test.rb +71 -0
  84. data/test/unit/menu_test.rb +82 -0
  85. data/test/unit/page_test.rb +571 -0
  86. data/test/unit/path_test.rb +41 -0
  87. data/test/unit/plugin_test.rb +47 -0
  88. data/views/analytics.haml +9 -10
  89. data/views/atom.haml +4 -4
  90. data/views/comments.haml +1 -1
  91. data/views/error.haml +1 -1
  92. data/views/feed.haml +1 -1
  93. data/views/layout.haml +6 -3
  94. data/views/master.sass +144 -134
  95. data/views/mixins.sass +53 -28
  96. data/views/normalize.scss +396 -0
  97. data/views/page_meta.haml +2 -2
  98. data/views/sitemap.haml +2 -2
  99. data/views/summaries.haml +2 -2
  100. metadata +258 -232
  101. data/lib/nesta/cache.rb +0 -139
  102. data/lib/nesta/nesta.rb +0 -7
  103. data/spec/atom_spec.rb +0 -138
  104. data/spec/commands_spec.rb +0 -364
  105. data/spec/config_spec.rb +0 -67
  106. data/spec/model_factory.rb +0 -92
  107. data/spec/models_spec.rb +0 -588
  108. data/spec/overrides_spec.rb +0 -132
  109. data/spec/page_spec.rb +0 -498
  110. data/spec/path_spec.rb +0 -28
  111. data/spec/plugin_spec.rb +0 -51
  112. data/spec/sitemap_spec.rb +0 -100
  113. data/spec/spec_helper.rb +0 -76
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a79722f3a6494862b4365151dd2300b0eccece20b6cb711298c753763926d9ea
4
+ data.tar.gz: 4eca7c5b41e3103500237791960658ca8a3b0d1bf50e83860d74d531dd40fb17
5
+ SHA512:
6
+ metadata.gz: 36a89f709fa69d85e340a93ef44ca6fa43a31f54585d0da3c7ca359ed40dddd1003374a75feb0350bd53403595df0f71e513255a16e13dce0568c434fca62d9e
7
+ data.tar.gz: b3c443a50646d62b70247743c6157433a946d98566b72631284217458e218908720c2ce3bf01534630458cb35cd4c3045d187861385ad3ada43256f74e55f054
data/.gitignore CHANGED
@@ -1,15 +1,15 @@
1
1
  *.gem
2
- ._*
3
2
  .*.swp
4
- .bundle
5
3
  .DS_Store
6
- .rbenv-version
7
- .rvmrc
4
+ ._*
8
5
  .sass-cache
9
- config/config.yml
10
- config/deploy.rb
11
- db/*.db
12
- pkg/*
13
- plugins
14
- public/cache
15
- spec/tmp
6
+ /.rbenv-version
7
+ /.ruby-version
8
+ /.rvmrc
9
+ /config/config.yml
10
+ /config/deploy.rb
11
+ /db/*.db
12
+ /pkg/*
13
+ /plugins
14
+ /public/cache
15
+ /spec/tmp
@@ -0,0 +1,6 @@
1
+ [submodule "test/fixtures/demo-content.git"]
2
+ path = test/fixtures/demo-content.git
3
+ url = https://github.com/gma/nesta-demo-content.git
4
+ [submodule "test/fixtures/nesta-theme-test"]
5
+ path = test/fixtures/nesta-theme-test.git
6
+ url = https://github.com/gma/nesta-theme-test.git
@@ -0,0 +1,2 @@
1
+ ruby:
2
+ enabled: true
File without changes
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.5
4
+ - 2.6
5
+ - 2.7
6
+ before_script:
7
+ - git config --global user.email "continuous-integration@nestacms.com"
8
+ - git config --global user.name "Nesta CI"
9
+ script: bundle exec rake test
10
+ env:
11
+ - REPORTER=default
data/CHANGES CHANGED
@@ -1,3 +1,251 @@
1
+ = 0.12.0 / (30 June 2020)
2
+
3
+ * Upgrade to Sinatra 2 and Rack 2. (Graham Ashton)
4
+
5
+ * Upgrade from tilt 1.4 to 2.0. (Graham Ashton)
6
+
7
+ * Replace the deprecated sass gem with sassc. (Brad Weslake)
8
+
9
+ * Port the test suite from RSpec and Webrat to Minitest and Capybara.
10
+ (Graham Ashton)
11
+
12
+ * Silence deprecation warnings produced under Ruby 2.7. (Graham Ashton)
13
+
14
+ * Stop running the test suite under Ruby 2.3 and 2.4, both of which
15
+ have reached end-of-life. (Graham Ashton)
16
+
17
+ = 0.11.1 / (26 March 2015)
18
+
19
+ * Tighten dependency on Tilt, as version 2.x is incompatible.
20
+ (Graham Ashton)
21
+
22
+ = 0.11.0 / (16 March 2015)
23
+
24
+ * Allow Haml pages to use the built-in Markdown filter again, by
25
+ including the haml-contrib gem.
26
+ (Jordan Owens)
27
+
28
+ * When building the breadcrumb (e.g. "Home > Category > Page") for a
29
+ page whose URL is at the top level of a site, include a page's first
30
+ category in the breadcrumb.
31
+ See https://github.com/gma/nesta/issues/147 for an example.
32
+ (Jordan Owens)
33
+
34
+ * Print an error message when one of Nesta's command line tools calls
35
+ an external process (e.g. `git`), but the command doesn't return
36
+ successfully. (Graham Ashton)
37
+
38
+ * When the menu.txt pointed to a page that didn't exist, Nesta would
39
+ silently stop generating the menu, and links to pages further down
40
+ the file would be ignored. This is now fixed; the missing page is
41
+ ignored and the rest of the menu is generated. (Jordan Owens)
42
+
43
+ * Nesta previously expected all Markdown files to be named with a
44
+ `.mdown` extension. The (commonly used) `.md` extension is now
45
+ supported as well. (Phillip Miller)
46
+
47
+ * The Google Analytics JavaScript code has been updated to their
48
+ Universal Analytics version. (Graham Ashton)
49
+
50
+ * Relax restrictions on how Nesta can be configured. Previously Nesta
51
+ would only read if `config.yml` file if there weren't any environment
52
+ variables set. This restriction is historic, and unhelpful.
53
+ See https://github.com/gma/nesta/commit/bac50974 for details.
54
+ (Glenn Gillen)
55
+
56
+ * Plugins are distributed as gems. We've previously relied upon Bundler
57
+ to generate plugin gems for us, but when Bundler changed the format
58
+ of its generated gems they no longer worked with Nesta. Nesta now
59
+ generates gems from scratch (from a template), which removes our
60
+ dependency on a third party tool.
61
+ (Jordan Owens, Glenn Gillen, Graham Ashton)
62
+
63
+ * Support for Ruby 2.2. (Graham Ashton)
64
+
65
+ = 0.10.0 / (25 April 2014)
66
+
67
+ * Upgraded the default theme to a responsive design, using Google's
68
+ Roboto Slab web font. (Graham Ashton)
69
+
70
+ * Reduced the amount of I/O required to load a page with some judicious
71
+ in memory caching of filenames. Expect a speed boost! (Graham Ashton)
72
+
73
+ * Added 'Link text' metadata. When working out how to link to your
74
+ pages from the automatically generated menus and breadcrumbs, Nesta
75
+ uses the page's heading. It still does, but if you want to use
76
+ different words when linking to the page in breadcrumbs or in the
77
+ menu you can by defining the "Link text" metadata. (Micah Chalmer)
78
+
79
+ NOTE: Some existing sites may have pages that don't define a heading.
80
+ Those sites will not work with Nesta 0.10.0 until they've been
81
+ upgraded; either add an h1 level heading at the top of your pages
82
+ (preferred) or define the 'Link text' metadata. If you don't want
83
+ h1 headings to appear at the top of your web pages, hide them with
84
+ CSS (this is the best approach for accessibility), or define the
85
+ "Link text" metadata.
86
+
87
+ * The text used in the 'Read more' link is now configurable in config.yml.
88
+ The config key is called `read_more`. (Pete Gadomski)
89
+
90
+ See the config.yml template (on GitHub) for more details.
91
+ https://github.com/gma/nesta/blob/master/templates/config/config.yml
92
+
93
+ * Added the skip-sitemap flag, to prevent a page from being listed in
94
+ the XML sitemap. Add 'Flags: skip-sitemap' to the top of your page to
95
+ enable it. Draft pages have also been removed from the sitemap.
96
+ (Suggested by Joshua Mervine, implemented by Graham Ashton)
97
+
98
+ * Added support for user-defined config settings in config.yml.
99
+ If you've ever wanted to add config settings to config.yml and then
100
+ access them from within your app.rb file or templates, this is for
101
+ you.
102
+
103
+ There's a new `Nesta::Config.fetch` method for reading these
104
+ settings. It can also read settings from the environment, looking for
105
+ variables whose names are prefixed with "NESTA_". For example, the
106
+ value in the `NESTA_MY_SETTING` variable can be returned by
107
+ calling `Nesta::Config.fetch(:my_setting)`.
108
+
109
+ If the setting you're trying to read isn't defined a NotDefined
110
+ exception (a subclass of KeyError) will be raised. Similarly to
111
+ Ruby's Hash#fetch method, you can avoid the exception by specifying a
112
+ second argument (such as nil) that will be returned if the setting
113
+ isn't defined.
114
+
115
+ (Sean Redmond, Graham Ashton)
116
+
117
+ * The built-in file caching (where Nesta could write generated HTML for
118
+ rendered pages to disk) has been removed. If you'd like to cache
119
+ pages to disk, use the sinatra-cache gem.
120
+
121
+ See http://nestacms.com/docs/deployment/page-caching for more
122
+ details, and instructions for installing and testing sintra-cache.
123
+
124
+ (Graham Ashton)
125
+
126
+ * The nesta script's theme:create command now copies default templates
127
+ into a new theme. (Jake Rayson)
128
+
129
+ * Added the --zsh-completion option to the nesta command, which outputs
130
+ code that will configure command line completion in Zsh for the nesta
131
+ command. (Wynn Netherland)
132
+
133
+ * Page titles no longer include the heading from the parent page.
134
+ Behaviour was a little inconsistent, and it's arguably not a great
135
+ feature in the first place. Since the Title metadata appeared you can
136
+ ovverride the page title to something more useful if you need to too.
137
+ (Graham Ashton)
138
+
139
+ * When commenting via Disqus is configured, comments appeared on every
140
+ page in earlier versions of Nesta. From now on only pages with a date
141
+ set (i.e. articles) will display the comment form by default. If
142
+ you've copied the comments.haml template into your ./views folder (or
143
+ into a theme) you'll need to modify it slightly. See the `if`
144
+ statement in the latest version.
145
+
146
+ If you'd actually like comments to appear on every page of your site,
147
+ redefine the Page#receives_comments? method in your app.rb file, so
148
+ that it returns `true`.
149
+
150
+ (Graham Ashton)
151
+
152
+ * Breadcrumbs include Microdata for use by search engines. See:
153
+ http://support.google.com/webmasters/bin/answer.py?hl=en&answer=185417
154
+ (Sean Schofield)
155
+
156
+ * The menu and breadcrumb helper methods can now generate HTML that
157
+ identifies the current page. When viewing a page that appears in the
158
+ menu, its menu item will have the class "current". To change the name
159
+ of the class, override the Nesta::Navigation::current_menu_item_class
160
+ method.
161
+
162
+ The current page doesn't have a class applied by default. If you want
163
+ to add a class to style it, override the ::current_breadcrumb_class
164
+ method (also in the Nesta::Navigation module), returning a string.
165
+
166
+ (Pete Gadomski)
167
+
168
+ * Version 0.9.13 used Sinatra's `url` helper method to generate links
169
+ to pages on the site. When these pages were cached by proxy servers
170
+ the hostname in the URL could be set incorrectly, as it would be
171
+ determined from the HTTP headers (see issue #103 for more details).
172
+
173
+ The solution was to link to pages on the current site using an
174
+ absolute path, rather than a full URL. The `path_to` helper was added,
175
+ and used in place of Sinatra's `url` helper method.
176
+
177
+ (Micah Chalmer)
178
+
179
+ * Updated the test suite from RSpec 1.3 to RSpec 2.
180
+ (Wynn Netherland, Graham Ashton)
181
+
182
+ * Support for Ruby 1.8 has been dropped. Ruby 1.9.3 or above is
183
+ recommended.
184
+
185
+ * There were also plenty of small bug fixes that didn't make it into
186
+ this list. See GitHub for the full list of commits.
187
+ https://github.com/gma/nesta/compare/v0.9.13...v0.10.0
188
+
189
+ = 0.9.13 / (3 March 2012)
190
+
191
+ * The nesta script has a new command; edit. You can pass it the path
192
+ to a file within your content/pages folder and it will open the file
193
+ in your default editor (as set by the EDITOR environment variable).
194
+
195
+ * The nesta script has a new option; --bash-completion. Run nesta with
196
+ this option and it will print some Bash that will configure command
197
+ line completion for the nesta command.
198
+
199
+ You can type `nesta edit <TAB>` and Bash will complete the names of
200
+ the files in your content/pages directory. :-)
201
+
202
+ Installation instructions at the top of the Bash script.
203
+
204
+ * Nesta can now be mounted cleanly at a path, rather than at a site's
205
+ root, and assets and links will be served correctly.
206
+ (Max Sadrieh, Graham Ashton)
207
+
208
+ * The default config.ru file that is generated when you create a new
209
+ project now enables Etag HTTP headers. (Max Sadrieh)
210
+
211
+ * Two helper methods have been removed; url_for and base_url. Use
212
+ Sinatra's url helper instead. They would have been deprecated rather
213
+ than removed, but if you try and load Nesta's helpers in a Rails app
214
+ url_for breaks Rails's rendering. (Max Sadrieh, Graham Ashton)
215
+
216
+ * The Page class has a new method; body_markup. It can be overridden by
217
+ a plugin, and is used by the foldable plugin. (Micah Chalmer)
218
+
219
+ * The `current_item?` helper has been created in `Nesta::Navigation`.
220
+ You can override it to implement your own logic for determining
221
+ whether or not a menu item rendered by the menu helpers are
222
+ considered to be "current". (Chad Ostrowski)
223
+
224
+ * The FileModel class has a new method; parse_metadata. It can be
225
+ overriden by plugins that implement an alternate metadata syntax.
226
+ Used by the yaml-metadata plugin.
227
+
228
+ * Erb templates in your ./views folder, or in a theme's folder, will
229
+ now be found when you call Sinatra's erb helper method.
230
+
231
+ * config.yml can now contain Erb (and therefore inline Ruby), which
232
+ will be interpreted when loaded. (Glenn Gillen)
233
+
234
+ * Extended the `nesta` command to support new commands that could (for
235
+ example) be added by a plugin. The class to be instantiated within
236
+ the Nesta::Commands module is determined from the command line
237
+ argument (e.g. `nesta plugin:create` will instantiate the class
238
+ called Nesta::Commands::Plugin::Create).
239
+
240
+ * Bug fix: Don't crash if a page's metadata only contains the key, with
241
+ no corresponding value. You could argue this wasn't a bug, but the
242
+ error message was difficult to trace. See #77.
243
+
244
+ * Bug fix: Summaries on Haml pages were not marked up as paragraphs.
245
+ See #75.
246
+
247
+ = 0.9.12 / (Released then pulled, due to rubygems [still] being a total mess)
248
+
1
249
  = 0.9.11 / (22 September 2011)
2
250
 
3
251
  * Use Tilt to render the Markdown, Textile and Haml in content/pages.
@@ -56,7 +304,7 @@
56
304
  * Bug fix: The Sinatra app's root directory wasn't set which meant
57
305
  that Nesta couldn't always find the ./public directory (such as when
58
306
  running on Heroku).
59
-
307
+
60
308
  The modifications made in 0.9.6 to make Nesta easier to mount inside
61
309
  another Rack application moved Nesta::App.root to the (new)
62
310
  Nesta::Env class. In 0.9.6 I forgot to actually set Nesta::App.root
@@ -128,7 +376,7 @@
128
376
 
129
377
  = 0.9.3 / 18 January 2011
130
378
 
131
- * The route and view for serving the home page (/) has been removed,
379
+ * The route and view for serving the home page (/) has been removed,
132
380
  and the home page must now be created as an index page in
133
381
  content/pages.
134
382
 
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
- source 'http://rubygems.org'
1
+ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in nesta.gemspec
4
4
  gemspec
5
5
 
6
- # gem (RUBY_VERSION =~ /^1.9/) ? 'ruby-debug19': 'ruby-debug'
6
+ # gem (RUBY_VERSION =~ /^1/) ? 'debugger' : 'byebug'
@@ -1,46 +1,102 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nesta (0.9.11)
4
+ nesta (0.12.0)
5
5
  RedCloth (~> 4.2)
6
- haml (~> 3.1)
7
- rdiscount (~> 1.6)
8
- sass (~> 3.1)
9
- shotgun (>= 0.8)
10
- sinatra (= 1.2.6)
6
+ haml (>= 3.1)
7
+ haml-contrib (>= 1.0)
8
+ rack (~> 2.0)
9
+ rdiscount (~> 2.1)
10
+ sassc (>= 2.2)
11
+ sinatra (~> 2.0)
12
+ tilt (~> 2.0)
11
13
 
12
14
  GEM
13
- remote: http://rubygems.org/
15
+ remote: https://rubygems.org/
14
16
  specs:
15
- RedCloth (4.2.8)
16
- haml (3.1.3)
17
- hoe (2.12.2)
18
- rake (~> 0.8)
19
- hpricot (0.8.4)
20
- rack (1.3.2)
21
- rack-test (0.6.1)
22
- rack (>= 1.0)
23
- rake (0.9.2)
24
- rdiscount (1.6.8)
25
- rspec (1.3.0)
26
- rspec_hpricot_matchers (1.0)
27
- sass (3.1.7)
28
- shotgun (0.9)
29
- rack (>= 1.0)
30
- sinatra (1.2.6)
31
- rack (~> 1.1)
32
- tilt (< 2.0, >= 1.2.2)
33
- test-unit (1.2.3)
34
- hoe (>= 1.5.1)
35
- tilt (1.3.3)
17
+ RedCloth (4.3.2)
18
+ addressable (2.7.0)
19
+ public_suffix (>= 2.0.2, < 5.0)
20
+ ansi (1.5.0)
21
+ builder (3.2.4)
22
+ byebug (11.1.3)
23
+ capybara (2.18.0)
24
+ addressable
25
+ mini_mime (>= 0.1.3)
26
+ nokogiri (>= 1.3.3)
27
+ rack (>= 1.0.0)
28
+ rack-test (>= 0.5.4)
29
+ xpath (>= 2.0, < 4.0)
30
+ ffi (1.13.1)
31
+ haml (5.1.2)
32
+ temple (>= 0.8.0)
33
+ tilt
34
+ haml-contrib (1.0.0.1)
35
+ haml (>= 3.2.0.alpha.13)
36
+ kgio (2.11.3)
37
+ listen (1.3.1)
38
+ rb-fsevent (>= 0.9.3)
39
+ rb-inotify (>= 0.9)
40
+ rb-kqueue (>= 0.2)
41
+ mini_mime (1.0.2)
42
+ mini_portile2 (2.4.0)
43
+ minitest (5.14.1)
44
+ minitest-reporters (1.4.2)
45
+ ansi
46
+ builder
47
+ minitest (>= 5.0)
48
+ ruby-progressbar
49
+ mr-sparkle (0.3.0)
50
+ listen (~> 1.0)
51
+ rb-fsevent (>= 0.9)
52
+ rb-inotify (>= 0.8)
53
+ unicorn (>= 4.5)
54
+ mustermann (1.1.1)
55
+ ruby2_keywords (~> 0.0.1)
56
+ nokogiri (1.10.9)
57
+ mini_portile2 (~> 2.4.0)
58
+ public_suffix (4.0.5)
59
+ rack (2.2.3)
60
+ rack-protection (2.0.8.1)
61
+ rack
62
+ rack-test (1.1.0)
63
+ rack (>= 1.0, < 3)
64
+ raindrops (0.19.1)
65
+ rake (13.0.1)
66
+ rb-fsevent (0.10.4)
67
+ rb-inotify (0.10.1)
68
+ ffi (~> 1.0)
69
+ rb-kqueue (0.2.5)
70
+ ffi (>= 0.5.0)
71
+ rdiscount (2.2.0.1)
72
+ ruby-progressbar (1.10.1)
73
+ ruby2_keywords (0.0.2)
74
+ sassc (2.4.0)
75
+ ffi (~> 1.9)
76
+ sinatra (2.0.8.1)
77
+ mustermann (~> 1.0)
78
+ rack (~> 2.0)
79
+ rack-protection (= 2.0.8.1)
80
+ tilt (~> 2.0)
81
+ temple (0.8.2)
82
+ tilt (2.0.10)
83
+ unicorn (5.5.5)
84
+ kgio (~> 2.6)
85
+ raindrops (~> 0.7)
86
+ xpath (3.2.0)
87
+ nokogiri (~> 1.8)
36
88
 
37
89
  PLATFORMS
38
90
  ruby
39
91
 
40
92
  DEPENDENCIES
41
- hpricot (= 0.8.4)
93
+ byebug
94
+ capybara (~> 2.0)
95
+ minitest (~> 5.0)
96
+ minitest-reporters
97
+ mr-sparkle
42
98
  nesta!
43
- rack-test (= 0.6.1)
44
- rspec (= 1.3.0)
45
- rspec_hpricot_matchers (= 1.0)
46
- test-unit (= 1.2.3)
99
+ rake
100
+
101
+ BUNDLED WITH
102
+ 2.1.4