90865d5fc1 
								
							 
						 
						
							
							
								
								Fix   #4082 : Allow users to use .htm and .xhtml (XHTML5.)  
							
							
							
						 
						
							2015-11-18 16:02:03 -06:00  
				
					
						
							
							
								 
						
							
								a168edae45 
								
							 
						 
						
							
							
								
								Add Utils.safe_glob method  
							
							... 
							
							
							
							which works the same way as Dir.glob but seperating the input
into two parts ('dir' + '/' + 'pattern') to make sure
the first part('dir') does not act as a pattern. 
							
						 
						
							2015-11-19 00:46:46 +13:00  
				
					
						
							
							
								 
						
							
								6a98ab2a15 
								
							 
						 
						
							
							
								
								Make `:title` cased for backwards compability and add `:slug` for uncased usage.  
							
							
							
						 
						
							2015-11-18 10:43:13 +08:00  
				
					
						
							
							
								 
						
							
								db6103bdee 
								
							 
						 
						
							
							
								
								Document: only superdirectories of the collection are categories  
							
							
							
						 
						
							2015-11-04 15:18:02 +07:00  
				
					
						
							
							
								 
						
							
								9d1641f163 
								
							 
						 
						
							
							
								
								Fix   #3371  - kramdown:syntax_highlighter should automatically take value of highlighter  
							
							
							
						 
						
							2015-10-31 23:58:49 +00:00  
				
					
						
							
							
								 
						
							
								3b55bd1a51 
								
							 
						 
						
							
							
								
								Trim trailing whitespace.  
							
							... 
							
							
							
							[ci skip] 
							
						 
						
							2015-10-30 21:57:14 +02:00  
				
					
						
							
							
								 
						
							
								71f4383d18 
								
							 
						 
						
							
							
								
								Fix   #4075 : Make sure that .jekyll-metadata is not generated when not needed.  
							
							
							
						 
						
							2015-10-29 15:44:38 -05:00  
				
					
						
							
							
								 
						
							
								dfae4669e4 
								
							 
						 
						
							
							
								
								AUTOMATIC: Whitespace stripped.  
							
							
							
						 
						
							2015-10-29 15:43:55 -05:00  
				
					
						
							
							
								 
						
							
								e5f26b5a36 
								
							 
						 
						
							
							
								
								Fix test warnings when doing rake {test,spec} or script/test  
							
							
							
						 
						
							2015-10-29 15:18:19 -05:00  
				
					
						
							
							
								 
						
							
								cf71c563ab 
								
							 
						 
						
							
							
								
								Handle empty config files  
							
							... 
							
							
							
							SafeYAML.load_file returns `false` when processing empty files so we
convert this into an empty hash for further processing.
fixes  #4030  
							
						 
						
							2015-10-28 22:31:42 +01:00  
				
					
						
							
							
								 
						
							
								2a040fd527 
								
							 
						 
						
							
							
								
								Rename incremental regeneration flag  
							
							... 
							
							
							
							Rename from `full_rebuild` to disable, to `incremental` to enable 
							
						 
						
							2015-10-26 14:20:44 -07:00  
				
					
						
							
							
								 
						
							
								d9b12bc090 
								
							 
						 
						
							
							
								
								Disable incremental regeneration by default in Jekyll 3.0  
							
							... 
							
							
							
							Disable the feature as it's still not 100% working 100% of the time. Feature
can be re-enabled by specifying `full_rebuild: false` in the configuration 
							
						 
						
							2015-10-26 13:37:47 -07:00  
				
					
						
							
							
								 
						
							
								b89f943bf2 
								
							 
						 
						
							
							
								
								collections: posts as collection  
							
							
							
						 
						
							2015-10-26 00:29:14 -07:00  
				
					
						
							
							
								 
						
							
								84089f9ebe 
								
							 
						 
						
							
							
								
								Merge pull request  #4033  from jekyll/ignore-more-bundler-directories  
							
							... 
							
							
							
							Ignore `.bundle` when generating test coverage 
							
						 
						
							2015-10-16 06:10:35 -05:00  
				
					
						
							
							
								 
						
							
								ff504a39ba 
								
							 
						 
						
							
							
								
								Ignore `.bundle` when generating test coverage  
							
							... 
							
							
							
							Fix the code coverage reporting when using `.bundle` to store my gems in
by having SimpleCov ignore that directory. Use of `.bundle` to store my
gems consolidates things since since that directory also holds the
bundler config file. It also keeps a `vendor` directory out of the
project tree for non-Rails projects.  Simplecov was not ignoring that
directory though, which meant that the code coverage numbers I were
seeing locally were wrong (and very frightening). With this change, all
is right with the world once again. 😃  
							
						 
						
							2015-10-15 20:59:34 -05:00  
				
					
						
							
							
								 
						
							
								bb9462f12f 
								
							 
						 
						
							
							
								
								Whole-post excerpts should match the post content  
							
							... 
							
							
							
							When a post does not contain an excerpt_separator, meaning the excerpt
includes the entire post, the excerpt should contain exactly the post
content.
This is desirable both from a correctness standpoint, that the excerpt
should not introduce any new content, and more practically to allow fast
and easy detection of whole-post excerpts in Liquid templates using
`post.excerpt == post.content`.  A common use-case is deciding whether
to render "Read More" links on a page containing post excerpts.
This commit does exactly that.  It avoids adding additional newlines to
the excerpt content when the excerpt includes the whole post and adds
tests to ensure that this behavior is correct and preserved going
forward.
Signed-off-by: Kevin Locke <kevin@kevinlocke.name> 
							
						 
						
							2015-10-01 13:58:00 -07:00  
				
					
						
							
							
								 
						
							
								4169075dd1 
								
							 
						 
						
							
							
								
								filters: `where` should compare stringified versions of input & comparator  
							
							... 
							
							
							
							Non-string input was being missed as a result of poor comparison.
Converting inputs to strings ensure numerical and boolean values are
properly compared.
Fixes  #3911 . 
							
						 
						
							2015-08-25 23:00:58 -07:00  
				
					
						
							
							
								 
						
							
								2812341c37 
								
							 
						 
						
							
							
								
								Merge branch 'master' of  https://github.com/jekyll/jekyll  into _includes  
							
							... 
							
							
							
							Conflicts:
	bin/jekyll 
							
						 
						
							2015-08-09 16:22:33 +01:00  
				
					
						
							
							
								 
						
							
								ac56e9dd16 
								
							 
						 
						
							
							
								
								Make _includes directory configurable;  closes   #2684  
							
							... 
							
							
							
							and rename `plugins`, `layouts` and `data_source` directories for consistency 
							
						 
						
							2015-08-09 16:20:58 +01:00  
				
					
						
							
							
								 
						
							
								d652f6e337 
								
							 
						 
						
							
							
								
								typofix in test/test_regenerator.rb  
							
							
							
						 
						
							2015-08-08 21:28:36 +01:00  
				
					
						
							
							
								 
						
							
								371ca58e69 
								
							 
						 
						
							
							
								
								Fixes   #3776  by changing to the correct name for whitelisting.  
							
							
							
						 
						
							2015-08-05 00:20:14 +02:00  
				
					
						
							
							
								 
						
							
								e0b8539670 
								
							 
						 
						
							
							
								
								Added a new case for test_clearner  
							
							... 
							
							
							
							where a directory is not in keep_files, but its path contains a string in keep_files. 
							
						 
						
							2015-07-13 17:47:42 -05:00  
				
					
						
							
							
								 
						
							
								250b6ebb7e 
								
							 
						 
						
							
							
								
								Adapt StaticFile for collections, config defaults  
							
							... 
							
							
							
							This enables files such as images and PDFs to show up in the same relative
