Thanks to visit codestin.com
Credit goes to github.com

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: ruby/base64
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.0
Choose a base ref
...
head repository: ruby/base64
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.1
Choose a head ref
  • 18 commits
  • 5 files changed
  • 4 contributors

Commits on Mar 16, 2021

  1. Don't use checkout@master

    hsbt committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    61fa8c7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    821d02d View commit details
    Browse the repository at this point in the history
  3. Added Ruby 3.0

    hsbt committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    ef5010e View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1 from ruby/tweak-actions

    Tweak actions
    hsbt authored Mar 16, 2021
    Configuration menu
    Copy the full SHA
    93211c8 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2021

  1. gemspec: Explicitly empty executables list

    This gem exposes no executables.
    olleolleolle authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    9d2c49c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1039779 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2021

  1. Merge pull request #2 from olleolleolle/patch-1

    gemspec: Explicitly empty executables list
    hsbt authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    892a7da View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from olleolleolle/patch-2

    CI: Quote 3.0 in YAML to avoid a String "3"
    hsbt authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    2a1ec14 View commit details
    Browse the repository at this point in the history
  3. gemspec: Use an explicit file list

    This avoids shelling out to git.
    olleolleolle committed Apr 1, 2021
    Configuration menu
    Copy the full SHA
    f45f06f View commit details
    Browse the repository at this point in the history
  4. Merge pull request #4 from olleolleolle/patch-3

    gemspec: Explicit file list
    hsbt authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    06a0825 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2021

  1. Improve Base64.urlsafe_encode64 performance

    Improves the method's performance when asked to remove padding.
    
    str.delete!("=") iterates over the entire string looking for the equals
    character, but we know that we will, at most, find two at the end of the
    string.
    jcmfernandes committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    544e0c2 View commit details
    Browse the repository at this point in the history
  2. Simplify

    Thanks @nobu!
    jcmfernandes committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    39e22ef View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2021

  1. Merge pull request #5 from jcmfernandes/improve-urlsafe_encode64-perf…

    …ormance-removing-padding
    
    Improve Base64.urlsafe_encode64 performance
    nobu authored Sep 5, 2021
    Configuration menu
    Copy the full SHA
    1f08f53 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2021

  1. Configuration menu
    Copy the full SHA
    8c82ee4 View commit details
    Browse the repository at this point in the history
  2. Out with minitest, in with test-unit

    Maybe some long time ago this used minitest? That's not the case anymore.
    jcmfernandes committed Sep 24, 2021
    Configuration menu
    Copy the full SHA
    37192dc View commit details
    Browse the repository at this point in the history
  3. Avoid unnecessary string duplication

    String#ljust returns a new string, so whenever we need to add
    padding, we can replace "-/" in place with String#tr! and avoid creating
    yet another copy of the string.
    jcmfernandes committed Sep 24, 2021
    Configuration menu
    Copy the full SHA
    6401ef5 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2021

  1. Merge pull request #6 from jcmfernandes/avoid-obj-allocation

    Avoid unnecessary string duplication in .urlsafe_decode64
    hsbt authored Sep 25, 2021
    Configuration menu
    Copy the full SHA
    00d889b View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2021

  1. Bump up base64 version to 0.1.1

    hsbt committed Oct 14, 2021
    Configuration menu
    Copy the full SHA
    b9e23b2 View commit details
    Browse the repository at this point in the history
Loading