jekyll 3.1.6 → 3.2.0.pre.beta1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jekyll might be problematic. Click here for more details.

Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +200 -74
  3. data/README.markdown +13 -13
  4. data/lib/jekyll.rb +12 -8
  5. data/lib/jekyll/cleaner.rb +11 -8
  6. data/lib/jekyll/collection.rb +3 -3
  7. data/lib/jekyll/commands/build.rb +15 -12
  8. data/lib/jekyll/commands/clean.rb +15 -16
  9. data/lib/jekyll/commands/doctor.rb +7 -7
  10. data/lib/jekyll/commands/help.rb +4 -3
  11. data/lib/jekyll/commands/new.rb +49 -14
  12. data/lib/jekyll/commands/new_theme.rb +33 -0
  13. data/lib/jekyll/commands/serve.rb +33 -27
  14. data/lib/jekyll/commands/serve/servlet.rb +2 -3
  15. data/lib/jekyll/configuration.rb +10 -34
  16. data/lib/jekyll/converter.rb +6 -2
  17. data/lib/jekyll/converters/markdown.rb +1 -1
  18. data/lib/jekyll/converters/markdown/kramdown_parser.rb +1 -0
  19. data/lib/jekyll/convertible.rb +6 -9
  20. data/lib/jekyll/document.rb +5 -1
  21. data/lib/jekyll/drops/document_drop.rb +7 -33
  22. data/lib/jekyll/drops/drop.rb +2 -26
  23. data/lib/jekyll/drops/jekyll_drop.rb +0 -12
  24. data/lib/jekyll/drops/site_drop.rb +1 -1
  25. data/lib/jekyll/entry_filter.rb +61 -15
  26. data/lib/jekyll/errors.rb +6 -0
  27. data/lib/jekyll/excerpt.rb +5 -2
  28. data/lib/jekyll/filters.rb +49 -8
  29. data/lib/jekyll/frontmatter_defaults.rb +2 -2
  30. data/lib/jekyll/hooks.rb +1 -0
  31. data/lib/jekyll/layout.rb +16 -1
  32. data/lib/jekyll/page.rb +1 -0
  33. data/lib/jekyll/plugin.rb +1 -1
  34. data/lib/jekyll/plugin_manager.rb +5 -5
  35. data/lib/jekyll/publisher.rb +4 -4
  36. data/lib/jekyll/readers/data_reader.rb +3 -2
  37. data/lib/jekyll/readers/layout_reader.rb +19 -3
  38. data/lib/jekyll/readers/post_reader.rb +5 -1
  39. data/lib/jekyll/regenerator.rb +5 -3
  40. data/lib/jekyll/renderer.rb +4 -6
  41. data/lib/jekyll/site.rb +47 -18
  42. data/lib/jekyll/static_file.rb +5 -1
  43. data/lib/jekyll/tags/include.rb +33 -31
  44. data/lib/jekyll/tags/link.rb +26 -0
  45. data/lib/jekyll/tags/post_url.rb +18 -8
  46. data/lib/jekyll/theme.rb +56 -0
  47. data/lib/jekyll/theme_builder.rb +117 -0
  48. data/lib/jekyll/utils.rb +2 -14
  49. data/lib/jekyll/version.rb +1 -1
  50. data/lib/site_template/_config.yml +8 -2
  51. data/lib/site_template/_includes/footer.html +3 -3
  52. data/lib/site_template/_includes/head.html +2 -2
  53. data/lib/site_template/_includes/header.html +3 -3
  54. data/lib/site_template/_layouts/default.html +3 -3
  55. data/lib/site_template/_layouts/page.html +1 -1
  56. data/lib/site_template/_layouts/post.html +1 -1
  57. data/lib/site_template/_sass/_base.scss +11 -17
  58. data/lib/site_template/index.html +1 -1
  59. data/lib/theme_template/CODE_OF_CONDUCT.md.erb +74 -0
  60. data/lib/theme_template/Gemfile +2 -0
  61. data/lib/theme_template/LICENSE.txt.erb +21 -0
  62. data/lib/theme_template/README.md.erb +46 -0
  63. data/lib/theme_template/Rakefile.erb +74 -0
  64. data/lib/theme_template/example/_config.yml.erb +1 -0
  65. data/lib/theme_template/example/_post.md +13 -0
  66. data/lib/theme_template/example/index.html +14 -0
  67. data/lib/theme_template/example/style.scss +7 -0
  68. data/lib/theme_template/theme.gemspec.erb +22 -0
  69. metadata +34 -7
  70. data/lib/jekyll/drops/excerpt_drop.rb +0 -15