output directory as other HTML and Markdown documents in the same collection.
It also enables static files to be hidden using defaults from _config.yml in
the same way that other documents in the same collection and directories may
be hidden using `published: false`. 
							
						 
						
							2015-06-29 19:58:27 -04:00  
				
					
						
							
							
								 
						
							
								8b44a7bb42 
								
							 
						 
						
							
							
								
								Merge pull request  #3762  from fw42/liquid_profiler  
							
							... 
							
							
							
							Merge pull request 3762 
							
						 
						
							2015-06-16 10:21:33 -07:00  
				
					
						
							
							
								 
						
							
								137efdc9f4 
								
							 
						 
						
							
							
								
								Fix :  #3738 ; Move code wrapper from div to figure.  
							
							
							
						 
						
							2015-06-10 15:20:44 -05:00  
				
					
						
							
							
								 
						
							
								e84a7aadee 
								
							 
						 
						
							
							
								
								fixing typo on line 31  
							
							... 
							
							
							
							- front matter 
							
						 
						
							2015-06-08 13:24:53 -03:00  
				
					
						
							
							
								 
						
							
								7bc9e1aae6 
								
							 
						 
						
							
							
								
								Add byte counter  
							
							
							
						 
						
							2015-06-07 16:49:22 +00:00  
				
					
						
							
							
								 
						
							
								1e9163fdf4 
								
							 
						 
						
							
							
								
								Liquid profiler  
							
							
							
						 
						
							2015-06-07 16:38:05 +00:00  
				
					
						
							
							
								 
						
							
								e9215ec047 
								
							 
						 
						
							
							
								
								Merge pull request  #3732  from jekyll/fix-frontmatter-defaults  
							
							... 
							
							
							
							Fix it so that 'blog.html' matches 'blog.html' 
							
						 
						
							2015-06-06 06:30:43 -05:00  
				
					
						
							
							
								 
						
							
								bba7870f8b 
								
							 
						 
						
							
							
								
								Merge pull request  #3717  from alfredxing/regenerator-handle-deleted-files  
							
							... 
							
							
							
							Merge pull request 3717 
							
						 
						
							2015-05-31 11:10:42 -07:00  
				
					
						
							
							
								 
						
							
								14ed5cc954 
								
							 
						 
						
							
							
								
								Fix it so that 'blog.html' matches 'blog.html'  
							
							
							
						 
						
							2015-05-25 02:07:21 -05:00  
				
					
						
							
							
								 
						
							
								a2ee820609 
								
							 
						 
						
							
							
								
								Regenerator: handle deleted/renamed/moved dependencies  
							
							... 
							
							
							
							Should fix  #3716  
							
						 
						
							2015-05-19 22:47:58 -07:00  
				
					
						
							
							
								 
						
							
								87400f2155 
								
							 
						 
						
							
							
								
								regression test for corrupted marshal file  
							
							
							
						 
						
							2015-05-19 20:00:50 +00:00  
				
					
						
							
							
								 
						
							
								3474481043 
								
							 
						 
						
							
							
								
								Marshal metadata  
							
							
							
						 
						
							2015-05-18 14:02:43 +00:00  
				
					
						
							
							
								 
						
							
								f054bae503 
								
							 
						 
						
							
							
								
								Add support for JRuby, it was easier than assumed.  
							
							
							
						 
						
							2015-05-15 07:10:22 -05:00  
				
					
						
							
							
								 
						
							
								4302604c89 
								
							 
						 
						
							
							
								
								remove non-essential with() statement  
							
							
							
						 
						
							2015-04-18 23:36:12 -07:00  
				
					
						
							
							
								 
						
							
								9c03fc3f27 
								
							 
						 
						
							
							
								
								Set logging to debug when verbose flag is set  
							
							... 
							
							
							
							Adds Jekyll::LogAdapter#adjust_verbosity which ensures that --quiet
always wins. 
							
						 
						
							2015-04-18 16:57:57 -07:00  
				
					
						
							
							
								 
						
							
								a682ca1600 
								
							 
						 
						
							
							
								
								Merge pull request  #3658  from jekyll/fix-jekyll-minitest-rspec-mocks  
							
							... 
							
							
							
							Create #mock_expects that goes directly to RSpec Mocks. 
							
						 
						
							2015-04-14 15:15:02 -05:00  
				
					
						
							
							
								 
						
							
								0072865512 
								
							 
						 
						
							
							
								
								Merge pull request  #3629  from justinweiss/lsi_search_on_posts  
							
							... 
							
							
							
							Merge pull request 3629 
							
						 
						
							2015-04-14 13:13:24 -07:00  
				
					
						
							
							
								 
						
							
								f26cdd8da4 
								
							 
						 
						
							
							
								
								Create #mock_expects that goes directly to RSpec Mocks.  
							
							
							
						 
						
							2015-04-14 14:20:55 -05:00  
				
					
						
							
							
								 
						
							
								00aa2955d8 
								
							 
						 
						
							
							
								
								generated site tests: put the static file mod time through a date filter  
							
							
							
						 
						
							2015-04-14 11:52:26 -07:00  
				
					
						
							
							
								 
						
							
								dead70724e 
								
							 
						 
						
							
							
								
								Fix expectation for StaticFile#to_liquid in tests.  
							
							
							
						 
						
							2015-04-14 11:52:26 -07:00  
				
					
						
							
							
								 
						
							
								4f06ba7884 
								
							 
						 
						
							
							
								
								Remove Maruku-specific tests  
							
							
							
						 
						
							2015-04-14 10:58:47 -07:00  
				
					
						
							
							
								 
						
							
								bf98004843 
								
							 
						 
						
							
							
								
								Merge pull request  #3608  from nickburlett/patch/incremental-build  
							
							... 
							
							
							
							Merge pull request 3608 
							
						 
						
							2015-04-10 16:51:56 -04:00  
				
					
						
							
							
								 
						
							
								f86727c45a 
								
							 
						 
						
							
							
								
								DRY up the StaticFile tests a bit.  #3633 .  
							
							
							
						 
						
							2015-04-10 16:24:45 -04:00  
				
					
						
							
							
								 
						
							
								28a1d2445e 
								
							 
						 
						
							
							
								
								Added tests for Jekyll:StaticFile  
							
							
							
						 
						
							2015-04-01 17:15:44 +02:00  
				
					
						
							
							
								 
						
							
								fa435fae94 
								
							 
						 
						
							
							
								
								Use `Jekyll::Post`s for both LSI indexing and lookup.  
							
							... 
							
							
							
							When looking for related posts, Jekyll was indexing `Jekyll::Post`
objects, but finding related posts based on `Jekyll::Post#content`. This
caused two problems:
1. Ruby 2.2 will warn on == if <=> throws an exception (and future Ruby
versions will surface that exception). Because `String`s can't be
compared with `Jekyll::Post`s, this warning was appearing all the time
while searching for related posts.
2. LSI won't return a post itself when searching for related posts. But
LSI could never tell that we were searching on a post, since Jekyll
passed post content, not a post object. With this fix, we can remove the
`- [post]` from `Jekyll::RelatedPosts#find_related`.
This is a more accurate fix for #3484 . 
							
						 
						
							2015-03-29 23:43:55 -07:00  
				
					
						
							
							
								 
						
							
								f75346c799 
								
							 
						 
						
							
							
								
								Merge pull request  #3614  from nickburlett/patch/incremental-build-dest-missing  
							
							... 
							
							
							
							Incremental build if destination file missing 
							
						 
						
							2015-03-28 19:26:01 -05:00  
				
					
						
							
							
								 
						
							
								8f4194eea5 
								
							 
						 
						
							
							
								
								Clean up regeneration missing-destination checks  
							
							... 
							
							
							
							Use easier-to-follow checks for missing-destinations in the regenerator. 
							
						 
						
							2015-03-24 21:21:37 -07:00  
				
					
						
							
							
								 
						
							
								e7d0b6c5a5 
								
							 
						 
						
							
							
								
								Merge pull request  #3545  from delftswa2014/site_extract_readers  
							
							... 
							
							
							
							Merge pull request 3545 
							
						 
						
							2015-03-23 19:53:07 -07:00  
				
					
						
							
							
								 
						
							
								d39d0cea19 
								
							 
						 
						
							
							
								
								Create 'tmp' dir for test_tags if it doesn't exist  
							
							... 
							
							
							
							Rather than use script/test to create the tmp directory, create it in a setup block for the appropriate context in the `TestTags` test. 
							
						 
						
							2015-03-22 22:52:16 -07:00  
				
					
						
							
							
								 
						
							
								d4b8f0d9dd 
								
							 
						 
						
							
							
								
								Process metadata for all dependencies  
							
							... 
							
							
							
							When adding a dependency, also add the dependency to the metadata hash.
Addresses part 1 of #3591 . Prior to this fix, the regnerator only paid attention the mtime of the first dependency it checked, so for posts/pages with N multiple dependencies (i.e., every layout file used to render them), it continues to regenerate the post/page approximately N times, at which point it's seen all of the dependencies. 
							
						 
						
							2015-03-22 13:33:12 -07:00  
				
					
						
							
							
								 
						
							
								706007ead9 
								
							 
						 
						
							
							
								
								Incrementally regenerate missing destination file  
							
							... 
							
							
							
							Addresses the third point of #3591 , in which the incremental regenerator doesn't notice that destination files have gone missing. 
							
						 
						
							2015-03-21 19:25:02 -07:00  
				
					
						
							
							
								 
						
							
								e770a080a7 
								
							 
						 
						
							
							
								
								Regenerator cache clearing tests  
							
							... 
							
							
							
							Two tests for the regenerator cache clearing changes:
1. Intrusively test that the regnerator.clear_cache actually clears the cache ( in test/test_regenerator.rb )
2. Test that incremental building regenerates files that have changed that previously were unchanged ( in test/test_site.rb ) 
							
						 
						
							2015-03-19 09:41:05 -07:00  
				
					
						
							
							
								 
						
							
								324748a5a6 
								
							 
						 
						
							
							
								
								Added corrections as suggested by @parkr.  
							
							... 
							
							
							
							- Replaced occurrences of #array += with concat
   operations.(performance)
 - Corrected alignment.
 - Removed rebase artifact.
Signed-off-by: Martin Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-19 14:56:46 +01:00  
				
					
						
							
							
								 
						
							
								c6d62828ba 
								
							 
						 
						
							
							
								
								Remove loader.rb and utilize "modernize" script/test.  Fixes :  #3573  
							
							
							
						 
						
							2015-03-15 10:08:27 -05:00  
				
					
						
							
							
								 
						
							
								67ba8ad0cb 
								
							 
						 
						
							
							
								
								Use rspec-mock instead of rr  
							
							
							
						 
						
							2015-03-06 20:13:07 -05:00  
				
					
						
							
							
								 
						
							
								00cdcbc184 
								
							 
						 
						
							
							
								
								Separated some more readers from the main reader.rb file.  
							
							... 
							
							
							
							- Draft Reader
 - Collection Reader
 - Page Reader
 - Post Reader
 - Static File Reader
Fixed references and ran tests.
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-06 17:20:25 +01:00  
				
					
						
							
							
								 
						
							
								bebd80342e 
								
							 
						 
						
							
							
								
								Extracted draft, post reader into external classes.  
							
							... 
							
							
							
							Organized the draft, post and layout reader into the *readers* classes.
Fixed all references and ran tests.
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-06 12:39:50 +01:00  
				
					
						
							
							
								 
						
							
								02e98f238e 
								
							 
						 
						
							
							
								
								Merge pull request  #3520  from delftswa2014/sort-null  
							
							
							
						 
						
							2015-03-05 14:35:40 -06:00  
				
					
						
							
							
								 
						
							
								4b8e3cfdbd 
								
							 
						 
						
							
							
								
								Moved the in_(source/dest)_dir back to site.rb.  
							
							... 
							
							
							
							After carefully looking at these two methods, as of right now they do not
belong in the reader, as they should also be used by the writer. Thus the
decision was made to move them back into the class containing the source
and dest fields, site.rb.
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-05 13:34:46 +01:00  
				
					
						
							
							
								 
						
							
								7806f9ed52 
								
							 
						 
						
							
							
								
								Replace `File.exists?` with `File.exist?`  
							
							... 
							
							
							
							`File.exists?` is deprecated method. See
http://ruby-doc.org//core-2.2.0/File.html#exists-3F-method . 
							
						 
						
							2015-03-05 18:21:52 +09:00  
				
					
						
							
							
								 
						
							
								2857350df1 
								
							 
						 
						
							
							
								
								Extracted `read_directories` from site.rb into reader.rb  
							
							... 
							
							
							
							- Extracted
  - Updated References
  - Ran Tests
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com 
							
						 
						
							2015-03-04 20:51:26 +01:00  
				
					
						
							
							
								 
						
							
								a4adeb446b 
								
							 
						 
						
							
							
								
								Extracted `read_posts` from site.rb into reader.rb  
							
							... 
							
							
							
							- Extracted
  - Updated References
  - Ran Tests
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-04 20:22:37 +01:00  
				
					
						
							
							
								 
						
							
								ddfecb0f53 
								
							 
						 
						
							
							
								
								Extracted `read_data_file` from site.rb into reader.rb  
							
							... 
							
							
							
							- Extracted
 - Updated References
 - Ran Tests
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-04 19:55:54 +01:00  
				
					
						
							
							
								 
						
							
								05bbcddb29 
								
							 
						 
						
							
							
								
								Extracted `filter_entries` from site.rb into reader.rb  
							
							... 
							
							
							
							- Extracted
 - Updated References
 - Ran Tests
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-04 19:46:10 +01:00  
				
					
						
							
							
								 
						
							
								bb9d43dff5 
								
							 
						 
						
							
							
								
								Extracted `in_source_dir` from site.rb and into reader.rb.  
							
							... 
							
							
							
							Extracted `in_source_dir` from site.rb into reader.rb.
Updated all the references and tests.
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-04 19:16:03 +01:00  
				
					
						
							
							
								 
						
							
								0d1586a5c4 
								
							 
						 
						
							
							
								
								Improved permalinks for pages and collections  
							
							... 
							
							
							
							This updates the default permalink style for pages and collections to
match the site-wide 'permalink' setting.  If the permalink setting
contains a trailing slash, either explicitly or by being set to
':pretty', then pages and collections permalinks will contain trailing
slashes by default as well.  Similarly, if the permalink setting
contains a trailing ':output_ext', so will pages and collections.  If
the permalink setting contains neither a trailing slash or extension,
neither will pages or collections.
This impacts only the default permalink structure for pages and
collections.  Permalinks set in the frontmatter of an individual page
take precedence, as does the permalink setting for a specific
collection.
Fixes  #2691  
							
						 
						
							2015-03-04 09:38:23 -08:00  
				
					
						
							
							
								 
						
							
								669c803912 
								
							 
						 
						
							
							
								
								always include file extension on destination files  
							
							... 
							
							
							
							This ensures that destination files for HTML posts, pages and
collections always include the proper file extension (as defined by
output_ext) regardless of permalink structure.  This allows for URLs
that contain no extension or trailing slash to still result in proper
destination files with .html extensions.
Because this change relies so heavily on output_ext accurately
identifying the extension of the destination file, this change also
removes the feature test that tested support for permalinks with a .htm
extension.  In order to support alternate file extensions, a future
patch or plugin will need to modify the output_ext value, at which point
everything else should work as expected. 
							
						 
						
							2015-03-02 21:20:54 -08:00  
				
					
						
							
							
								 
						
							
								92a9582733 
								
							 
						 
						
							
							
								
								Corrected error message as suggested by @parkr.  
							
							... 
							
							
							
							Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-01 11:16:08 +01:00  
				
					
						
							
							
								 
						
							
								78af3c5018 
								
							 
						 
						
							
							
								
								Improved clarity of sort nil input error message.  
							
							... 
							
							
							
							Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-01 09:51:59 +01:00  
				
					
						
							
							
								 
						
							
								0565308ce6 
								
							 
						 
						
							
							
								
								Added test to check on nil input for sort filter.  
							
							... 
							
							
							
							- Added a test to check if the sort filter will raise the correct
   exception on given nil input.
 - Improved error message and used "nil" consistently.
Signed-off-by: Martin Jorn Rogalla <martin@martinrogalla.com> 
							
						 
						
							2015-03-01 09:40:32 +01:00  
				
					
						
							
							
								 
						
							
								9b962dc565 
								
							 
						 
						
							
							
								
								Merge branch 'fabianrbz-remove_adapters_deprecation_warning'  
							
							... 
							
							
							
							* fabianrbz-remove_adapters_deprecation_warning:
  Add minitest/profile to profile 10 slowest tests
  Move simplecov_custom_profile to test/ & gate with TRAVIS env
  Remove unused groups from simplecov's profile
  Removes the following deprecation warning: 'method adapters is deprecated. use profiles instead' 
							
						 
						
							2015-03-01 00:36:48 -08:00  
				
					
						
							
							
								 
						
							
								f1edf9e692 
								
							 
						 
						
							
							
								
								Add minitest/profile to profile 10 slowest tests  
							
							
							
						 
						
							2015-03-01 00:36:40 -08:00  
				
					
						
							
							
								 
						
							
								fbe52bca85 
								
							 
						 
						
							
							
								
								Move simplecov_custom_profile to test/ & gate with TRAVIS env  
							
							
							
						 
						
							2015-03-01 00:36:20 -08:00  
				
					
						
							
							
								 
						
							
								dae77e9a63 
								
							 
						 
						
							
							
								
								switch remaining textile test files to markdown  
							
							... 
							
							
							
							Textile support was removed from jekyll core in #3319 , and most of the
tests switched to markdown at that time.  This changes the remaining
tests to use markdown as well.  The vast majority of the test cases were
testing things in the file name or front matter, so it doesn't really
matter what markup format they use.  The one test that was claiming to
test that textile was transformed had actually been moved to markdown as
well, just not renamed.
Fixes  #3507  
							
						 
						
							2015-02-27 18:29:52 -08:00  
				
					
						
							
							
								 
						
							
								cd7b3f54f1 
								
							 
						 
						
							
							
								
								Removes the following deprecation warning:  
							
							... 
							
							
							
							'method adapters is deprecated. use profiles instead'
