a70d89a862 
								
							 
						 
						
							
							
								
								Rubocop: Style/SpaceAfterComma  
							
							... 
							
							
							
							- Space missing after comma 
							
						 
						
							2016-01-03 15:56:44 -08:00  
				
					
						
							
							
								 
						
							
								cda226de45 
								
							 
						 
						
							
							
								
								Rubocop: Style/EmptyLinesAroundClassBody  
							
							... 
							
							
							
							- Extra empty line detected at class body end 
							
						 
						
							2016-01-03 15:55:33 -08:00  
				
					
						
							
							
								 
						
							
								2530a8cdfc 
								
							 
						 
						
							
							
								
								Rubocop: Style/HashSyntax  
							
							... 
							
							
							
							- Use hash rockets syntax 
							
						 
						
							2016-01-03 15:49:22 -08:00  
				
					
						
							
							
								 
						
							
								d157a04c6d 
								
							 
						 
						
							
							
								
								Rubocop: Performance/StringReplacement  
							
							... 
							
							
							
							- Use delete! instead of gsub!
 - Use tr instead of gsub 
							
						 
						
							2016-01-03 15:47:31 -08:00  
				
					
						
							
							
								 
						
							
								ff5f7b7120 
								
							 
						 
						
							
							
								
								Rubocop: Style/DeprecatedHashMethods  
							
							... 
							
							
							
							- Hash#has_key? is deprecated in favor of Hash#key?
Add method `key?` to Drop 
							
						 
						
							2016-01-03 15:41:04 -08:00  
				
					
						
							
							
								 
						
							
								98a19cdf2b 
								
							 
						 
						
							
							
								
								Rubocop: Style/PercentLiteralDelimiters  
							
							... 
							
							
							
							- %w-literals should be delimited by ( and )
Rubocop: Style/WordArray
 - Use %w or %W for array of words 
							
						 
						
							2016-01-03 15:32:11 -08:00  
				
					
						
							
							
								 
						
							
								fb0457bf3d 
								
							 
						 
						
							
							
								
								Rubocop: Style/AndOr  
							
							... 
							
							
							
							- Use && instead of and
 - Use || instead of or 
							
						 
						
							2016-01-03 15:30:26 -08:00  
				
					
						
							
							
								 
						
							
								6550867051 
								
							 
						 
						
							
							
								
								Rubocop: Style/SpecialGlobalVars  
							
							... 
							
							
							
							- Prefer $LOAD_PATH over $: 
							
						 
						
							2016-01-03 15:29:49 -08:00  
				
					
						
							
							
								 
						
							
								8223ebd861 
								
							 
						 
						
							
							
								
								Use select and find instead of conditional loop  
							
							
							
						 
						
							2016-01-03 15:24:18 -08:00  
				
					
						
							
							
								 
						
							
								0eae36aec2 
								
							 
						 
						
							
							
								
								Rubocop: Style/LineEndConcatenation  
							
							... 
							
							
							
							- Use \ instead of + or << to concatenate those strings 
							
						 
						
							2016-01-03 14:41:49 -08:00  
				
					
						
							
							
								 
						
							
								44d2995277 
								
							 
						 
						
							
							
								
								Rubocop: Style/Semicolon  
							
							... 
							
							
							
							- Do not use semicolons to terminate expressions 
							
						 
						
							2016-01-03 14:40:45 -08:00  
				
					
						
							
							
								 
						
							
								31dd0ebed5 
								
							 
						 
						
							
							
								
								Rubocop: Style/EmptyLiteral  
							
							... 
							
							
							
							- Use array literal [] instead of Array.new
 - Use hash literal {} instead of Hash.new 
							
						 
						
							2016-01-03 14:39:01 -08:00  
				
					
						
							
							
								 
						
							
								ffdbeb89dd 
								
							 
						 
						
							
							
								
								Further refine our Rubocop to the current styles.  
							
							
							
						 
						
							2016-01-03 15:57:47 -06:00  
				
					
						
							
							
								 
						
							
								22a0be3f7b 
								
							 
						 
						
							
							
								
								Escape html from site.title and page.title  
							
							
							
						 
						
							2016-01-03 16:10:38 -05:00  
				
					
						
							
							
								 
						
							
								8e00301fca 
								
							 
						 
						
							
							
								
								Update copyright notices to 2016 [ci skip]  
							
							
							
						 
						
							2016-01-03 17:04:41 +05:30  
				
					
						
							
							
								 
						
							
								b7d5a26d53 
								
							 
						 
						
							
							
								
								Move around CodeClimate so people can do `bundle exec rubocop`.  
							
							... 
							
							
							
							/cc @pathawks -- This is why you were not getting the custom settings we had
made and some things were showing up as broken when they weren't.  Sorry. 
							
						 
						
							2016-01-03 02:21:21 -06:00  
				
					
						
							
							
								 
						
							
								a2623be3da 
								
							 
						 
						
							
							
								
								Be consistent with your hashes and arrays.  
							
							... 
							
							
							
							```
val = %W(hello world
                 world)
```
```
var = %W(
  hello
  world
)
```
```
var = %W(hello world)
``` 
							
						 
						
							2016-01-03 00:15:31 -06:00  
				
					
						
							
							
								 
						
							
								2a280b7f62 
								
							 
						 
						
							
							
								
								Reduce our surface, extend self is useful for some modules.  
							
							... 
							
							
							
							We should handle extend self and module_function on a case-by-case basis because there
are times when extend self is useful, especially when you wish a module to be included but also
available on itself.  `module_function` does not allow this. 
							
						 
						
							2016-01-02 23:58:59 -06:00  
				
					
						
							
							
								 
						
							
								13f520f2b4 
								
							 
						 
						
							
							
								
								Added content on relative permalinks  
							
							... 
							
							
							
							Could not find documentation on issues with relative permalinks. Added what fixed it for me. 
							
						 
						
							2015-12-30 16:07:15 -08:00  
				
					
						
							
							
								 
						
							
								519c0f1b38 
								
							 
						 
						
							
							
								
								Update history to reflect merge of  #4293  
							
							... 
							
							
							
							[ci skip] 
							
						 
						
							2015-12-30 10:43:01 -08:00  
				
					
						
							
							
								 
						
							
								f5fe4b89bd 
								
							 
						 
						
							
							
								
								Merge pull request  #4293  from alfredxing/incremental-docs  
							
							... 
							
							
							
							Merge pull request 4293 
							
						 
						
							2015-12-30 10:42:34 -08:00  
				
					
						
							
							
								 
						
							
								a1c97c66fb 
								
							 
						 
						
							
							
								
								Update history to reflect merge of  #4299  
							
							... 
							
							
							
							[ci skip] 
							
						 
						
							2015-12-30 09:26:18 -08:00  
				
					
						
							
							
								 
						
							
								fdffc8aaaa 
								
							 
						 
						
							
							
								
								Merge pull request  #4299  from pathawks/jekyll-commonmark  
							
							... 
							
							
							
							Merge pull request 4299 
							
						 
						
							2015-12-30 09:24:43 -08:00  
				
					
						
							
							
								 
						
							
								bf4bfcf4f0 
								
							 
						 
						
							
							
								
								Add link to jekyll-commonmark  
							
							
							
						 
						
							2015-12-29 18:02:59 -08:00  
				
					
						
							
							
								 
						
							
								61bbc0666a 
								
							 
						 
						
							
							
								
								Merge pull request  #1  from kakoma/kakoma-patch-1  
							
							... 
							
							
							
							Use permalink Front Matter variable for clean URLs 
							
						 
						
							2015-12-28 18:49:39 +03:00  
				
					
						
							
							
								 
						
							
								0309c940df 
								
							 
						 
						
							
							
								
								Use permalink Front Matter variable for clean URLs  
							
							... 
							
							
							
							Add pro Tip to use permalink front matter variable to get clean URLs 
							
						 
						
							2015-12-28 18:48:52 +03:00  
				
					
						
							
							
								 
						
							
								e98f543513 
								
							 
						 
						
							
							
								
								Add some documentation for incremental regeneration  
							
							
							
						 
						
							2015-12-27 19:45:16 -08:00  
				
					
						
							
							
								 
						
							
								e048e428d1 
								
							 
						 
						
							
							
								
								Update History.markdown  
							
							
							
						 
						
							2015-12-27 12:56:42 -06:00  
				
					
						
							
							
								 
						
							
								43618c90c7 
								
							 
						 
						
							
							
								
								Merge pull request  #4292  from jekyll/pull/fix-liquid-drop-requires  
							
							... 
							
							
							
							Move require "jekyll/drops/drop" to "jekyll.rb"
Linux does not read files in alphanumeric order, this can lead to
Jekyll drops not working on Linux because the assumption here is that
the collection drop will be required first. 
							
						 
						
							2015-12-27 12:55:51 -06:00  
				
					
						
							
							
								 
						
							
								f2f88dbd9f 
								
							 
						 
						
							
							
								
								Move require "jekyll/drops/drop" to "jekyll.rb"  
							
							... 
							
							
							
							Linux does not read files in alphanumeric order, this can lead to
Jekyll drops not working on Linux because the assumption here is that
the collection drop will be required first. 
							
						 
						
							2015-12-27 12:48:21 -06:00  
				
					
						
							
							
								 
						
							
								5034216637 
								
							 
						 
						
							
							
								
								Release  💎  3.1.0.pre.beta1  
							
							
							
						 
						
							2015-12-27 08:32:08 -05:00  
				
					
						
							
							
								 
						
							
								cb342c375d 
								
							 
						 
						
							
							
								
								Update history to reflect merge of  #4289  
							
							... 
							
							
							
							[ci skip] 
							
						 
						
							2015-12-27 08:27:37 -05:00  
				
					
						
							
							
								 
						
							
								7c4876d2eb 
								
							 
						 
						
							
							
								
								Merge pull request  #4289  from jekyll/fix-utils-deep-merge-drops  
							
							... 
							
							
							
							Merge pull request 4289 
							
						 
						
							2015-12-27 08:27:25 -05:00  
				
					
						
							
							
								 
						
							
								e302873203 
								
							 
						 
						
							
							
								
								Update history to reflect merge of  #3771  
							
							... 
							
							
							
							[ci skip] 
							
						 
						
							2015-12-27 08:25:29 -05:00  
				
					
						
							
							
								 
						
							
								1b73751abf 
								
							 
						 
						
							
							
								
								Merge branch 'fixup-custom-markdown'  
							
							... 
							
							
							
							* fixup-custom-markdown:
  markdown: minor style fixes
  Add support for underscores.
  Refactor: lib/jekyll/convertor/markdown.rb - tests: no additions/breaks. 
							
						 
						
							2015-12-27 08:24:16 -05:00  
				
					
						
							
							
								 
						
							
								8e887dcd8b 
								
							 
						 
						
							
							
								
								markdown: minor style fixes  
							
							... 
							
							
							
							ref: #3771  
							
						 
						
							2015-12-27 08:24:00 -05:00  
				
					
						
							
							
								 
						
							
								5bf596b239 
								
							 
						 
						
							
							
								
								utils/drops: update Drop to support Utils.deep_merge_hashes  
							
							... 
							
							
							
							Fixes  #4287  
						
							2015-12-27 08:06:37 -05:00  
				
					
						
							
							
								 
						
							
								69a6323599 
								
							 
						 
						
							
							
								
								Utils.deep_merge_hashes failing test  
							
							
							
						 
						
							2015-12-27 07:48:45 -05:00  
				
					
						
							
							
								 
						
							
								59a5fc64f9 
								
							 
						 
						
							
							
								
								Update history to reflect merge of  #4281  
							
							... 
							
							
							
							[ci skip] 
							
						 
						
							2015-12-26 22:09:34 -05:00  
				
					
						
							
							
								 
						
							
								1bc3f63db7 
								
							 
						 
						
							
							
								
								Merge pull request  #4281  from jekyll/drop-to_h  
							
							... 
							
							
							
							Merge pull request 4281 
							
						 
						
							2015-12-26 22:09:14 -05:00  
				
					
						
							
							
								 
						
							
								fe690a8377 
								
							 
						 
						
							
							
								
								Merge pull request  #4288  from pathawks/calling-setter  
							
							... 
							
							
							
							Wrap Arguments in () when used in a setter 
							
						 
						
							2015-12-26 19:03:54 -05:00  
				
					
						
							
							
								 
						
							
								a47ce7b655 
								
							 
						 
						
							
							
								
								Wrap Arguments in () when used in a setter  
							
							
							
						 
						
							2015-12-26 12:48:20 -08:00  
				
					
						
							
							
								 
						
							
								d138558c1d 
								
							 
						 
						
							
							
								
								drops: provide #to_h to allow for hash introspection  
							
							... 
							
							
							
							Follow-up to #4277  
							
						 
						
							2015-12-26 14:25:29 -05:00  
				
					
						
							
							
								 
						
							
								cc5937815e 
								
							 
						 
						
							
							
								
								Update history to reflect merge of  #4285  
							
							... 
							
							
							
							[ci skip] 
							
						 
						
							2015-12-26 13:53:08 -05:00  
				
					
						
							
							
								 
						
							
								f386752184 
								
							 
						 
						
							
							
								
								Merge pull request  #4285  from jekyll/drop-refactor  
							
							... 
							
							
							
							Merge pull request 4285 
							
						 
						
							2015-12-26 13:50:03 -05:00  
				
					
						
							
							
								 
						
							
								ceca1bcf14 
								
							 
						 
						
							
							
								
								site: set the timezone in the config for consistent generation times  
							
							
							
						 
						
							2015-12-26 13:49:32 -05:00  
				
					
						
							
							
								 
						
							
								839fd45b9d 
								
							 
						 
						
							
							
								
								Update history to reflect merge of  #4286  
							
							... 
							
							
							
							[ci skip] 
							
						 
						
							2015-12-26 13:47:31 -05:00  
				
					
						
							
							
								 
						
							
								72c951fd45 
								
							 
						 
						
							
							
								
								Merge pull request  #4286  from wildlyinaccurate/patch-1  
							
							... 
							
							
							
							Merge pull request 4286 
							
						 
						
							2015-12-26 13:46:31 -05:00  
				
					
						
							
							
								 
						
							
								3fa8af2a18 
								
							 
						 
						
							
							
								
								drops: create one base Drop class which can be set as mutable or not  
							
							
							
						 
						
							2015-12-26 13:43:42 -05:00  
				
					
						
							
							
								 
						
							
								95b05cd0c5 
								
							 
						 
						
							
							
								
								Add jekyll-responsive_image to plugins list  
							
							... 
							
							
							
							[jekyll-responsive_image](https://github.com/wildlyinaccurate/jekyll-responsive-image ) has been gaining popularity recently. I thought it would be worth adding it to the documentation. 
							
						 
						
							2015-12-26 18:38:32 +00:00