Commit Graph

523 Commits

Author SHA1 Message Date
jekyllbot f6f0d39b81 Merge pull request #4804 from henrywright/patch-1
Merge pull request 4804
2016-04-20 13:57:25 -07:00
jekyllbot 894b356619 Merge pull request #4754 from lexoyo/patch-1
Merge pull request 4754
2016-04-20 12:31:08 -07:00
Brian Jones 4e09375531 Added missing single quote on rsync client side command
The rsync command was missing a single quote around the --rsh='ssh -p2222' parameter.
2016-04-19 13:59:23 -04:00
Henry Wright adc6a491b9 Fixed typo
Add an apostrophe.
2016-04-17 20:39:20 +01:00
Hugo Duksis bb307bf6c1 Update Rack-Jekyll Heroku deployment blog post url
Failed to deploy to heroku by following old blog post  
but after stumbling up on https://github.com/adaoraul/rack-jekyll/issues/20
managed to do it and would like to avoid the trouble for others.
2016-04-14 18:24:46 +02:00
jekyllbot 1cf5c8abd7 Merge pull request #4734 from nsgonultas/master
Merge pull request 4734
2016-04-13 20:18:12 -07:00
Thomas Wood 1ef7653fed Fix minor code style recommendations and typos. 2016-04-12 18:59:56 +01:00
Thomas Wood 66c4ff8800 Add a where_exp filter for filtering by expression
This commit introduces a where_exp filter, which can be used as follows:
  `{{ array | where_exp: "item", "item == 10" }}`
  `{{ array | where_exp: "item", "item.field > 10" }}`
  `{{ site.posts | where_exp: "post", "post contains 'field'" }}`
  `{{ site.posts | where_exp: "post", "post.array contains 'giraffes'" }}`

This permits a variety of use cases, such as reported in: jekyll#4467,
jekyll#4385, jekyll#2787.
2016-04-12 18:52:58 +01:00
Parker Moore 64d1a81968
Fix history for #4693 & its cherry-pick into master which doesn't need a history line 2016-04-12 13:40:24 -04:00
jekyllbot 1bc8a83774 Merge pull request #4769 from lorentrogers/lr/update_collection_docs
Merge pull request 4769
2016-04-11 19:21:20 -07:00
jekyllbot 1430b6901d Merge pull request #4771 from menatankush/patch-1
Merge pull request 4771
2016-04-11 19:17:20 -07:00
jekyllbot 42b68261da Merge pull request #4775 from KrzysiekJ/jekyll-i18n_tags
Merge pull request 4775
2016-04-11 19:16:31 -07:00
Kevin Miller 6f000c3807 Made statement about data file format more explicit
The doc read “These files must be YAML files…” then lists a few
extensions that are not YAML.
2016-04-10 09:53:50 -07:00
Krzysztof Jurewicz 499339548d Add jekyll-i18n_tags plugin 2016-04-09 13:56:55 +02:00
Ankush Menat cd1d7afd59 Removed Leonard Lamprecht's website
Removed Leonard Lamprecht's website, he isn't using Jekyll for blogging anymore. Ref - https://medium.com/@leo/jekyll-medium-41a058ac2c91#.36e95k7de
2016-04-08 14:19:51 +05:30
Loren Rogers f17d0076e0 Updates documentation for collections
Closes #4687
2016-04-07 20:28:16 -04:00
jekyllbot ec105b3e54 Merge pull request #4756 from keegoid/master
Merge pull request 4756
2016-04-06 18:24:59 -07:00
Shengbin Meng 413783c4e8 Fix a typo in pagination doc 2016-04-07 00:35:24 +08:00
nscyclone 6422477c5e Fixed a typo in 'contributing'. 2016-04-05 20:55:51 +03:00
Keegan Mullaney 19a8473023 fix typo
lcoally => locally

 Changes to be committed:
	modified:   .github/CONTRIBUTING.markdown
	modified:   site/_docs/contributing.md
2016-04-05 16:49:38 +08:00
Alex Wood 7040448b75 Add entry linking to the Hawkins plugin. 2016-04-04 16:23:30 -04:00
Alex Hoyau eb4e9dd347 more form baas 2016-04-04 19:07:57 +02:00
Suriyaa Kudo 387c40f667 Set protocol of jekyllrb.com to HTTPS 2016-04-03 10:28:09 +02:00
Enes Gönültaş d576d7bfae Added an explicit rerun note 2016-03-30 17:16:25 +03:00
jekyllbot afa89d68f8 Merge pull request #4703 from jekyll/after_init_hook
Merge pull request 4703
2016-03-25 16:27:38 -07:00
chrisfinazzo 7cdc8394aa Highlight the test code 2016-03-25 15:30:53 -04:00
Yordis Prieto 5f97f928de Updating assets documentation
Just because developer are lazy and tools like this is for move forward faster, normally we don't read (it's a fact) and because of that I missed this super important sentence. At least this should help.
2016-03-24 09:52:16 -04:00
Parker Moore 84b7d9b3ac
Add Hook for :site :after_init 2016-03-23 13:14:08 -07:00
Krzysztof Jurewicz 8786163f35 Add jekyll-paspagon plugin 2016-03-23 10:00:13 +01:00
chrisfinazzo 27d617a319 Use the correct URL, Fixes #4698 2016-03-22 17:48:57 -04:00
Yanis Vieilly bbb76a39a2 Update windows.md
Fix typo on Chocolatey name
2016-03-20 23:38:45 +01:00
AndrewCz a54cedbb72 Additional repo needed for Fedora 23 Workspace
After running:

    sudo dnf install ruby ruby-devel rubygems nodejs
    sudo dnf group install "C Development and Tools"

