middleman-pagegroups 1.0.0

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.
Files changed (56) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/CHANGELOG.md +6 -0
  4. data/Gemfile +18 -0
  5. data/LICENSE.md +22 -0
  6. data/README.md +87 -0
  7. data/Rakefile +10 -0
  8. data/bin/middleman-pagegroups +108 -0
  9. data/documentation_project/.gitignore +25 -0
  10. data/documentation_project/Gemfile +18 -0
  11. data/documentation_project/README.md +13 -0
  12. data/documentation_project/config.rb +109 -0
  13. data/documentation_project/source/documentation/10_concepts.html.md.erb +111 -0
  14. data/documentation_project/source/documentation/20_directory_organization.html.md.erb +85 -0
  15. data/documentation_project/source/documentation/30_frontmatter.html.md.erb +70 -0
  16. data/documentation_project/source/documentation/40_resources.html.md.erb +79 -0
  17. data/documentation_project/source/documentation/50_helpers.html.md.erb +252 -0
  18. data/documentation_project/source/documentation/60_sample_partials.html.md.erb +55 -0
  19. data/documentation_project/source/documentation/70_sample_layouts.html.md.erb +92 -0
  20. data/documentation_project/source/documentation/80_config.html.md.erb +98 -0
  21. data/documentation_project/source/documentation/index.html.md.erb +32 -0
  22. data/documentation_project/source/documentation/ovum.html.md.erb +27 -0
  23. data/documentation_project/source/fonts/font-awesome/FontAwesome.otf +0 -0
  24. data/documentation_project/source/fonts/font-awesome/fontawesome-webfont.eot +0 -0
  25. data/documentation_project/source/fonts/font-awesome/fontawesome-webfont.svg +655 -0
  26. data/documentation_project/source/fonts/font-awesome/fontawesome-webfont.ttf +0 -0
  27. data/documentation_project/source/fonts/font-awesome/fontawesome-webfont.woff +0 -0
  28. data/documentation_project/source/fonts/font-awesome/fontawesome-webfont.woff2 +0 -0
  29. data/documentation_project/source/images/middleman-pagegroups-small.png +0 -0
  30. data/documentation_project/source/images/middleman-pagegroups.png +0 -0
  31. data/documentation_project/source/index.html.md.erb +39 -0
  32. data/documentation_project/source/javascripts/all.js +1 -0
  33. data/documentation_project/source/layouts/layout.haml +11 -0
  34. data/documentation_project/source/layouts/template-logo-large.haml +25 -0
  35. data/documentation_project/source/layouts/template-logo-medium.haml +26 -0
  36. data/documentation_project/source/layouts/template-logo-small.haml +26 -0
  37. data/documentation_project/source/license.html.md.erb +29 -0
  38. data/documentation_project/source/partials/_nav_breadcrumbs.haml +11 -0
  39. data/documentation_project/source/partials/_nav_breadcrumbs_alt.haml +15 -0
  40. data/documentation_project/source/partials/_nav_brethren.haml +18 -0
  41. data/documentation_project/source/partials/_nav_brethren_index.haml +14 -0
  42. data/documentation_project/source/partials/_nav_legitimate_children.haml +16 -0
  43. data/documentation_project/source/partials/_nav_prev_next.haml +21 -0
  44. data/documentation_project/source/partials/_nav_toc_index.haml +21 -0
  45. data/documentation_project/source/stylesheets/_github.scss +61 -0
  46. data/documentation_project/source/stylesheets/_middlemac_minimal.scss +668 -0
  47. data/documentation_project/source/stylesheets/_normalize.scss +374 -0
  48. data/documentation_project/source/stylesheets/breadcrumb-separator-light.png +0 -0
  49. data/documentation_project/source/stylesheets/style.css.scss +3 -0
  50. data/documentation_project/source/toc.html.md.erb +26 -0
  51. data/lib/middleman-pagegroups/extension.rb +431 -0
  52. data/lib/middleman-pagegroups/partials.rb +173 -0
  53. data/lib/middleman-pagegroups/version.rb +5 -0
  54. data/lib/middleman-pagegroups.rb +6 -0
  55. data/middleman-pagegroups.gemspec +26 -0
  56. metadata +140 -0