This warning was showing up because the project was using
the gem 'simplecov-gem-adapter' which uses the old syntax.
* Remove the gem dependency
* Add a profile with the same setup that the gem has 
							
						 
						
							2015-02-27 23:01:48 -02:00  
				
					
						
							
							
								 
						
							
								422fd7d304 
								
							 
						 
						
							
							
								
								Use `fixture_site` for Document tests  
							
							... 
							
							
							
							Should fix  #3500  
							
						 
						
							2015-02-24 20:31:16 -08:00  
				
					
						
							
							
								 
						
							
								7db9397a9d 
								
							 
						 
						
							
							
								
								Remove trailing whitespace  
							
							
							
						 
						
							2015-02-22 20:27:15 +09:00  
				
					
						
							
							
								 
						
							
								7ad0597bff 
								
							 
						 
						
							
							
								
								Make our own Minitest::Test subclass for further subclassing  
							
							
							
						 
						
							2015-02-21 00:33:47 -08:00  
				
					
						
							
							
								 
						
							
								52c4ce2a5a 
								
							 
						 
						
							
							
								
								Finish of moving the unit tests over to Minitest  
							
							
							
						 
						
							2015-02-21 00:31:07 -08:00  
				
					
						
							
							
								 
						
							
								4b59eb4175 
								
							 
						 
						
							
							
								
								Fix the test inheritance for the tests.  
							
							
							
						 
						
							2015-02-20 13:35:02 -08:00  
				
					
						
							
							
								 
						
							
								d2b19963c1 
								
							 
						 
						
							
							
								
								Move from Test::Unit to Minitest.  
							
							
							
						 
						
							2015-02-20 13:34:51 -08:00  
				
					
						
							
							
								 
						
							
								1f503b24b3 
								
							 
						 
						
							
							
								
								highlight: duplicate tests for pygments for rouge  
							
							... 
							
							
							
							Ensure that the output we get for pygments will match
that we get for rouge in all cases except line numbers. 
							
						 
						
							2015-02-09 21:57:43 -08:00  
				
					
						
							
							
								 
						
							
								32c48bb78d 
								
							 
						 
						
							
							
								
								Highlight tag: add test for not removing interstitial newlines.  
							
							
							
						 
						
							2015-02-01 23:03:10 -08:00  
				
					
						
							
							
								 
						
							
								65d43ef398 
								
							 
						 
						
							
							
								
								Move previous runtime dependencies to development dependencies.  
							
							
							
						 
						
							2015-01-31 13:53:17 -08:00  
				
					
						
							
							
								 
						
							
								aceb5b5d53 
								
							 
						 
						
							
							
								
								Merge branch 'jekyll-gjtorikian-patch-1'  
							
							... 
							
							
							
							* jekyll-gjtorikian-patch-1:
  Use the source_dir() helper
  Add test for new extracted method
  Factor out a `read_data_file` call to keep things clean 
							
						 
						
							2015-01-31 00:12:33 -08:00  
				
					
						
							
							
								 
						
							
								32a2e8b4ef 
								
							 
						 
						
							
							
								
								Use the source_dir() helper  
							
							
							
						 
						
							2015-01-31 00:12:24 -08:00  
				
					
						
							
							
								 
						
							
								3bac8a2034 
								
							 
						 
						
							
							
								
								Add test for new extracted method  
							
							
							
						 
						
							2015-01-30 15:21:45 -08:00  
				
					
						
							
							
								 
						
							
								0c624eb11b 
								
							 
						 
						
							
							
								
								The :title URL placeholder for collections should be the filename slug.  
							
							... 
							
							
							
							This mimicks posts most closely. It can be overridden by the
YAML front matter.
Undoes some of #2864 . 
							
						 
						
							2015-01-30 01:53:11 -08:00  
				
					
						
							
							
								 
						
							
								31b03e9b86 
								
							 
						 
						
							
							
								
								Merge pull request  #3325  from imathis/generate-url  
							
							
							
						 
						
							2015-01-24 11:21:51 -08:00  
				
					
						
							
							
								 
						
							
								58e231ce40 
								
							 
						 
						
							
							
								
								Rename Regenerator#write to Regenerator#write_metadata  
							
							
							
						 
						
							2015-01-19 16:29:50 -08:00  
				
					
						
							
							
								 
						
							
								29aabd84bd 
								
							 
						 
						
							
							
								
								Fix up tests  
							
							
							
						 
						
							2015-01-19 16:23:51 -08:00  
				
					
						
							
							
								 
						
							
								3d60299ea9 
								
							 
						 
						
							
							
								
								Test updates: Removed permalink config, updated template  
							
							
							
						 
						
							2015-01-18 23:03:27 -06:00  
				
					
						
							
							
								 
						
							
								382049d558 
								
							 
						 
						
							
							
								
								Added a unit test for nil value in permalink template keys  
							
							
							
						 
						
							2015-01-18 15:51:21 -06:00  
				
					
						
							
							
								 
						
							
								fe5f0d124c 
								
							 
						 
						
							
							
								
								Move all regenerate? checking to Regenerator  
							
							
							
						 
						
							2015-01-18 11:05:06 -08:00  
				
					
						
							
							
								 
						
							
								9d547f74cc 
								
							 
						 
						
							
							
								
								Make all the tests happy.  
							
							
							
						 
						
							2015-01-17 16:52:12 -08:00  
				
					
						
							
							
								 
						
							
								c1da91cf5c 
								
							 
						 
						
							
							
								
								Start removing mentions of Textile.  
							
							
							
						 
						
							2015-01-17 16:51:28 -08:00  
				
					
						
							
							
								 
						
							
								10659e1eef 
								
							 
						 
						
							
							
								
								Merge branch 'nitoyon-slugify-new-param'  
							
							... 
							
							
							
							* nitoyon-slugify-new-param:
  Remove superfluous Sass declarations.
  Move the slugify options out to their own section so as to fix the formatting.
  Document the mode parameter of slugify Liquid filter
  Add tests for mode parameters of slugify Liquid filter
  Add mode parameter to slugify Liquid filter
Conflicts:
	lib/jekyll/utils.rb
        ---> Hadn't added UTF-8 support in nitoyon's PR. 
							
						 
						
							2015-01-17 16:06:10 -08:00  
				
					
						
							
							
								 
						
							
								3fe80929ad 
								
							 
						 
						
							
							
								
								We have 47 posts now in the tests.  
							
							
							
						 
						
							2015-01-17 15:28:03 -08:00  
				
					
						
							
							
								 
						
							
								b2099ac763 
								
							 
						 
						
							
							
								
								Merge branch 'davidized-collection_yaml_dots'  
							
							... 
							
							
							
							* davidized-collection_yaml_dots:
  Move YAML Front Matter regexp into a constant.
  Add support for collections documents to have YAML front matter ending in dots.
Conflicts:
	test/test_collections.rb 
							
						 
						
							2015-01-17 15:24:33 -08:00  
				
					
						
							
							
								 
						
							
								a312115a5a 
								
							 
						 
						
							
							
								
								Merge pull request  #3014  from jekyll/revert-3013-revert-2921-post-dest  
							
							
							
						 
						
							2015-01-17 15:13:17 -08:00  
				
					
						
							
							
								 
						
							
								84cfc1ceff 
								
							 
						 
						
							
							
								
								Merge branch 'majioa-devel'  
							
							... 
							
							
							
							* majioa-devel:
  Ensure Post#excerpt_separator always returns a string.
  get procedure for default excerpt separator for both cases site and page was moved to the post's specific method :excerpt_separator.
  Added per post excerpt_separator functionality, so you are able to specify :excerpt_separator (as well as just :excerpt) key direct inside the post YAML, to make an excerpt based on the value in the post. Tests were also added. 
							
						 
						
							2015-01-17 15:01:20 -08:00  
				
					
						
							
							
								 
						
							
								ba2e1390ad 
								
							 
						 
						
							
							
								
								Merge pull request  #2571  from yous/patch-mixed-case-category  
							
							
							
						 
						
							2015-01-17 14:55:30 -08:00  
				
					
						
							
							
								 
						
							
								ce78ea7818 
								
							 
						 
						
							
							
								
								Merge pull request  #3220  from inukshuk/patch-1  
							
							
							
						 
						
							2015-01-13 19:02:41 -06:00  
				
					
						
							
							
								 
						
							
								588bba39ad 
								
							 
						 
						
							
							
								
								Add test for Date object in filters.rb  
							
							
							
						 
						
							2015-01-13 13:51:36 -05:00  
				
					
						
							
							
								 
						
							
								60921132c6 
								
							 
						 
						
							
							
								
								Preserve original mtime when copying static files  
							
							
							
						 
						
							2015-01-12 13:00:35 +01:00  
				
					
						
							
							
								 
						
							
								7c8e4d46eb 
								
							 
						 
						
							
							
								
								Fix up new output for RDiscount 2.  
							
							
							
						 
						
							2015-01-10 00:21:18 -08:00  
				
					
						
							
							
								 
						
							
								0bf82e9cf7 
								
							 
						 
						
							
							
								
								Merge pull request  #3258  from omegahm/symlink-local-tmp  
							
							
							
						 
						
							2015-01-10 00:12:06 -08:00  
				
					
						
							
							
								 
						
							
								b9542c5426 
								
							 
						 
						
							
							
								
								Merge pull request  #3279  from jekyll/fix-cross-platform-testing  
							
							
							
						 
						
							2015-01-10 00:08:29 -08:00  
				
					
						
							
							
								 
						
							
								730aedd0a3 
								
							 
						 
						
							
							
								
								Add Rake's test loader because it is inconsistently installed.  
							
							
							
						 
						
							2015-01-09 23:57:52 -08:00  
				
					
						
							
							
								 
						
							
								4cbd814546 
								
							 
						 
						
							
							
								
								Add support for Windows line feeds too.  
							
							
							
						 
						
							2015-01-09 23:55:47 -08:00  
				
					
						
							
							
								 
						
							
								cae9d96cc4 
								
							 
						 
						
							
							
								
								Add test for stripping just newlines from code blocks.  
							
							... 
							
							
							
							Ref #3275 . 
							
						 
						
							2015-01-09 23:51:34 -08:00  
				
					
						
							
							
								 
						
							
								54d0bf47e8 
								
							 
						 
						
							
							
								
								Added per post excerpt_separator functionality, so you are able to  
							
							... 
							
							
							
							specify :excerpt_separator (as well as just :excerpt) key direct inside
the post YAML, to make an excerpt based on the value in the post. Tests
were also added. 
							
						 
						
							2015-01-08 15:18:06 +03:00  
				
					
						
							
							
								 
						
							
								502fd94f2c 
								
							 
						 
						
							
							
								
								Merge pull request  #3172  from alfredxing/docs-output-overrides  
							
							
							
						 
						
							2015-01-05 23:19:12 -08:00  
				
					
						
							
							
								 
						
							
								7655b533c9 
								
							 
						 
						
							
							
								
								Allow documents to set `published` in front matter  
							
							
							
						 
						
							2015-01-05 16:11:02 -08:00  
				
					
						
							
							
								 
						
							
								1062fdf89f 
								
							 
						 
						
							
							
								
								Use local tmp folder for symlink tests  
							
							
							
						 
						
							2015-01-05 09:28:54 +01:00  
				
					
						
							
							
								 
						
							
								a2b6aa263e 
								
							 
						 
						
							
							
								
								Add local tmp folder  
							
							
							
						 
						
							2015-01-05 09:28:54 +01:00  
				
					
						
							
							
								 
						
							
								a098dc80cd 
								
							 
						 
						
							
							
								
								Merge pull request  #3234  from jekyll/ruby-2-2  
							
							
							
						 
						
							2014-12-29 20:49:04 -05:00  
				
					
						
							
							
								 
						
							
								7cd5847826 
								
							 
						 
						
							
							
								
								Merge pull request  #3244  from jekyll/store-messages  
							
							
							
						 
						
							2014-12-29 20:48:23 -05:00  
				
					
						
							
							
								 
						
							
								9109da32f9 
								
							 
						 
						
							
							
								
								Update test for the date() Liquid filter.  
							
							
							
						 
						
							2014-12-29 20:44:10 -05:00  
				
					
						
							
							
								 
						
							
								5e10958faa 
								
							 
						 
						
							
							
								
								Unescape Document output path  
							
							... 
							
							
							
							Document#destination wasn't unescaped properly.
For example, when we have a document named '_langs/c#.md',
we expect its url to be '/langs/c#.html',
but it was actually '/langs/c%23.html'.
We now unecape URL at Document#destination like Post#destination and
Page#destination. 
							
						 
						
							2014-12-29 22:38:50 +09:00  
				
					
						
							
							
								 
						
							
								1fc99bdd97 
								
							 
						 
						
							
							
								
								Test LogAdapter#messages  
							
							
							
						 
						
							2014-12-29 01:21:01 -05:00  
				
					
						
							
							
								 
						
							
								a6781bda30 
								
							 
						 
						
							
							
								
								Always, always rebuild (by default) in tests.  
							
							
							
						 
						
							2014-12-29 00:37:16 -05:00  
				
					
						
							
							
								 
						
							
								612eb737a5 
								
							 
						 
						
							
							
								
								Merge pull request  #3047  from karouf/slugify-non-latin  
							
							
							
						 
						
							2014-12-29 00:31:34 -05:00  
				
					
						
							
							
								 
						
							
								004f923644 
								
							 
						 
						
							
							
								
								Revert "Revert "Make permalink parsing consistent with pages""  
							
							
							
						 
						
							2014-12-29 00:30:42 -05:00  
				
					
						
							
							
								 
						
							
								e39dfa3f0b 
								
							 
						 
						
							
							
								
								Merge pull request  #2908  from alfredxing/document-path  
							
							
							
						 
						
							2014-12-29 00:26:35 -05:00  
				
					
						
							
							
								 
						
							
								232a58d5b4 
								
							 
						 
						
							
							
								
								Fix test use of Site#getConverterImpl.  
							
							
							
						 
						
							2014-12-28 14:14:24 -05:00  
				
					
						
							
							
								 
						
							
								c24c6b7f3d 
								
							 
						 
						
							
							
								
								Use 'enable_coderay' in the tests.  
							
							
							
						 
						
							2014-12-26 22:17:33 -05:00  
				
					
						
							
							
								 
						
							
								5bf1596414 
								
							 
						 
						
							
							
								
								Refactor Highlight tag tests to use a helper method to create the tag.  
							
							
							
						 
						
							2014-12-26 21:53:56 -05:00  
				
					
						
							
							
								 
						
							
								7227ad4ebb 
								
							 
						 
						
							
							
								
								Merge pull request  #3116  from alfredxing/incremental  
							
							
							
						 
						
							2014-12-22 08:57:50 -05:00  
				
					
						
							
							
								 
						
							
								34ff0bbb36 
								
							 
						 
						
							
							
								
								Added tests for new jekyll doctor warning  
							
							
							
						 
						
							2014-12-15 21:26:47 +01:00  
				
					
						
							
							
								 
						
							
								49115dbdab 
								
							 
						 
						
							
							
								
								Merge pull request  #3158  from afeld/as-liquid-refactor  
							
							
							
						 
						
							2014-12-09 10:50:42 -08:00  
				
					
						
							
							
								 
						
							
								032139bd2f 
								
							 
						 
						
							
							
								
								Ensure only one converter is found for .Rmd in the tests. Ref:  #3147 .  
							
							
							
						 
						
							2014-12-07 16:08:16 -08:00  
				
					
						
							
							
								 
						
							
								f8af94431d 
								
							 
						 
						
							
							
								
								Fix coverage reporting for built-in bundles  
							
							
							
						 
						
							2014-12-02 20:50:39 -06:00  
				
					
						
							
							
								 
						
							
								a701e59c07 
								
							 
						 
						
							
							
								
								Add lots more unit tests  
							
							
							
						 
						
							2014-11-27 10:40:31 -08:00  
				
					
						
							
							
								 
						
							
								229303bbc8 
								
							 
						 
						
							
							
								
								compare resulting data in jsonify test  
							
							
							
						 
						
							2014-11-27 04:01:31 -06:00  
				
					
						
							
							
								 
						
							
								02f281eef3 
								
							 
						 
						
							
							
								
								Add unit and cucumber tests  
							
							
							
						 
						
							2014-11-26 21:15:53 -08:00  
				
					
						
							
							
								 
						
							
								0662d31bf6 
								
							 
						 
						
							
							
								
								fix jsonify filter when used with boolean values  
							
							
							
						 
						
							2014-11-26 02:40:41 -06:00  
				
					
						
							
							
								 
						
							
								d250efccb9 
								
							 
						 
						
							
							
								
								add test for broken markdown regexp  
							
							
							
						 
						
							2014-11-24 19:56:26 -06:00  
				
					
						
							
							
								 
						
							
								dc30114605 
								
							 
						 
						
							
							
								
								Use site.in_source_dir  
							
							
							
						 
						
							2014-11-23 16:16:19 -08:00  
				
					
						
							
							
								 
						
							
								ef53e677a4 
								
							 
						 
						
							
							
								
								Better tests for plugin manager.  
							
							
							
						 
						
							2014-11-23 13:14:51 -08:00  
				
					
						
							
							
								 
						
							
								03d9396b85 
								
							 
						 
						
							
							
								
								Capture the output of Jekyll::Commands::New when looking for an error.  
							
							
							
						 
						
							2014-11-23 12:53:36 -08:00  
				
					
						
							
							
								 
						
							
								ac03af3229 
								
							 
						 
						
							
							
								
								Implement @mattr-'s suggestions  
							
							
							
						 
						
							2014-11-21 22:12:21 -08:00  
				
					
						
							
							
								 
						
							
								fe6bfc6f1b 
								
							 
						 
						
							
							
								
								Fix failing tests  
							
							
							
						 
						
							2014-11-21 22:12:21 -08:00  
				
					
						
							
							
								 
						
							
								d7e3d4df8f 
								
							 
						 
						
							
							
								
								Add support for collections documents to have YAML front matter ending in dots.  
							
							
							
						 
						
							2014-11-20 14:38:17 -06:00  
				
					
						
							
							
								 
						
							
								5a350788e7 
								
							 
						 
						
							
							
								
								Test JEKYLL_NO_BUNDLER_REQUIRE.  
							
							
							
						 
						
							2014-11-05 21:04:34 -08:00  
				
					
						
							
							
								 
						
							
								8ee1b2a1fd 
								
							 
						 
						
							
							
								
								Finish up the plugin manager  
							
							... 
							
							
							
							And so it shall be. 
							
						 
						
							2014-11-05 19:29:54 -08:00  
				
					
						
							
							
								 
						
							
								18930b01f6 
								
							 
						 
						
							
							
								
								Fix up the assertions.  
							
							
							
						 
						
							2014-11-05 11:39:15 -08:00  
				
					
						
							
							
								 
						
							
								b29fd6d380 
								
							 
						 
						
							
							
								
								Add tests.  
							
							... 
							
							
							
							Need to fix up the assertions to match the output. 
							
						 
						
							2014-11-05 11:37:51 -08:00  
				
					
						
							
							
								 
						
							
								0c6137b2d3 
								
							 
						 
						
							
							
								
								Fix site tests.  
							
							
							
						 
						
							2014-11-03 22:16:48 -08:00  
				
					
						
							
							
								 
						
							
								8d02c5cd94 
								
							 
						 
						
							
							
								
								Allow override of `destination` in site_configuration in tests  
							
							
							
						 
						
							2014-11-03 22:16:48 -08:00  
				
					
						
							
							
								 
						
							
								2690c045ec 
								
							 
						 
						
							
							
								
								Fix the tests so they are *PERFECT*.  
							
							
							
						 
						
							2014-11-03 22:16:48 -08:00  
				
					
						
							
							
								 
						
							
								817f6cb658 
								
							 
						 
						
							
							
								
								Fix problem where entries weren't stripped of their trailing slashes.  
							
							
							
						 
						
							2014-11-03 22:16:47 -08:00  
				
					
						
							
							
								 
						
							
								3762878381 
								
							 
						 
						
							
							
								
								Correctly access the StaticFile's site variable.  
							
							
							
						 
						
							2014-11-03 22:16:47 -08:00  
				
					
						
							
							
								 
						
							
								4078bde3ba 
								
							 
						 
						
							
							
								
								More passing tests.  
							
							
							
						 
						
							2014-11-03 22:15:41 -08:00  
				
					
						
							
							
								 
						
							
								3b634134a0 
								
							 
						 
						
							
							
								
								Another test passing.  😄  
							
							
							
						 
						
							2014-11-03 22:15:41 -08:00  
				
					
						
							
							
								 
						
							
								461e16f8bc 
								
							 
						 
						
							
							
								
								More tests are passing. Hooray.  
							
							
							
						 
						
							2014-11-03 22:15:40 -08:00  
				
					
						
							
							
								 
						
							
								f9e249ae20 
								
							 
						 
						
							
							
								
								Generalize Utils#slugify for any scripts  
							
							... 
							
							
							
							It replaces any non alphanumeric glyphs by an hyphen. 
							
						 
						
							2014-10-31 15:56:03 +01:00  
				
					
						
							
							
								 
						
							
								8dcf7a6680 
								
							 
						 
						
							
							
								
								Merge pull request  #3031  from alfredxing/frontmatter-permalinks  
							
							
							
						 
						
							2014-10-29 15:13:12 -07:00  
				
					
						
							
							
								 
						
							
								3fb1356593 
								
							 
						 
						
							
							
								
								The jsonify filter should deep-convert to Liquid when given an Array.  
							
							... 
							
							
							
							Fixes https://github.com/github/choosealicense.com/issues/225  
							
						 
						
							2014-10-27 15:58:42 -07:00  
				
					
						
							
							
								 
						
							
								0fe1d0686a 
								
							 
						 
						
							
							
								
								Allow placeholders in permalinks  
							
							
							
						 
						
							2014-10-26 18:23:58 -07:00  
				
					
						
							
							
								 
						
							
								ae01b1d5df 
								
							 
						 
						
							
							
								
								😦  
							
							
							
						 
						
							2014-10-22 02:16:50 -07:00  
				
					
						
							
							
								 
						
							
								5ed4638400 
								
							 
						 
						
							
							
								
								Merge pull request  #2986  from tamagokun/where_filters_enumerable  
							
							
							
						 
						
							2014-10-20 20:09:21 -07:00  
				
					
						
							
							
								 
						
							
								078b2785e4 
								
							 
						 
						
							
							
								
								Revert "Make permalink parsing consistent with pages"  
							
							
							
						 
						
							2014-10-18 12:07:44 -07:00  
				
					
						
							
							
								 
						
							
								73ca205a5c 
								
							 
						 
						
							
							
								
								Add test for Document#basename_without_ext  
							
							
							
						 
						
							2014-10-12 14:33:13 -07:00  
				
					
						
							
							
								 
						
							
								3c5e9f5334 
								
							 
						 
						
							
							
								
								Add tests for mode parameters of slugify Liquid filter  
							
							
							
						 
						
							2014-10-12 02:50:08 +09:00  
				
					
						
							
							
								 
						
							
								56ac50c568 
								
							 
						 
						
							
							
								
								where filter - test return value when filtering a Hash  
							
							
							
						 
						
							2014-10-08 17:02:36 -04:00  
				
					
						
							
							
								 
						
							
								f6ea8b4d50 
								
							 
						 
						
							
							
								
								Allow Enumerables to be used with "where" filter.  
							
							
							
						 
						
							2014-10-08 16:19:55 -04:00  
				
					
						
							
							
								 
						
							
								3a96d01e4a 
								
							 
						 
						
							
							
								
								Make permalink parsing consistent with pages  
							
							... 
							
							
							
							Require permalink to end in a slash to write an index file.