I was unable to install Jekyll via `gem` due to an error:

    The compiler failed to generate an executable file. (RuntimeError) You have to install development tools first.

Taken from the [fedoraproject.org](https://developer.fedoraproject.org/tech/languages/ruby/gems-installation.html) Gem page:

>If you installed all the above, but the extensions would still not compile, you are probably running a Fedora image that misses `redhat-rpm-config` >package. In that case gcc compiler would complain about one of the following:

    gcc: error: conftest.c: No such file or directory
    gcc: error: /usr/lib/rpm/redhat/redhat-hardened-cc1: No such file or directory

>To solve this, simply run sudo dnf install `redhat-rpm-config`.

After doing so it downloaded, compiled and installed without a problem.
2016-03-20 05:53:13 -04:00
AndrewCz bd0cdcd4cb Add installing devel libraries to fedora
I followed the troubleshooting and came up with `sudo gem install jekyll` unable to generate the binary file because the development libraries were not installed on my system. Per [fedoraproject.org -- Gems](https://developer.fedoraproject.org/tech/languages/ruby/gems-installation.html) this is necessary to install this. The instructions mirror what is listed on that page, but using `yum` instead of `dnf` - which is understandable because RH and CentOS still use `yum`.
2016-03-20 05:08:05 -04:00
DirtyF 4618a2a8b5 replace with @parkr suggestion 2016-03-19 18:22:35 +01:00
DirtyF a81bc9773f typo 2016-03-19 12:56:44 +01:00
Frank Taillandier 68892ab693 `future` option also works for collections
Following the discussion on #4676
2016-03-19 12:45:25 +01:00
Parker Moore af47b3c1a7
Fix documentation for push/pop/shift/unshift
/cc https://github.com/jekyll/jekyll/pull/4384
2016-03-17 15:50:50 -07:00
Aaron Sky 0c73a6ded9
Update Templates Docs to include Array Filters
PR #2895 merged this in, but there isn't any documentation anywhere for this as far as I can find. All the Stack Overflow answers I could find said it was impossible to push and pop elements from a Liquid array, although that's probably because they were using Shopify's Liquid.

Fixes https://github.com/jekyll/jekyll/pull/4384
2016-03-17 15:50:18 -07:00
Parker Moore 329878c45f Update site version of contributing [ci skip] 2016-03-15 16:05:38 -07:00
Aki 15e7c30cc7 Fixes typo on collections
There was a line referring to the `render` key in `_config.yml` but the actual name of the key is `output`.

Thank you, @parkr!
2016-03-11 13:03:32 -08:00
Parker Moore 3acf4beb81 Rakefile: siteify_file should allow overrides from task [ci skip] 2016-03-10 10:21:15 -06:00
Parker Moore 0f8a3b2971 Proper contributing file in site/.
Hello, friends. I have an update for you because i derp'd. [ci skip]
2016-03-10 10:16:10 -06:00
Ben Balter a3577d953d refresh contributing doc 2016-03-10 10:09:53 -06:00
jekyllbot 9e57eb1858 Merge pull request #4628 from mejackreed/travis-sudo
Merge pull request 4628
2016-03-09 11:19:58 -08:00
Jack Reed 0f50dd1bb7 Update continuous-integration docs with sudo: false information
Updates the continuous-integration docs to provide information about the `sudo: false` behavior which can route builds to the faster container-based infrastructure. https://docs.travis-ci.com/user/workers/container-based-infrastructure/#Routing-your-build-to-container-based-infrastructure
2016-03-09 09:36:02 -05:00
Parker Moore c49d1fc1bd Collections is settled as of Jekyll v3 2016-03-08 16:42:01 -06:00
Matt Rogers faf06d1969 Merge pull request #4639 from anthonyjsmith/patch-1 2016-03-08 16:13:40 -06:00
Alex Plescan 71d510a79c Update HTMLProofer CLI command
Version 3.0 of HTMLProofer has renamed the CLI command `htmlproof` to `htmlproofer` (https://github.com/gjtorikian/html-proofer/issues/246).

This commit updates documentation to reflect this change.
2016-03-06 13:30:37 +10:00
Anthony Smith b3c6714b12 Subdirectories of _posts are no longer categories
See  #4084
2016-03-05 10:59:54 +00:00
jekyllbot b8b5cb47ec Merge pull request #4630 from dvonlehman/patch-1
Merge pull request 4630
2016-03-04 14:34:21 -08:00