metadata ADDED
@@ -0,0 +1,140 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: middleman-pagegroups
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Jim Derry
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: middleman-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.1'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 4.1.6
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '4.1'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 4.1.6
33
+ - !ruby/object:Gem::Dependency
34
+ name: middleman-cli
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '4.1'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 4.1.6
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '4.1'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 4.1.6
53
+ description: Provides logical page groups and easy navigation for Middleman projects.
54
+ email:
55
+ - balthisar@gmail.com
56
+ executables:
57
+ - middleman-pagegroups
58
+ extensions: []
59
+ extra_rdoc_files: []
60
+ files:
61
+ - ".gitignore"
62
+ - CHANGELOG.md
63
+ - Gemfile
64
+ - LICENSE.md
65
+ - README.md
66
+ - Rakefile
67
+ - bin/middleman-pagegroups
68
+ - documentation_project/.gitignore
69
+ - documentation_project/Gemfile
70
+ - documentation_project/README.md
71
+ - documentation_project/config.rb
72
+ - documentation_project/source/documentation/10_concepts.html.md.erb
73
+ - documentation_project/source/documentation/20_directory_organization.html.md.erb
74
+ - documentation_project/source/documentation/30_frontmatter.html.md.erb
75
+ - documentation_project/source/documentation/40_resources.html.md.erb
76
+ - documentation_project/source/documentation/50_helpers.html.md.erb
77
+ - documentation_project/source/documentation/60_sample_partials.html.md.erb
78
+ - documentation_project/source/documentation/70_sample_layouts.html.md.erb
79
+ - documentation_project/source/documentation/80_config.html.md.erb
80
+ - documentation_project/source/documentation/index.html.md.erb
81
+ - documentation_project/source/documentation/ovum.html.md.erb
82
+ - documentation_project/source/fonts/font-awesome/FontAwesome.otf
83
+ - documentation_project/source/fonts/font-awesome/fontawesome-webfont.eot
84
+ - documentation_project/source/fonts/font-awesome/fontawesome-webfont.svg
85
+ - documentation_project/source/fonts/font-awesome/fontawesome-webfont.ttf
86
+ - documentation_project/source/fonts/font-awesome/fontawesome-webfont.woff
87
+ - documentation_project/source/fonts/font-awesome/fontawesome-webfont.woff2
88
+ - documentation_project/source/images/middleman-pagegroups-small.png
89
+ - documentation_project/source/images/middleman-pagegroups.png
90
+ - documentation_project/source/index.html.md.erb
91
+ - documentation_project/source/javascripts/all.js
92
+ - documentation_project/source/layouts/layout.haml
93
+ - documentation_project/source/layouts/template-logo-large.haml
94
+ - documentation_project/source/layouts/template-logo-medium.haml
95
+ - documentation_project/source/layouts/template-logo-small.haml
96
+ - documentation_project/source/license.html.md.erb
97
+ - documentation_project/source/partials/_nav_breadcrumbs.haml
98
+ - documentation_project/source/partials/_nav_breadcrumbs_alt.haml
99
+ - documentation_project/source/partials/_nav_brethren.haml
100
+ - documentation_project/source/partials/_nav_brethren_index.haml
101
+ - documentation_project/source/partials/_nav_legitimate_children.haml
102
+ - documentation_project/source/partials/_nav_prev_next.haml
103
+ - documentation_project/source/partials/_nav_toc_index.haml
104
+ - documentation_project/source/stylesheets/_github.scss
105
+ - documentation_project/source/stylesheets/_middlemac_minimal.scss
106
+ - documentation_project/source/stylesheets/_normalize.scss
107
+ - documentation_project/source/stylesheets/breadcrumb-separator-light.png
108
+ - documentation_project/source/stylesheets/style.css.scss
109
+ - documentation_project/source/toc.html.md.erb
110
+ - lib/middleman-pagegroups.rb
111
+ - lib/middleman-pagegroups/extension.rb
112
+ - lib/middleman-pagegroups/partials.rb
113
+ - lib/middleman-pagegroups/version.rb
114
+ - middleman-pagegroups.gemspec
115
+ homepage: https://github.com/middlemac/middleman-pagegroups
116
+ licenses:
117
+ - MIT
118
+ metadata: {}
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ requirements: []
134
+ rubyforge_project:
135
+ rubygems_version: 2.4.6
136
+ signing_key:
137
+ specification_version: 4
138
+ summary: Provides logical page groups and easy navigation for Middleman projects.
139
+ test_files: []
140
+ has_rdoc: