jekyll_pages_api 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CONTRIBUTING.md +22 -0
- data/Gemfile +4 -0
- data/LICENSE.md +31 -0
- data/README.md +37 -0
- data/Rakefile +2 -0
- data/jekyll_pages_api.gemspec +26 -0
- data/lib/jekyll/site.rb +17 -0
- data/lib/jekyll_pages_api/filters.rb +38 -0
- data/lib/jekyll_pages_api/generator.rb +44 -0
- data/lib/jekyll_pages_api/page.rb +44 -0
- data/lib/jekyll_pages_api/page_without_a_file.rb +10 -0
- data/lib/jekyll_pages_api/version.rb +3 -0
- data/lib/jekyll_pages_api.rb +2 -0
- data/spec/filters_spec.rb +7 -0
- data/spec/integration_spec.rb +62 -0
- data/spec/page_spec.rb +19 -0
- data/spec/site/.gitignore +3 -0
- data/spec/site/Gemfile +7 -0
- data/spec/site/_config.yml +14 -0
- data/spec/site/_includes/footer.html +55 -0
- data/spec/site/_includes/head.html +12 -0
- data/spec/site/_includes/header.html +27 -0
- data/spec/site/_layouts/default.html +20 -0
- data/spec/site/_layouts/page.html +14 -0
- data/spec/site/_layouts/post.html +15 -0
- data/spec/site/_posts/2015-01-26-welcome-to-jekyll.markdown +25 -0
- data/spec/site/_sass/_base.scss +204 -0
- data/spec/site/_sass/_layout.scss +236 -0
- data/spec/site/_sass/_syntax-highlighting.scss +67 -0
- data/spec/site/about.md +11 -0
- data/spec/site/css/main.scss +52 -0
- data/spec/site/feed.xml +30 -0
- data/spec/site/index.html +23 -0
- data/spec/spec_helper.rb +92 -0
- data/spec/support/shell.rb +6 -0
- metadata +175 -0
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause this
|
4
|
+
# file to always be loaded, without a need to explicitly require it in any files.
|
5
|
+
#
|
6
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
7
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
8
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
9
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
10
|
+
# a separate helper file that requires the additional dependencies and performs
|
11
|
+
# the additional setup, and require it from the spec files that actually need it.
|
12
|
+
#
|
13
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
14
|
+
# users commonly want.
|
15
|
+
#
|
16
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
17
|
+
|
18
|
+
require_relative '../lib/jekyll_pages_api'
|
19
|
+
|
20
|
+
RSpec.configure do |config|
|
21
|
+
# rspec-expectations config goes here. You can use an alternate
|
22
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
23
|
+
# assertions if you prefer.
|
24
|
+
config.expect_with :rspec do |expectations|
|
25
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
26
|
+
# and `failure_message` of custom matchers include text for helper methods
|
27
|
+
# defined using `chain`, e.g.:
|
28
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
29
|
+
# # => "be bigger than 2 and smaller than 4"
|
30
|
+
# ...rather than:
|
31
|
+
# # => "be bigger than 2"
|
32
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
33
|
+
end
|
34
|
+
|
35
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
36
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
37
|
+
config.mock_with :rspec do |mocks|
|
38
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
39
|
+
# a real object. This is generally recommended, and will default to
|
40
|
+
# `true` in RSpec 4.
|
41
|
+
mocks.verify_partial_doubles = true
|
42
|
+
end
|
43
|
+
|
44
|
+
# The settings below are suggested to provide a good initial experience
|
45
|
+
# with RSpec, but feel free to customize to your heart's content.
|
46
|
+
=begin
|
47
|
+
# These two settings work together to allow you to limit a spec run
|
48
|
+
# to individual examples or groups you care about by tagging them with
|
49
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
50
|
+
# get run.
|
51
|
+
config.filter_run :focus
|
52
|
+
config.run_all_when_everything_filtered = true
|
53
|
+
|
54
|
+
# Limits the available syntax to the non-monkey patched syntax that is recommended.
|
55
|
+
# For more details, see:
|
56
|
+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
57
|
+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
58
|
+
# - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
|
59
|
+
config.disable_monkey_patching!
|
60
|
+
|
61
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
62
|
+
# be too noisy due to issues in dependencies.
|
63
|
+
config.warnings = true
|
64
|
+
|
65
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
66
|
+
# file, and it's useful to allow more verbose output when running an
|
67
|
+
# individual spec file.
|
68
|
+
if config.files_to_run.one?
|
69
|
+
# Use the documentation formatter for detailed output,
|
70
|
+
# unless a formatter has already been configured
|
71
|
+
# (e.g. via a command-line flag).
|
72
|
+
config.default_formatter = 'doc'
|
73
|
+
end
|
74
|
+
|
75
|
+
# Print the 10 slowest examples and example groups at the
|
76
|
+
# end of the spec run, to help surface which specs are running
|
77
|
+
# particularly slow.
|
78
|
+
config.profile_examples = 10
|
79
|
+
|
80
|
+
# Run specs in random order to surface order dependencies. If you find an
|
81
|
+
# order dependency and want to debug it, you can fix the order by providing
|
82
|
+
# the seed, which is printed after each run.
|
83
|
+
# --seed 1234
|
84
|
+
config.order = :random
|
85
|
+
|
86
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
87
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
88
|
+
# test failures related to randomization by passing the same `--seed` value
|
89
|
+
# as the one that triggered the failure.
|
90
|
+
Kernel.srand config.seed
|
91
|
+
=end
|
92
|
+
end
|
metadata
ADDED
@@ -0,0 +1,175 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll_pages_api
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Aidan Feldman
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: htmlentities
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.7'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.7'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- aidan.feldman@gsa.gov
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- CONTRIBUTING.md
|
94
|
+
- Gemfile
|
95
|
+
- LICENSE.md
|
96
|
+
- README.md
|
97
|
+
- Rakefile
|
98
|
+
- jekyll_pages_api.gemspec
|
99
|
+
- lib/jekyll/site.rb
|
100
|
+
- lib/jekyll_pages_api.rb
|
101
|
+
- lib/jekyll_pages_api/filters.rb
|
102
|
+
- lib/jekyll_pages_api/generator.rb
|
103
|
+
- lib/jekyll_pages_api/page.rb
|
104
|
+
- lib/jekyll_pages_api/page_without_a_file.rb
|
105
|
+
- lib/jekyll_pages_api/version.rb
|
106
|
+
- spec/filters_spec.rb
|
107
|
+
- spec/integration_spec.rb
|
108
|
+
- spec/page_spec.rb
|
109
|
+
- spec/site/.gitignore
|
110
|
+
- spec/site/Gemfile
|
111
|
+
- spec/site/_config.yml
|
112
|
+
- spec/site/_includes/footer.html
|
113
|
+
- spec/site/_includes/head.html
|
114
|
+
- spec/site/_includes/header.html
|
115
|
+
- spec/site/_layouts/default.html
|
116
|
+
- spec/site/_layouts/page.html
|
117
|
+
- spec/site/_layouts/post.html
|
118
|
+
- spec/site/_posts/2015-01-26-welcome-to-jekyll.markdown
|
119
|
+
- spec/site/_sass/_base.scss
|
120
|
+
- spec/site/_sass/_layout.scss
|
121
|
+
- spec/site/_sass/_syntax-highlighting.scss
|
122
|
+
- spec/site/about.md
|
123
|
+
- spec/site/css/main.scss
|
124
|
+
- spec/site/feed.xml
|
125
|
+
- spec/site/index.html
|
126
|
+
- spec/spec_helper.rb
|
127
|
+
- spec/support/shell.rb
|
128
|
+
homepage: https://github.com/18F/jekyll_pages_api
|
129
|
+
licenses:
|
130
|
+
- CC0-1.0
|
131
|
+
metadata: {}
|
132
|
+
post_install_message:
|
133
|
+
rdoc_options: []
|
134
|
+
require_paths:
|
135
|
+
- lib
|
136
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
requirements: []
|
147
|
+
rubyforge_project:
|
148
|
+
rubygems_version: 2.4.5
|
149
|
+
signing_key:
|
150
|
+
specification_version: 4
|
151
|
+
summary: A Jekyll Plugin that generates a JSON file with data for all the Pages in
|
152
|
+
your Site.
|
153
|
+
test_files:
|
154
|
+
- spec/filters_spec.rb
|
155
|
+
- spec/integration_spec.rb
|
156
|
+
- spec/page_spec.rb
|
157
|
+
- spec/site/.gitignore
|
158
|
+
- spec/site/Gemfile
|
159
|
+
- spec/site/_config.yml
|
160
|
+
- spec/site/_includes/footer.html
|
161
|
+
- spec/site/_includes/head.html
|
162
|
+
- spec/site/_includes/header.html
|
163
|
+
- spec/site/_layouts/default.html
|
164
|
+
- spec/site/_layouts/page.html
|
165
|
+
- spec/site/_layouts/post.html
|
166
|
+
- spec/site/_posts/2015-01-26-welcome-to-jekyll.markdown
|
167
|
+
- spec/site/_sass/_base.scss
|
168
|
+
- spec/site/_sass/_layout.scss
|
169
|
+
- spec/site/_sass/_syntax-highlighting.scss
|
170
|
+
- spec/site/about.md
|
171
|
+
- spec/site/css/main.scss
|
172
|
+
- spec/site/feed.xml
|
173
|
+
- spec/site/index.html
|
174
|
+
- spec/spec_helper.rb
|
175
|
+
- spec/support/shell.rb
|