Skip to content

Instantly share code, notes, and snippets.

@jonforums
Last active December 16, 2015 15:29

Revisions

  1. jonforums revised this gist Apr 25, 2013. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -214,7 +214,7 @@ C'mon folks, stop wasting my time. You had perfectly good failure info but sent
    "page build failed." You can do better than this.

    After some good discussion at https://github.com/mojombo/jekyll/issues/997 I made this quick hack
    available at http://paste.ubuntu.com/5601897/
    available at http://paste.ubuntu.com/5601947/

    diff --git a/filters.rb.orig b/filters.rb
    index 37d4f1c..27f4e1b 100644
    @@ -232,7 +232,7 @@ available at http://paste.ubuntu.com/5601897/
    - date.xmlschema
    + case date
    + when String
    + DateTime.xmlschema
    + DateTime.xmlschema(date)
    + when Date
    + date.xmlschema
    + end
  2. jonforums revised this gist Apr 25, 2013. 1 changed file with 4 additions and 3 deletions.
    7 changes: 4 additions & 3 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -240,9 +240,10 @@ available at http://paste.ubuntu.com/5601897/

    # Format a date according to RFC-822

    and jekyll 1.0.0.rc1 correctly built and displayed my post correctly on win7 32-bit with
    ruby 2.0.0p158. Yea! I don't know the jekyll codebase well enough to know if the quick hack
    is good or bad, but 1.0.0.rc1 and friends are working for me.
    and jekyll 1.0.0.rc1 correctly built and displayed my post on win7 32-bit with ruby 2.0.0p158. Yea!

    I don't know the jekyll codebase well enough to know if the quick hack is good or bad, but 1.0.0.rc1
    and friends are working for me.

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --version
    jekyll 1.0.0.rc1
  3. jonforums revised this gist Apr 25, 2013. 1 changed file with 46 additions and 0 deletions.
    46 changes: 46 additions & 0 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -213,4 +213,50 @@ in the `date_to_schema` filter as I use markup like this in my `atom.xml` templa
    C'mon folks, stop wasting my time. You had perfectly good failure info but sent sent me an email with
    "page build failed." You can do better than this.

    After some good discussion at https://github.com/mojombo/jekyll/issues/997 I made this quick hack
    available at http://paste.ubuntu.com/5601897/

    diff --git a/filters.rb.orig b/filters.rb
    index 37d4f1c..27f4e1b 100644
    --- a/filters.rb.orig
    +++ b/filters.rb
    @@ -1,3 +1,4 @@
    +require 'date'
    require 'uri'

    module Jekyll
    @@ -53,7 +54,12 @@ module Jekyll
    #
    # Returns the formatted String.
    def date_to_xmlschema(date)
    - date.xmlschema
    + case date
    + when String
    + DateTime.xmlschema
    + when Date
    + date.xmlschema
    + end
    end

    # Format a date according to RFC-822

    and jekyll 1.0.0.rc1 correctly built and displayed my post correctly on win7 32-bit with
    ruby 2.0.0p158. Yea! I don't know the jekyll codebase well enough to know if the quick hack
    is good or bad, but 1.0.0.rc1 and friends are working for me.

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --version
    jekyll 1.0.0.rc1

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll serve --port 8080
    Configuration file: C:/Users/Jon/Documents/WebDev/jonforums.github.com/_config.yml
    Source: C:/Users/Jon/Documents/WebDev/jonforums.github.com
    Destination: C:/Users/Jon/Documents/WebDev/jonforums.github.com/_site
    Generating... done.
    [2013-04-25 14:16:39] INFO WEBrick 1.3.1
    [2013-04-25 14:16:39] INFO ruby 2.0.0 (2013-04-23) [i386-mingw32]
    [2013-04-25 14:16:39] INFO WEBrick::HTTPServer#start: pid=2872 port=8080
    trackers.localhost - - [25/Apr/2013:14:16:45 Eastern Daylight Time] "GET / HTTP/1.1" 200 146283
    - -> /
    ...

    ...TO BE CONTINUED
  4. jonforums revised this gist Apr 25, 2013. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -194,7 +194,7 @@ Ok. Let's see how things look.

    OK, let's try the new cmd line format.

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll server --port 8080
    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll serve --port 8080
    Configuration file: C:/Users/Jon/Documents/WebDev/jonforums.github.com/_config.yml
    Source: C:/Users/Jon/Documents/WebDev/jonforums.github.com
    Destination: C:/Users/Jon/Documents/WebDev/jonforums.github.com/_site
    @@ -204,7 +204,7 @@ OK, let's try the new cmd line format.
    ...
    Build Failed

    Ah, finally a failure. Looks like the GH folks have done a soft rollout of jekyll 1.0.0.rc1 and
    Ah, finally a failure. Looks like the GH folks did a soft rollout of jekyll 1.0.0.rc1 (good thing) and
    it doesn't like a date format in my jekyll generated `atom.xml` that used to work. Or maybe something
    in the `date_to_schema` filter as I use markup like this in my `atom.xml` template:

  5. jonforums revised this gist Apr 25, 2013. 1 changed file with 55 additions and 0 deletions.
    55 changes: 55 additions & 0 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -158,4 +158,59 @@ Where do things currently stand?
    Is GH testing jekyll 1.0.0.rc1 and my post is crashing the build? Who knows, I'll try it later.

    Time to call in the gurus at support@github.com


    While the GH gurus are taking a look at things, let's check out jekyll 1.0.0.rc1 shall we...

    C:\Users\Jon\Documents>gem i jekyll --pre
    Fetching: directory_watcher-1.4.1.gem (100%)
    Successfully installed directory_watcher-1.4.1
    Fetching: pygments.rb-0.4.2.gem (100%)
    Successfully installed pygments.rb-0.4.2
    Fetching: highline-1.6.18.gem (100%)
    Successfully installed highline-1.6.18
    Fetching: commander-4.1.3.gem (100%)
    Successfully installed commander-4.1.3
    Fetching: safe_yaml-0.7.1.gem (100%)
    Successfully installed safe_yaml-0.7.1
    Fetching: colorator-0.1.gem (100%)
    Successfully installed colorator-0.1
    Fetching: jekyll-1.0.0.rc1.gem (100%)
    Successfully installed jekyll-1.0.0.rc1
    7 gems installed

    Nooooooooooooo...look at all those new dependencies. It's looking like Gem Hell time for jekyll. Sigh.

    Ok. Let's see how things look.

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --version
    jekyll 1.0.0.rc1

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --safe --server 8080
    Deprecation: The --server command has been replaced by the 'serve' subcommand.
    C:/ruby200/lib/ruby/gems/2.0.0/gems/commander-4.1.3/lib/commander/runner.rb:365:in `block
    in require_program': program version required (Commander::Runner::CommandError)
    from C:/ruby200/lib/ruby/gems/2.0.0/gems/commander-4.1.3/lib/commander/runner.rb:364:in `each'

    OK, let's try the new cmd line format.

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll server --port 8080
    Configuration file: C:/Users/Jon/Documents/WebDev/jonforums.github.com/_config.yml
    Source: C:/Users/Jon/Documents/WebDev/jonforums.github.com
    Destination: C:/Users/Jon/Documents/WebDev/jonforums.github.com/_site
    Generating... Liquid Exception: undefined method `xmlschema' for "2012-12-19T00:57:47-05:00":String in atom.xml
    C:/ruby200/lib/ruby/gems/2.0.0/gems/jekyll-1.0.0.rc1/lib/jekyll/filters.rb:56:in `date_to_xmlschema'
    C:/ruby200/lib/ruby/gems/2.0.0/gems/liquid-2.5.0/lib/liquid/strainer.rb:43:in `invoke'
    ...
    Build Failed

    Ah, finally a failure. Looks like the GH folks have done a soft rollout of jekyll 1.0.0.rc1 and
    it doesn't like a date format in my jekyll generated `atom.xml` that used to work. Or maybe something
    in the `date_to_schema` filter as I use markup like this in my `atom.xml` template:

    <updated>{{ site.time | date_to_xmlschema }}</updated>

    C'mon folks, stop wasting my time. You had perfectly good failure info but sent sent me an email with
    "page build failed." You can do better than this.

    ...TO BE CONTINUED
  6. jonforums revised this gist Apr 25, 2013. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -155,4 +155,7 @@ Where do things currently stand?
    have to eat some crow suggesting Team Jekyll isn't paying attention to the windows
    platform. If they're not testing on windows, they're getting extremely lucky ;)

    Is GH testing jekyll 1.0.0.rc1 and my post is crashing the build? Who knows, I'll try it later.

    Time to call in the gurus at support@github.com
    ...TO BE CONTINUED
  7. jonforums revised this gist Apr 25, 2013. 1 changed file with 13 additions and 1 deletion.
    14 changes: 13 additions & 1 deletion caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -141,6 +141,18 @@ Survey says!?
    [2013-04-24 19:49:50] INFO WEBrick::HTTPServer#start: pid=2756 port=8080
    Red - - [24/Apr/2013:19:50:01 Eastern Daylight Time] "GET / HTTP/1.1" 200 133919- ->

    Nope. All runs well and looks well with the latest goodies. Something else is happening :(
    Nope. All runs well and looks well with the latest gems on Win7 32-bit with ruby 2.0.0p158.

    Where do things currently stand?

    1. Jekyll on GH is failing to build my latest post.
    2. GH page build failure notices are unhelpful in this case.
    3. My latest post builds fine on win7 32-bit with the following rubies:
    * 1.9.3p415: jekyll 0.11.2 + patched posix-spawn
    * 2.0.0p158: jekyll 0.12.0
    * 2.0.0p158: jekyll 0.12.1
    4. The issue appears to have nothing to do with jekyll on windows and I'm likely to
    have to eat some crow suggesting Team Jekyll isn't paying attention to the windows
    platform. If they're not testing on windows, they're getting extremely lucky ;)

    ...TO BE CONTINUED
  8. jonforums revised this gist Apr 25, 2013. 1 changed file with 8 additions and 0 deletions.
    8 changes: 8 additions & 0 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -119,6 +119,14 @@ and GH is running with jekyll 0.12.1 and newer friends and things are failing.
    Successfully installed pygments.rb-0.5.0
    Gems updated: kramdown jekyll pygments.rb

    C:\>gem clean
    Cleaning up installed gems...
    Attempting to uninstall jekyll-0.12.0
    Successfully uninstalled jekyll-0.12.0
    Attempting to uninstall kramdown-0.13.8
    Successfully uninstalled kramdown-0.13.8
    Clean Up Complete

    Survey says!?

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --version
  9. jonforums revised this gist Apr 24, 2013. 1 changed file with 36 additions and 1 deletion.
    37 changes: 36 additions & 1 deletion caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -83,7 +83,7 @@ jekyll 0.12.0, so let's try this:
    Successfully installed yajl-ruby-1.1.0
    1 gem installed

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --server 8080
    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --safe --server 8080
    Configuration from C:/Users/Jon/Documents/WebDev/jonforums.github.com/_config.yml
    Building site: C:/Users/Jon/Documents/WebDev/jonforums.github.com -> C:/Users/Jon/Document
    s/WebDev/jonforums.github.com/_site
    @@ -100,4 +100,39 @@ jekyll 0.12.0, so let's try this:
    OK, this looks about right and the page displayed correctly. So why is GH failing to build? Do I
    have a file in my local repo that didn't get committed to my GH repo? Something else?

    C:\>gem out
    jekyll (0.12.0 < 0.12.1)
    pygments.rb (0.3.7 < 0.5.0)

    Let's bump jekyll and friends to the latest versions and try again. Perhaps the GH doco is outdated
    and GH is running with jekyll 0.12.1 and newer friends and things are failing.

    C:\>gem up jekyll pygments.rb
    Updating installed gems
    Updating jekyll
    Fetching: kramdown-0.14.2.gem (100%)
    Successfully installed kramdown-0.14.2
    Fetching: jekyll-0.12.1.gem (100%)
    Successfully installed jekyll-0.12.1
    Updating pygments.rb
    Fetching: pygments.rb-0.5.0.gem (100%)
    Successfully installed pygments.rb-0.5.0
    Gems updated: kramdown jekyll pygments.rb

    Survey says!?

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --version
    Jekyll 0.12.1

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --safe --server 8080
    Configuration from C:/Users/Jon/Documents/WebDev/jonforums.github.com/_config.yml
    Building site: C:/Users/Jon/Documents/WebDev/jonforums.github.com -> C:/Users/Jon/Documents/WebDev/jonforums.github.com/_site
    Successfully generated site: C:/Users/Jon/Documents/WebDev/jonforums.github.com -> C:/Users/Jon/Documents/WebDev/jonforums.github.com/_site
    [2013-04-24 19:49:50] INFO WEBrick 1.3.1
    [2013-04-24 19:49:50] INFO ruby 2.0.0 (2013-04-23) [i386-mingw32]
    [2013-04-24 19:49:50] INFO WEBrick::HTTPServer#start: pid=2756 port=8080
    Red - - [24/Apr/2013:19:50:01 Eastern Daylight Time] "GET / HTTP/1.1" 200 133919- ->

    Nope. All runs well and looks well with the latest goodies. Something else is happening :(

    ...TO BE CONTINUED
  10. jonforums revised this gist Apr 24, 2013. 1 changed file with 26 additions and 2 deletions.
    28 changes: 26 additions & 2 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -73,7 +73,31 @@ OK, another time wasting setup when I-JUST-WANTED-TO-PUSH-A-SIMPLE-POST. Dammit.

    Breathe....

    OK, let's try polluting my ruby 1.9.3 install (with patched jekyll 0.11.2 env) by trying to install
    jekyll 0.12.0.
    I don't want to pollute my ruby 1.9.3 install (with patched jekyll 0.11.2 env) by trying to install
    jekyll 0.12.0, so let's try this:

    C:\>gem i yajl-ruby --platform=ruby
    Fetching: yajl-ruby-1.1.0.gem (100%)
    Temporarily enhancing PATH to include DevKit...
    Building native extensions. This could take a while...
    Successfully installed yajl-ruby-1.1.0
    1 gem installed

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --server 8080
    Configuration from C:/Users/Jon/Documents/WebDev/jonforums.github.com/_config.yml
    Building site: C:/Users/Jon/Documents/WebDev/jonforums.github.com -> C:/Users/Jon/Document
    s/WebDev/jonforums.github.com/_site
    Successfully generated site: C:/Users/Jon/Documents/WebDev/jonforums.github.com -> C:/User
    s/Jon/Documents/WebDev/jonforums.github.com/_site
    [2013-04-24 18:59:02] INFO WEBrick 1.3.1
    [2013-04-24 18:59:02] INFO ruby 2.0.0 (2013-04-23) [i386-mingw32]
    [2013-04-24 18:59:02] INFO WEBrick::HTTPServer#start: pid=1332 port=8080
    Red - - [24/Apr/2013:19:06:35 Eastern Daylight Time] "GET / HTTP/1.1" 200 133919 - -> /
    Red - - [24/Apr/2013:19:06:36 Eastern Daylight Time] "GET /css/syntax.css HTTP/1.1" 200 3264
    http://localhost:8080/ -> /css/syntax.css
    ...

    OK, this looks about right and the page displayed correctly. So why is GH failing to build? Do I
    have a file in my local repo that didn't get committed to my GH repo? Something else?

    ...TO BE CONTINUED
  11. jonforums created this gist Apr 24, 2013.
    79 changes: 79 additions & 0 deletions caca_de_jekyll.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,79 @@
    I run a patched 0.11.2 jekyll environment (patched posix-spawn) on my local win7 box because of
    breaking changes the devs made in the past that impact windows users. Hard to tell if they even
    tested on windows boxes before pushing. Perhaps things are different with the recent commit activity.

    And no time to confirm whether they're doing the right things for jekyll-on-windows users, or just
    hoping all the recent commits for all the dependencies Just Work.

    After a long hiatus, I just pushed a post (worked on my local 0.11.2 jekyll setup) about Go's
    fantastic cross-build capabilities and was rewarded with this exciting email from GH:

    Subject: [jonforums.github.com] Page build failure
    Date: Wed, 24 Apr 2013 14:50:50 -0700

    The page build failed with the following error:

    page build failed

    For information on troubleshooting Jekyll see https://help.github.com/articles/using-jekyll-with-pages#troubleshooting
    If you have any questions please contact GitHub Support.

    Amazing. The phrase you're searching for is...Can this be any less fk'n helpful!?

    Even though the Go post displayed perfectly on my local system, perhaps I did punt the syntax and
    it's my fault. But *no one* will ever know from that pathetic error message.

    Fine. Time to find out what new ways jekyll has found to break things on my windows box. Or discover
    I've got a really bad attitude toward jekyll. The help docs say GH is using jekyll `=0.12.0` so let's
    try a fresh install of the GH configuration:

    C:\>gem i jekyll --version 0.12.0
    Fetching: liquid-2.5.0.gem (100%)
    Successfully installed liquid-2.5.0
    Temporarily enhancing PATH to include DevKit...
    Building native extensions. This could take a while...
    Successfully installed fast-stemmer-1.0.2
    Fetching: classifier-1.3.3.gem (100%)
    Successfully installed classifier-1.3.3
    Fetching: directory_watcher-1.5.1.gem (100%)
    Successfully installed directory_watcher-1.5.1
    Fetching: syntax-1.0.0.gem (100%)
    Successfully installed syntax-1.0.0
    Fetching: maruku-0.6.1.gem (100%)
    Successfully installed maruku-0.6.1
    Fetching: kramdown-0.13.8.gem (100%)
    Successfully installed kramdown-0.13.8
    Fetching: yajl-ruby-1.1.0-x86-mingw32.gem (100%)
    Successfully installed yajl-ruby-1.1.0-x86-mingw32
    Fetching: posix-spawn-0.3.6.gem (100%)
    Building native extensions. This could take a while...
    Successfully installed posix-spawn-0.3.6
    Fetching: pygments.rb-0.3.7.gem (100%)
    Successfully installed pygments.rb-0.3.7
    Fetching: jekyll-0.12.0.gem (100%)
    Successfully installed jekyll-0.12.0
    11 gems installed

    Great, no install errors. I know, I know, you're asking the same questions I am like
    "11 gems to install to get jekyll working?" and "What's this posix-spawn gem doing getting
    installed on my windows box?"

    But no matter, lets test out the new post and find out what's wrong

    C:\Users\Jon\Documents\WebDev\jonforums.github.com>jekyll --server 8080
    C:/ruby200/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in `require': cannot load such file -- yajl/2.0/yajl (LoadError)
    from C:/ruby200/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in `require'
    from C:/ruby200/lib/ruby/gems/2.0.0/gems/yajl-ruby-1.1.0-x86-mingw32/lib/yajl/yajl.rb:2:in `<top (required)>'

    Great, jekyll'd again! Well not quite. Did you catch the real error? It's our good friend yajl-ruby
    choking on ruby 2.0.0 on windows because it's binary gem only provides 1.8 and 1.9 pieces and
    hasn't yet upgraded to support 2.0.0.

    OK, another time wasting setup when I-JUST-WANTED-TO-PUSH-A-SIMPLE-POST. Dammit.

    Breathe....

    OK, let's try polluting my ruby 1.9.3 install (with patched jekyll 0.11.2 env) by trying to install
    jekyll 0.12.0.

    ...TO BE CONTINUED