Sha256: a9178d2c466927de7a2099909b7a123fd62fe9630006a874d2eeac054158f03d

Contents?: true

Size: 981 Bytes

Versions: 8

Compression:

Stored size: 981 Bytes

Contents

# -*- coding: utf-8; mode: ruby; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- vim:fenc=utf-8:filetype=ruby:et:sw=2:ts=2:sts=2

if RUBY_VERSION < '1.9'
  # This is for Unicode support in Ruby 1.8
  $KCODE = 'u';
  require 'jcode'
end

if RUBY_VERSION >= '1.9'
  Encoding.default_external = "utf-8"
  Encoding.default_internal = "utf-8"

  require 'coveralls'
  Coveralls.wear!
end

require 'rubygems'
require 'faker'
require 'rspec/core'

RSpec.configure do |conf|
  conf.mock_with :rr
end

unless defined? REVISIONS
  REVISIONS = ['e28ad77bba0574241e6eb64dfd0c1291b221effe', # 2 files updated
             'a4629e707d80a5769f7a71ca6ed9471015e14dc9', # 1 file updated
             'dce6ade4cdc2833b53bd600ef10f9bce83c7102d', # 6 files updated
             '51b986619d88f7ba98be7d271188785cbbb541a0', # 3 files updated
             '055850e7d925110322b8db4e17c3b840d76e144c'] # Empty merge message

  FIXTURES_PATH = (File.dirname(__FILE__) + '/fixtures/').freeze
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
git-commit-notifier-0.12.10 spec/spec_helper.rb
git-commit-notifier-0.12.6 spec/spec_helper.rb
git-commit-notifier-0.12.5 spec/spec_helper.rb
git-commit-notifier-0.12.3 spec/spec_helper.rb
git-commit-notifier-0.12.2 spec/spec_helper.rb
git-commit-notifier-0.12.1 spec/spec_helper.rb
git-commit-notifier-0.12.0 spec/spec_helper.rb
git-commit-notifier-0.11.11 spec/spec_helper.rb