Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: OrthoDex/coffeescript-cookbook.github.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: coffeescript-cookbook/coffeescript-cookbook.github.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 10 files changed
  • 4 contributors

Commits on Jan 11, 2017

  1. Update development dependencies

    The versions of gems specified in the Gemfile.lock require ruby 1.9.3.
    Update them to the latest and greatest gems.
    blowmage committed Jan 11, 2017
    Configuration menu
    Copy the full SHA
    e3fbf9f View commit details
    Browse the repository at this point in the history
  2. Use new Jekyll configuration for code highlighting

    This removes the following warning:
    
    Deprecation: The 'pygments' configuration option has been renamed to 'highlighter'.
    Please update your config file accordingly. The allowed values are 'rouge', 'pygments' or null.
    blowmage committed Jan 11, 2017
    Configuration menu
    Copy the full SHA
    482af69 View commit details
    Browse the repository at this point in the history
  3. Merge pull request coffeescript-cookbook#143 from blowmage/update-dev…

    …elopment
    
    Update development environment
    
    [refs coffeescript-cookbook#142]
    blowmage authored Jan 11, 2017
    Configuration menu
    Copy the full SHA
    3346056 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50515c7 View commit details
    Browse the repository at this point in the history
  5. Merge pull request coffeescript-cookbook#144 from blowmage/update-data

    Replace page data with site data
    
    [refs coffeescript-cookbook#142]
    blowmage authored Jan 11, 2017
    Configuration menu
    Copy the full SHA
    7ff9e5c View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2017

  1. Add more accurate details on CS ?= opperator (coffeescript-cookbook#146)

    * Update object-literal.md
    
    The example was wrong. It stated that ?= is similar to JS || when the || will affect not only not defined scenario but also any falsy values (values that evaluate as false)
    
    There are way to many differences between the 2:
    
    1. window.var = false;
    2. window.var = 0;
    3. window.var = '';
    4. window.var = [];
    5. window.var = null;
    
    window.var ?= 'something'
    console.log(window.var) ->
    1. false
    2. 0
    3. ''
    4. []
    5. 'something'
    
    window.var ||= 'something'
    console.log(window.var) ->
    1. 'something'
    2. 'something'
    3. 'something'
    4. []
    5. 'something'
    
    * Update object-literal.md
    
    * Update object-literal.md
    kikorb authored and sukima committed Mar 17, 2017
    Configuration menu
    Copy the full SHA
    685b09b View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2017

  1. Add myself to the Developers list

    Because I've [contributed fixes to the code base][1] I thought maybe I could be
    on the attributions list.
    
    [1]: https://github.com/coffeescript-cookbook/coffeescript-cookbook.github.io/search?q=author%3Asukima&type=Commits
    sukima authored Nov 5, 2017
    Configuration menu
    Copy the full SHA
    b152fa0 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2017

  1. Merge pull request coffeescript-cookbook#150 from coffeescript-cookbo…

    …ok/authors-self
    
    Add myself to the Developers list
    dbrady authored Nov 6, 2017
    Configuration menu
    Copy the full SHA
    53fc002 View commit details
    Browse the repository at this point in the history
Loading