@@ -2,12 +2,12 @@
2
2
 
3
3
  <div class="wrapper">
4
4
 
5
- <h2 class="footer-heading">{{ site.title }}</h2>
5
+ <h2 class="footer-heading">{{ site.title | escape }}</h2>
6
6
 
7
7
  <div class="footer-col-wrapper">
8
8
  <div class="footer-col footer-col-1">
9
9
  <ul class="contact-list">
10
- <li>{{ site.title }}</li>
10
+ <li>{{ site.title | escape }}</li>
11
11
  <li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
12
12
  </ul>
13
13
  </div>
@@ -29,7 +29,7 @@
29
29
  </div>
30
30
 
31
31
  <div class="footer-col footer-col-3">
32
- <p>{{ site.description }}</p>
32
+ <p>{{ site.description | escape }}</p>
33
33
  </div>
34
34
  </div>
35
35
 
@@ -4,9 +4,9 @@
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1">
5
5
 
6
6
  <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
7
- <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
7
+ <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description | escape }}{% endif %}">
8
8
 
9
9
  <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
10
10
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
11
- <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
11
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
12
12
  </head>
@@ -1,8 +1,8 @@
1
- <header class="site-header">
1
+ <header class="site-header" role="banner">
2
2
 
3
3
  <div class="wrapper">
4
4
 
5
- <a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
5
+ <a class="site-title" href="{{ site.baseurl }}/">{{ site.title | escape }}</a>
6
6
 
7
7
  <nav class="site-nav">
8
8
  <a href="#" class="menu-icon">
@@ -16,7 +16,7 @@
16
16
  <div class="trigger">
17
17
  {% for my_page in site.pages %}
18
18
  {% if my_page.title %}
19
- <a class="page-link" href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a>
19
+ <a class="page-link" href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title | escape }}</a>
20
20
  {% endif %}
21
21
  {% endfor %}
22
22
  </div>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <html>
2
+ <html lang="en">
3
3
 
4
4
  {% include head.html %}
5
5
 
@@ -7,11 +7,11 @@
7
7
 
8
8
  {% include header.html %}
9
9
 
10
- <div class="page-content">
10
+ <main class="page-content" aria-label="Content">
11
11
  <div class="wrapper">
12
12
  {{ content }}
13
13
  </div>
14
- </div>
14
+ </main>
15
15
 
16
16
  {% include footer.html %}
17
17
 
@@ -4,7 +4,7 @@ layout: default
4
4
  <article class="post">
5
5
 
6
6
  <header class="post-header">
7
- <h1 class="post-title">{{ page.title }}</h1>
7
+ <h1 class="post-title">{{ page.title | escape }}</h1>
8
8
  </header>
9
9
 
10
10
  <div class="post-content">
@@ -4,7 +4,7 @@ layout: default
4
4
  <article class="post" itemscope itemtype="http://schema.org/BlogPosting">
5
5
 
6
6
  <header class="post-header">
7
- <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
7
+ <h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
8
8
  <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
9
9
  </header>
10
10
 