Addresses #2920 . 
							
						 
						
							2014-09-24 22:08:25 -07:00  
				
					
						
							
							
								 
						
							
								121a06a9eb 
								
							 
						 
						
							
							
								
								unit test for jekyll new --force  
							
							
							
						 
						
							2014-09-16 16:42:33 +04:00  
				
					
						
							
							
								 
						
							
								d9e5fdde5b 
								
							 
						 
						
							
							
								
								test for jekyll new --blank  
							
							
							
						 
						
							2014-09-12 18:30:06 +04:00  
				
					
						
							
							
								 
						
							
								6c0e791236 
								
							 
						 
						
							
							
								
								Use relative path for `path` Liquid variable in Documents  
							
							
							
						 
						
							2014-09-10 21:04:40 -07:00  
				
					
						
							
							
								 
						
							
								196a56e3ec 
								
							 
						 
						
							
							
								
								Add push, pop, shift, and unshift Liquid filters.  
							
							... 
							
							
							
							Fixes  #2892 . 
						
							2014-09-09 21:29:23 -07:00  
				
					
						
							
							
								 
						
							
								0675f2a423 
								
							 
						 
						
							
							
								
								Update include_relative tests  
							
							... 
							
							
							
							This verifies you can’t go “up” in the include 
							
						 
						
							2014-09-07 21:23:45 -07:00  
				
					
						
							
							
								 
						
							
								6644c77d23 
								
							 
						 
						
							
							
								
								Merge pull request  #2870  from gjtorikian/support-relative-include  
							
							
							
						 
						
							2014-09-07 13:05:38 -07:00  
				
					
						
							
							
								 
						
							
								4da07bb2c3 
								
							 
						 
						
							
							
								
								Add tests around nasty include attempts  
							
							
							
						 
						
							2014-09-07 12:00:37 -07:00  
				
					
						
							
							
								 
						
							
								e7c8bbf5df 
								
							 
						 
						
							
							
								
								Test that includes relative to self are included  
							
							
							
						 
						
							2014-09-07 11:24:44 -07:00  
				
					
						
							
							
								 
						
							
								934c37b578 
								
							 
						 
						
							
							
								
								Separate include_relative test out into its own context  
							
							
							
						 
						
							2014-09-07 11:21:50 -07:00  
				
					
						
							
							
								 
						
							
								77297744ce 
								
							 
						 
						
							
							
								
								Add a test for the slugify Liquid filter  
							
							
							
						 
						
							2014-09-07 16:49:14 +09:00  
				
					
						
							
							
								 
						
							
								9f558d1cec 
								
							 
						 
						
							
							
								
								Rename tag to `include_relative`  
							
							
							
						 
						
							2014-09-06 21:48:15 -07:00  
				
					
						
							
							
								 
						
							
								58a76911bb 
								
							 
						 
						
							
							
								
								Merge pull request  #2864  from kansaichris/add-title-to-collection-urls  
							
							
							
						 
						
							2014-09-05 10:04:38 -07:00  
				
					
						
							
							
								 
						
							
								aa97f1025d 
								
							 
						 
						
							
							
								
								Support a new `relative_include` tag  
							
							
							
						 
						
							2014-09-03 15:43:51 -07:00  
				
					
						
							
							
								 
						
							
								62a3961739 
								
							 
						 
						
							
							
								
								Add tests for Utils#slugify  
							
							
							
						 
						
							2014-09-02 14:33:03 +09:00  
				
					
						
							
							
								 
						
							
								cfd17b2e7d 
								
							 
						 
						
							
							
								
								Add inspect filter  
							
							
							
						 
						
							2014-09-01 14:51:09 -07:00  
				
					
						
							
							
								 
						
							
								be2b16507e 
								
							 
						 
						
							
							
								
								Test documents without a title  
							
							
							
						 
						
							2014-09-01 13:32:31 +09:00  
				
					
						
							
							
								 
						
							
								a5e51cfdbe 
								
							 
						 
						
							
							
								
								Properly handle titles with trailing punctuation  
							
							
							
						 
						
							2014-09-01 13:25:38 +09:00  
				
					
						
							
							
								 
						
							
								4dec3c8c6b 
								
							 
						 
						
							
							
								
								Test titles in document permalinks  
							
							
							
						 
						
							2014-09-01 13:04:54 +09:00  
				
					
						
							
							
								 
						
							
								55de135467 
								
							 
						 
						
							
							
								
								Test Liquid syntax in CoffeeScript files  
							
							
							
						 
						
							2014-08-26 17:24:27 +09:00  
				
					
						
							
							
								 
						
							
								cc4a0d1704 
								
							 
						 
						
							
							
								
								Change :title to :name  
							
							
							
						 
						
							2014-08-26 11:26:19 +09:00  
				
					
						
							
							
								 
						
							
								e8b00fb6f2 
								
							 
						 
						
							
							
								
								Add the 'title' variable to collection permalinks  
							
							
							
						 
						
							2014-08-23 14:50:55 +09:00  
				
					
						
							
							
								 
						
							
								4d8e335da1 
								
							 
						 
						
							
							
								
								The mighty classifier --- reborn!!!!!  
							
							... 
							
							
							
							Use classifier-reborn v2.0 in place of classifier 1.3.
