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: jimweirich/dim
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: subelsky/dim
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.

Commits on Jun 11, 2013

  1. update gemfile

    subelsky committed Jun 11, 2013
    Copy the full SHA
    9fb145b View commit details
  2. fix ruby-version file

    subelsky committed Jun 11, 2013
    Copy the full SHA
    fc6c3d5 View commit details

Commits on Jul 30, 2013

  1. Copy the full SHA
    ff063ae View commit details
  2. vers bump

    subelsky committed Jul 30, 2013
    Copy the full SHA
    cc9bbad View commit details

Commits on Jul 31, 2013

  1. ignore gemfile.lock

    subelsky committed Jul 31, 2013
    Copy the full SHA
    4e76533 View commit details
  2. Copy the full SHA
    df43db6 View commit details
  3. add override capability

    subelsky committed Jul 31, 2013
    Copy the full SHA
    7c7baf8 View commit details
  4. vers bump Dim to 1.2.5

    subelsky committed Jul 31, 2013
    Copy the full SHA
    98f55aa View commit details

Commits on Nov 6, 2013

  1. Copy the full SHA
    4f4932d View commit details
  2. version bump to 1.2.6

    subelsky committed Nov 6, 2013
    Copy the full SHA
    e74b4f3 View commit details
  3. Copy the full SHA
    02a0fea View commit details
  4. vers bump to 1.2.7

    subelsky committed Nov 6, 2013
    Copy the full SHA
    41257b7 View commit details

Commits on Jul 17, 2014

  1. Pulled ruby version to 2.0.0

    Brian Kemper committed Jul 17, 2014
    Copy the full SHA
    371fe06 View commit details
  2. Removed rspec-given and converted specs to rspec 3.0

    Brian Kemper committed Jul 17, 2014
    Copy the full SHA
    9f24d77 View commit details
  3. New #service_exists? and #verify_dependencies!

    Brian Kemper committed Jul 17, 2014
    Copy the full SHA
    16698f3 View commit details

Commits on May 5, 2017

  1. remove ruby-version

    Mike Subelsky committed May 5, 2017
    Copy the full SHA
    0b71ba9 View commit details
  2. add README code formatting changes from @zekefast

    Mike Subelsky committed May 5, 2017
    Copy the full SHA
    a60c421 View commit details
  3. Fix invalid spec

    Leif Gustafson authored and Mike Subelsky committed May 5, 2017
    Copy the full SHA
    92fbe0a View commit details
  4. Add test that fails due to caching bug

    Leif Gustafson authored and Mike Subelsky committed May 5, 2017
    Copy the full SHA
    ee8f1ec View commit details
  5. Fix caching bug when overriding a service that has already been called

    Leif Gustafson authored and Mike Subelsky committed May 5, 2017
    Copy the full SHA
    242c39d View commit details
  6. Update wording of scenario

    Leif Gustafson authored and Mike Subelsky committed May 5, 2017
    Copy the full SHA
    67b8e49 View commit details

Commits on Aug 27, 2017

  1. fix merge conflicts

    subelsky committed Aug 27, 2017
    Copy the full SHA
    badfc9d View commit details
  2. Copy the full SHA
    2ceda7b View commit details
  3. version bump to v1.2.8

    subelsky committed Aug 27, 2017
    Copy the full SHA
    a5b9f79 View commit details
  4. add gem release task

    subelsky committed Aug 27, 2017
    Copy the full SHA
    7a8e827 View commit details

Commits on Aug 28, 2017

  1. initial setup for Travis CI

    subelsky committed Aug 28, 2017
    Copy the full SHA
    027e1e0 View commit details
  2. Copy the full SHA
    349ab00 View commit details
  3. add travis CI build status

    subelsky committed Aug 28, 2017
    Copy the full SHA
    a0d818b View commit details

Commits on Sep 5, 2017

  1. add nicer badges to README

    subelsky committed Sep 5, 2017
    Copy the full SHA
    11acc8e View commit details
  2. Copy the full SHA
    f7d817c View commit details

Commits on Dec 21, 2017

  1. chore: update README links

    subelsky committed Dec 21, 2017
    Copy the full SHA
    d7c696b View commit details
  2. Copy the full SHA
    aff6a87 View commit details

Commits on Jan 13, 2020

  1. Copy the full SHA
    4115d1d View commit details

Commits on Jul 31, 2020

  1. Copy the full SHA
    572b1df View commit details
  2. Copy the full SHA
    0eb2425 View commit details
Showing with 733 additions and 236 deletions.
  1. +1 −0 .gitignore
  2. +0 −34 .rvmrc
  3. +7 −0 .travis.yml
  4. +0 −27 Gemfile.lock
  5. +428 −0 LICENSE.txt
  6. +74 −48 README.markdown
  7. +3 −0 Rakefile
  8. +3 −3 dim.gemspec
  9. +37 −5 lib/dim.rb
  10. +1 −1 lib/version.rb
  11. +179 −118 spec/dim_spec.rb
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.project_env.rc
.togglerc
*.gem
Gemfile.lock
34 changes: 0 additions & 34 deletions .rvmrc

This file was deleted.

7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
27 changes: 0 additions & 27 deletions Gemfile.lock

This file was deleted.

Loading