@@ -177,13 +177,10 @@ pre {
177
177
  /**
178
178
  * Clearfix
179
179
  */
180
- %clearfix {
181
-
182
- &:after {
183
- content: "";
184
- display: table;
185
- clear: both;
186
- }
180
+ %clearfix:after {
181
+ content: "";
182
+ display: table;
183
+ clear: both;
187
184
  }
188
185
 
189
186
 
@@ -191,16 +188,13 @@ pre {
191
188
  /**
192
189
  * Icons
193
190
  */
194
- .icon {
195
-
196
- > svg {
197
- display: inline-block;
198
- width: 16px;
199
- height: 16px;
200
- vertical-align: middle;
191
+ .icon > svg {
192
+ display: inline-block;
193
+ width: 16px;
194
+ height: 16px;
195
+ vertical-align: middle;
201
196
 
202
- path {
203
- fill: $grey-color;
204
- }
197
+ path {
198
+ fill: $grey-color;
205
199
  }
206
200
  }
@@ -12,7 +12,7 @@ layout: default
12
12
  <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
13
13
 
14
14
  <h2>
15
- <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
15
+ <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a>
16
16
  </h2>
17
17
  </li>
18
18
  {% endfor %}
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at <%= user_email %>. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
@@ -0,0 +1,2 @@
1
+ source "https://rubygems.org"
2
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 <%= user_name %>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,46 @@
1
+ # <%= theme_name %>
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's Gemfile:
10
+
11
+ ```ruby
12
+ gem <%= theme_name.inspect %>
13
+ ```
14
+
15
+ And add this line to your Jekyll site:
16
+
17
+ ```yaml
18
+ theme: <%= theme_name %>
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install <%= theme_name %>
28
+
29
+ ## Usage
30
+
31
+ TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Development
38
+
39
+ To set up your environment to develop this theme, run `bundle install`.
40
+
41
+ To test your theme, run `bundle exec rake preview` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme and the contents of the `example/` directory. As you make modifications to your theme and to the example site, your site will regenerate and you should see the changes in the browser after a refresh.
42
+
43
+ ## License
44
+
45
+ The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
46
+
@@ -0,0 +1,74 @@
1
+ require "bundler/gem_tasks"
2
+ require "jekyll"
3
+ require "listen"
4
+
5
+ def listen_ignore_paths(base, options)
6
+ [
7
+ /_config\.ya?ml/,
8
+ /_site/,
9
+ /\.jekyll-metadata/
10
+ ]
11
+ end
12
+
13
+ def listen_handler(base, options)
14
+ site = Jekyll::Site.new(options)
15
+ Jekyll::Command.process_site(site)
16
+ proc do |modified, added, removed|
17
+ t = Time.now
18
+ c = modified + added + removed
19
+ n = c.length
20
+ relative_paths = c.map{ |p| Pathname.new(p).relative_path_from(base).to_s }
21
+ print Jekyll.logger.message("Regenerating:", "#{relative_paths.join(", ")} changed... ")
22
+ begin
23
+ Jekyll::Command.process_site(site)
24
+ puts "regenerated in #{Time.now - t} seconds."
25
+ rescue => e
26
+ puts "error:"
27
+ Jekyll.logger.warn "Error:", e.message
28
+ Jekyll.logger.warn "Error:", "Run jekyll build --trace for more information."
29
+ end
30
+ end
31
+ end
32
+
33
+ task :preview do
34
+ base = Pathname.new('.').expand_path
35
+ options = {
36
+ "source" => base.join('example').to_s,
37
+ "destination" => base.join('example/_site').to_s,
38
+ "force_polling" => false,
39
+ "serving" => true,
40
+ "theme" => <%= theme_name.inspect %>
41
+ }
42
+
43
+ options = Jekyll.configuration(options)
44
+
45
+ ENV["LISTEN_GEM_DEBUGGING"] = "1"
46
+ listener = Listen.to(
47
+ base.join("_includes"),
48
+ base.join("_layouts"),
49
+ base.join("_sass"),
50
+ options["source"],
51
+ :ignore => listen_ignore_paths(base, options),
52
+ :force_polling => options['force_polling'],
53
+ &(listen_handler(base, options))
54
+ )
55
+
56
+ begin
57
+ listener.start
58
+ Jekyll.logger.info "Auto-regeneration:", "enabled for '#{options["source"]}'"
59
+
60
+ unless options['serving']
61
+ trap("INT") do
62
+ listener.stop
63
+ puts " Halting auto-regeneration."
64
+ exit 0
65
+ end
66
+
67
+ loop { sleep 1000 }
68
+ end
69
+ rescue ThreadError
70
+ # You pressed Ctrl-C, oh my!
71
+ end
72
+
73
+ Jekyll::Commands::Serve.process(options)
74
+ end
@@ -0,0 +1 @@
1
+ theme: <%= theme_name %>
@@ -0,0 +1,13 @@
1
+ ---
2
+ # Specify a layout from your theme!
3
+ # This will be the layout users specify for their posts.
4
+ ---
5
+
6
+ Eos eu docendi tractatos sapientem, brute option menandri in vix, quando vivendo accommodare te ius. Nec melius fastidii constituam id, viderer theophrastus ad sit, hinc semper periculis cum id. Noluisse postulant assentior est in, no choro sadipscing repudiandae vix. Vis in euismod delenit dignissim. Ex quod nostrum sit, suas decore animal id ius, nobis solet detracto quo te.
7
+
8
+ {% comment %}
9
+ Might you have an include in your theme? Why not try it here!
10
+ {% include my-themes-great-include.html %}
11
+ {% endcomment %}
12
+
13
+ No laudem altera adolescens has, volumus lucilius eum no. Eam ei nulla audiam efficiantur. Suas affert per no, ei tale nibh sea. Sea ne magna harum, in denique scriptorem sea, cetero alienum tibique ei eos. Labores persequeris referrentur eos ei.
@@ -0,0 +1,14 @@
1
+ ---
2
+ # Specify a layout from your theme!
3
+ ---
4
+
5
+ Lorem ipsum dolor sit amet, quo id prima corrumpit pertinacia, id ius dolor dolores, an veri pertinax explicari mea. Agam solum et qui, his id ludus graeco adipiscing. Duis theophrastus nam in, at his vidisse atomorum. Tantas gloriatur scripserit ne eos. Est wisi tempor habemus at, ei graeco dissentiet eos. Ne usu aliquip sanctus conceptam, te vis ignota animal, modus latine contentiones ius te.
6
+
7
+ {% for post in site.posts %}
8
+ <h2>{{ post.title }}</h2>
9
+ <blockquote>{{ post.excerpt }}</blockquote>
10
+ {% endfor %}
11
+
12
+ Te falli veritus sea, at molestiae scribentur deterruisset vix, et mea zril phaedrum vulputate. No cum dicit consulatu. Ut has nostro noluisse expetendis, te pro quaeque disputando, eu sed summo omnes. Eos at tale aperiam, usu cu propriae quaestio constituto, sed aperiam erroribus temporibus an.
13
+
14
+ Quo eu liber mediocritatem, vix an delectus eleifend, iuvaret suscipit ei vel. Partem invenire per an, mea postulant dissentias eu, ius tantas audire nominavi eu. Dicunt tritani veritus ex vis, mei in case sententiae. At exerci democritum nam, cu lobortis iracundia mei. Alia eligendi consectetuer eu sed, paulo docendi noluisse sit ex.
@@ -0,0 +1,7 @@
1
+ ---
2
+ ---
3
+
4
+ // Here, you can test out the Sass/SCSS that you include in your theme.
5
+ // Simply `@import` the necessary file(s) to get the proper styles on the site.
6
+ // E.g.:
7
+ // @import "a-file-from-my-theme";
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = <%= theme_name.inspect %>
5
+ spec.version = "0.1.0"
6
+ spec.authors = [<%= user_name.inspect %>]
7
+ spec.email = [<%= user_email.inspect %>]
8
+
9
+ spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.}
10
+ spec.homepage = "TODO: Put your gem's website or public repo URL here."
11
+ spec.license = "MIT"
12
+
13
+ spec.metadata["plugin_type"] = "theme"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(exe|<%= theme_directories.join("|") %>)/}) }
16
+ spec.bindir = "exe"
17
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+
19
+ spec.add_development_dependency "jekyll", "~> <%= jekyll_pessimistic_version %>"
20
+ spec.add_development_dependency "bundler", "~> 1.12"
21
+ spec.add_development_dependency "rake", "~> 10.0"
22
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.6
4
+ version: 3.2.0.pre.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Preston-Werner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-19 00:00:00.000000000 Z
11
+ date: 2016-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: liquid
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '0.1'
75
+ version: '1.0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '0.1'
82
+ version: '1.0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rouge
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -122,6 +122,20 @@ dependencies:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: '1.1'
125
+ - !ruby/object:Gem::Dependency
126
+ name: pathutil
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '0.9'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '0.9'
125
139
  description: Jekyll is a simple, blog aware, static site generator.
126
140
  email: tom@mojombo.com
127
141
  executables:
@@ -144,6 +158,7 @@ files:
144
158
  - lib/jekyll/commands/doctor.rb
145
159
  - lib/jekyll/commands/help.rb
146
160
  - lib/jekyll/commands/new.rb
161
+ - lib/jekyll/commands/new_theme.rb
147
162
  - lib/jekyll/commands/serve.rb
148
163
  - lib/jekyll/commands/serve/servlet.rb
149
164
  - lib/jekyll/configuration.rb
@@ -160,7 +175,6 @@ files:
160
175
  - lib/jekyll/drops/collection_drop.rb
161
176
  - lib/jekyll/drops/document_drop.rb
162
177
  - lib/jekyll/drops/drop.rb
163
- - lib/jekyll/drops/excerpt_drop.rb
164
178
  - lib/jekyll/drops/jekyll_drop.rb
165
179
  - lib/jekyll/drops/site_drop.rb
166
180
  - lib/jekyll/drops/unified_payload_drop.rb
@@ -199,7 +213,10 @@ files:
199
213
  - lib/jekyll/stevenson.rb
200
214
  - lib/jekyll/tags/highlight.rb
201
215
  - lib/jekyll/tags/include.rb
216
+ - lib/jekyll/tags/link.rb
202
217
  - lib/jekyll/tags/post_url.rb
218
+ - lib/jekyll/theme.rb
219
+ - lib/jekyll/theme_builder.rb
203
220
  - lib/jekyll/url.rb
204
221
  - lib/jekyll/utils.rb
205
222
  - lib/jekyll/utils/ansi.rb
@@ -225,6 +242,16 @@ files:
225
242
  - lib/site_template/css/main.scss
226
243
  - lib/site_template/feed.xml
227
244
  - lib/site_template/index.html
245
+ - lib/theme_template/CODE_OF_CONDUCT.md.erb
246
+ - lib/theme_template/Gemfile
247
+ - lib/theme_template/LICENSE.txt.erb
248
+ - lib/theme_template/README.md.erb
249
+ - lib/theme_template/Rakefile.erb
250
+ - lib/theme_template/example/_config.yml.erb
251
+ - lib/theme_template/example/_post.md
252
+ - lib/theme_template/example/index.html
253
+ - lib/theme_template/example/style.scss
254
+ - lib/theme_template/theme.gemspec.erb
228
255
  homepage: https://github.com/jekyll/jekyll
229
256
  licenses:
230
257
  - MIT
@@ -241,9 +268,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
241
268
  version: 2.0.0
242
269
  required_rubygems_version: !ruby/object:Gem::Requirement
243
270
  requirements:
244
- - - ">="
271
+ - - ">"
245
272
  - !ruby/object:Gem::Version
246
- version: '0'
273
+ version: 1.3.1
247
274
  requirements: []
248
275
  rubyforge_project:
249
276
  rubygems_version: 2.5.1