Code at https://github.com/jekyll/classifier-reborn  
							
						 
						
							2014-08-13 00:29:40 -04:00  
				
					
						
							
							
								 
						
							
								566d3718b0 
								
							 
						 
						
							
							
								
								added sassify and scssify filters fot converting sass and scss strings to css  
							
							
							
						 
						
							2014-08-12 21:24:04 -06:00  
				
					
						
							
							
								 
						
							
								530e049d2d 
								
							 
						 
						
							
							
								
								Read in static files info `collection.files` as `StaticFile`s.  
							
							
							
						 
						
							2014-08-12 15:59:45 -04:00  
				
					
						
							
							
								 
						
							
								90ec93373b 
								
							 
						 
						
							
							
								
								Ensure the new type works.  
							
							
							
						 
						
							2014-08-12 12:24:28 -04:00  
				
					
						
							
							
								 
						
							
								6f8b8816f5 
								
							 
						 
						
							
							
								
								Merge pull request  #2704  from jekyll/mult-converters  
							
							
							
						 
						
							2014-08-10 20:29:37 -04:00  
				
					
						
							
							
								 
						
							
								533ed6eb38 
								
							 
						 
						
							
							
								
								Remove tests for the Command.ignored_paths method which now lives in jekyll-watch.  
							
							
							
						 
						
							2014-08-10 14:46:06 -04:00  
				
					
						
							
							
								 
						
							
								c8d1c3d264 
								
							 
						 
						
							
							
								
								Remove duplicated mixed case categories  
							
							
							
						 
						
							2014-08-07 11:27:42 +09:00  
				
					
						
							
							
								 
						
							
								3768d90278 
								
							 
						 
						
							
							
								
								Use category in downcase only for URL ( Resolves   #1739 )  
							
							
							
						 
						
							2014-08-07 11:27:41 +09:00  
				
					
						
							
							
								 
						
							
								311f3be63b 
								
							 
						 
						
							
							
								
								Fixed ignore subir test.  
							
							
							
						 
						
							2014-08-06 16:45:34 -07:00  
				
					
						
							
							
								 
						
							
								f29884593b 
								
							 
						 
						
							
							
								
								Reverted deleted test and modified ensure subdirs are ignored.  
							
							
							
						 
						
							2014-08-06 16:05:53 -07:00  
				
					
						
							
							
								 
						
							
								d0ac4915cb 
								
							 
						 
						
							
							
								
								Reverts  18c033dc5c 
							
							... 
							
							
							
							The merge that is reverted assigned categories to posts
based on the subfolders in the _posts directory and 
was merged under the understanding that it was fixing a bug.
Subfolders in the _posts directory should not assign 
metadata information to posts at this point in time and 
was not a bug. 
							
						 
						
							2014-08-06 14:20:03 -07:00  
				
					
						
							
							
								 
						
							
								d004bc4ea5 
								
							 
						 
						
							
							
								
								Allow Convertibles to be converted by >= 1 converters.  
							
							
							
						 
						
							2014-08-06 16:20:24 -04:00  
				
					
						
							
							
								 
						
							
								cb671acd0c 
								
							 
						 
						
							
							
								
								Merge pull request  #2682  from alfredxing/date-parser-util  
							
							
							
						 
						
							2014-08-06 15:30:02 -04:00  
				
					
						
							
							
								 
						
							
								83f726f503 
								
							 
						 
						
							
							
								
								Add tests for include tag with partial variables  
							
							
							
						 
						
							2014-08-05 01:04:20 -04:00  
				
					
						
							
							
								 
						
							
								c7f8c70935 
								
							 
						 
						
							
							
								
								Add tests for `Utils.parse_date` method  
							
							
							
						 
						
							2014-08-02 15:03:31 -07:00  
				
					
						
							
							
								 
						
							
								81807cb5af 
								
							 
						 
						
							
							
								
								Merge pull request  #2615  from alfredxing/collections-static-files  
							
							
							
						 
						
							2014-08-02 14:44:45 -04:00  
				
					
						
							
							
								 
						
							
								bd59fa14f3 
								
							 
						 
						
							
							
								
								Add tests for static files in collections  
							
							
							
						 
						
							2014-08-02 09:00:03 -07:00  
				
					
						
							
							
								 
						
							
								4ca3fe5137 
								
							 
						 
						
							
							
								
								Merge pull request  #2664  from alfredxing/replace-deprecated-methods  
							
							
							
						 
						
							2014-08-01 23:27:58 -04:00  
				
					
						
							
							
								 
						
							
								b63d113fe0 
								
							 
						 
						
							
							
								
								Merge pull request  #2674  from kleinfreund/master  
							
							
							
						 
						
							2014-08-01 13:48:18 -04:00  
				
					
						
							
							
								 
						
							
								89e45afcc1 
								
							 
						 
						
							
							
								
								Add tests for front matter defaults  
							
							
							
						 
						
							2014-08-01 10:28:53 -07:00  
				
					
						
							
							
								 
						
							
								0ed02e9c1e 
								
							 
						 
						
							
							
								
								Replacing front-matter/frontmatter with front matter  
							
							
							
						 
						
							2014-08-01 10:07:09 +02:00  
				
					
						
							
							
								 
						
							
								6d62dbbafc 
								
							 
						 
						
							
							
								
								Replace deprecated Ruby methods  
							
							... 
							
							
							
							Replace `Hash#has_key?` and `File.exists?` with `Hash#key?`
and `File.exist?` 
							
						 
						
							2014-07-31 12:50:20 -07:00  
				
					
						
							
							
								 
						
							
								3cb2e74b5c 
								
							 
						 
						
							
							
								
								Add further testing for Highlight#sanitized_opts  
							
							
							
						 
						
							2014-07-29 16:30:44 -04:00  
				
					
						
							
							
								 
						
							
								592630d48c 
								
							 
						 
						
							
							
								
								Do not forget to downcase the categories here as well  
							
							
							
						 
						
							2014-07-27 00:29:31 +02:00  
				
					
						
							
							
								 
						
							
								16dbe54560 
								
							 
						 
						
							
							
								
								When using subdirs to reflect categories, the underlying `categories` attribute was not set  
							
							
							
						 
						
							2014-07-24 18:59:26 +02:00  
				
					
						
							
							
								 
						
							
								475e08bba3 
								
							 
						 
						
							
							
								
								Replace all RubyForge links with new residences  
							
							
							
						 
						
							2014-07-16 13:43:09 -07:00  
				
					
						
							
							
								 
						
							
								c7cc36abdb 
								
							 
						 
						
							
							
								
								Put errors/exceptions into Jekyll::Errors module  
							
							
							
						 
						
							2014-07-12 13:47:59 -07:00  
				
					
						
							
							
								 
						
							
								ece22497dd 
								
							 
						 
						
							
							
								
								Merge pull request  #2576  from bhollis/maruku-update  
							
							
							
						 
						
							2014-07-09 23:44:03 -07:00  
				
					
						
							
							
								 
						
							
								cbb4b10ce6 
								
							 
						 
						
							
							
								
								Update Maruku dependency to allow use of the latest version.  
							
							... 
							
							
							
							All Maruku releases post-0.6 follow semver, so they should be backwards-compatible on minor versions. In this case, the only test that needed to change was one that was asserting buggy behavior that was fixed in 0.7.1. 
							
						 
						
							2014-07-08 19:44:40 -07:00  
				
					
						
							
							
								 
						
							
								ce1f01c494 
								
							 
						 
						
							
							
								
								Modify tests a bit  
							
							
							
						 
						
							2014-07-07 10:49:36 -07:00  
				
					
						
							
							
								 
						
							
								a13a4ca532 
								
							 
						 
						
							
							
								
								Solidify document permalink tests  
							
							
							
						 
						
							2014-07-07 10:39:22 -07:00  
				
					
						
							
							
								 
						
							
								f830120044 
								
							 
						 
						
							
							
								
								Add test for document permalink  
							
							
							
						 
						
							2014-07-07 10:28:03 -07:00  
				
					
						
							
							
								 
						
							
								0b9eb3c111 
								
							 
						 
						
							
							
								
								Ensure collections with dots work.  
							
							
							
						 
						
							2014-06-28 16:51:44 -04:00  
				
					
						
							
							
								 
						
							
								cedbdf43ca 
								
							 
						 
						
							
							
								
								Merge pull request  #2532  from alexmedearis/hl_lines  
							
							
							
						 
						
							2014-06-25 16:14:14 -04:00  
				
					
						
							
							
								 
						
							
								e75dcc18f1 
								
							 
						 
						
							
							
								
								Merge pull request  #2511  from denilsonsa/patch-1  
							
							
							
						 
						
							2014-06-23 19:01:31 -04:00  
				
					
						
							
							
								 
						
							
								a7d20df95a 
								
							 
						 
						
							
							
								
								unit tests  
							
							
							
						 
						
							2014-06-18 17:29:07 -07:00  
				
					
						
							
							
								 
						
							
								674b540c6f 
								
							 
						 
						
							
							
								
								unit tests  
							
							
							
						 
						
							2014-06-18 17:27:27 -07:00  
				
					
						
							
							
								 
						
							
								35ed101651 
								
							 
						 
						
							
							
								
								Add test for the concatenation of categories  
							
							
							
						 
						
							2014-06-18 18:19:28 -04:00  
				
					
						
							
							
								 
						
							
								b42e29c5a7 
								
							 
						 
						
							
							
								
								Fixing tests.  
							
							
							
						 
						
							2014-06-13 03:50:02 -03:00  
				
					
						
							
							
								 
						
							
								d59b2c3ef6 
								
							 
						 
						
							
							
								
								Merge pull request  #2419  from jens-na/collection-defaults  
							
							
							
						 
						
							2014-06-12 20:38:21 -04:00  
				
					
						
							
							
								 
						
							
								df334e809e 
								
							 
						 
						
							
							
								
								Remove coverage reporting with Coveralls  
							
							
							
						 
						
							2014-06-09 02:35:55 +02:00  
				
					
						
							
							
								 
						
							
								ccf97a62f1 
								
							 
						 
						
							
							
								
								Merge pull request  #2459  from ivantsepp/watch_ignore_files  
							
							
							
						 
						
							2014-06-06 23:11:44 -04:00  
				
					
						
							
							
								 
						
							
								6684a8f914 
								
							 
						 
						
							
							
								
								Refactor logic into Command class. Add tests.  
							
							
							
						 
						
							2014-06-04 14:23:40 -04:00  
				
					
						
							
							
								 
						
							
								dc622470c9 
								
							 
						 
						
							
							
								
								add test for collection name  
							
							
							
						 
						
							2014-06-02 15:12:21 -04:00  
				
					
						
							
							
								 
						
							
								ae67940544 
								
							 
						 
						
							
							
								
								Adds the missing tests for  #2405  
							
							
							
						 
						
							2014-06-01 22:21:31 +02:00  
				
					
						
							
							
								 
						
							
								e868a8437f 
								
							 
						 
						
							
							
								
								Includes tests for frontmatter defaults in documents  
							
							
							
						 
						
							2014-06-01 22:21:31 +02:00  
				
					
						
							
							
								 
						
							
								ed87454ff8 
								
							 
						 
						
							
							
								
								Remove tests for gists.  
							
							
							
						 
						
							2014-06-01 14:01:57 -04:00  
				
					
						
							
							
								 
						
							
								83fb1fd0f6 
								
							 
						 
						
							
							
								
								Merge pull request  #2444  from createdbypete/configurable-logger  
							
							
							
						 
						
							2014-05-30 18:16:47 -04:00  
				
					
						
							
							
								 
						
							
								6ba077cf37 
								
							 
						 
						
							
							
								
								Remove `Command.globs` method  
							
							... 
							
							
							
							It is no longer being used. 
							
						 
						
							2014-05-28 01:15:07 -04:00  
				
					
						
							
							
								 
						
							
								72c410363c 
								
							 
						 
						
							
							
								
								Keep parents of directories in keep_files  
							
							... 
							
							
							
							Closes  #1297  
						
							2014-05-27 21:11:17 +02:00  
				
					
						
							
							
								 
						
							
								04baeefaa8 
								
							 
						 
						
							
							
								
								Make sure Cleaner doesn't remove dirs if they only contain subdirs  
							
							... 
							
							
							
							Closes  #2204  
						
							2014-05-27 18:06:52 +02:00  
				
					
						
							
							
								 
						
							
								9e4ef3cbff 
								
							 
						 
						
							
							
								
								Add the paginator as a plugin: jekyll-paginate  
							
							
							
						 
						
							2014-05-26 20:09:33 -04:00  
				
					
						
							
							
								 
						
							
								e6345f39a9 
								
							 
						 
						
							
							
								
								Renaming LogWriter to LogAdapter and adding tests for class  
							
							... 
							
							
							
							String coloring moved to Stevenson as not responsibility of LogAdapter 
							
						 
						
							2014-05-24 21:22:10 +01:00  
				
					
						
							
							
								 
						
							
								b9c3d8ba03 
								
							 
						 
						
							
							
								
								Merge pull request  #2373  from tschmidt/handle-categories-in-site-config-defaults  
							
							
							
						 
						
							2014-05-21 01:10:37 -04:00  
				
					
						
							
							
								 
						
							
								3c6377d665 
								
							 
						 
						
							
							
								
								Merge pull request  #2395  from rdumont/data-subdirectories  
							
							
							
						 
						
							2014-05-21 01:09:15 -04:00  
				
					
						
							
							
								 
						
							
								5aefaa1c48 
								
							 
						 
						
							
							
								
								Merge pull request  #2418  from mathbruyen/collections_permalink  
							
							
							
						 
						
							2014-05-20 22:52:29 -04:00  
				
					
						
							
							
								 
						
							
								7e05b6e0b3 
								
							 
						 
						
							
							
								
								Merge pull request  #2420  from albertogg/fix-encoding-issue  
							
							
							
						 
						
							2014-05-20 22:35:50 -04:00  
				
					
						
							
							
								 
						
							
								879184fe37 
								
							 
						 
						
							
							
								
								Update unescaped string test  
							
							... 
							
							
							
							Nothing was being tested without explicitly making the string
encoding ASCII. 
							
						 
						
							2014-05-20 17:04:08 -04:30  
				
					
						
							
							
								 
						
							
								7ce849a2b6 
								
							 
						 
						
							
							
								
								Revert changes and add encoding to the test file  
							
							... 
							
							
							
							* Add encoding to the test file as Ruby 1.9.3 doesn’t defaults to utf-8.
* Remove the forced encoding as encode seems too aggressive. 
							
						 
						
							2014-05-20 00:03:40 -04:30