flowdock-git-hook 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db9e59fadcdfb7e5c9abdc0833bc16674be85612
4
- data.tar.gz: 888ac972d310c012029d3aad21942f5f5ebd7eed
3
+ metadata.gz: e72d345b567c9b14ff28120eeec839c449276c07
4
+ data.tar.gz: 41b0c4c05cc6d4714ef4f669039c6d0d27297d67
5
5
  SHA512:
6
- metadata.gz: e3d7c287e9b62c3a2b7518cf7f04c750e241ac7671f1d02d79f2c13cdae3639f41ff70b8eea87a4e4df1ecf8c0db63a28794f987c8607d3129aae67368bb9389
7
- data.tar.gz: 6aa623fb9d787a681221747cd627fd768d82abd3f90fba37c28d38fb998af8acb0ea91f929b8d284df6be8e7d2c7369b2bafd8cd1cf0f31dcce6b7846e5d7e64
6
+ metadata.gz: dcf87d59bbf2a874a86cead5bd9eacba7ea7e97a8a99d17211ff51c2c694e9ba3424303375f6990ad760a32030e602114fea568fd292ad28cad4935c97196a2e
7
+ data.tar.gz: 4b46972d7e1cab1b9eacbab68c10b6ac023bff4c7fd29a6faafa221cc082dae0c1728f0005b450788a1388869678e54fcd9691e561af4c93aba6154dcd135c9d
data/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Git Post-Receive hook for [Flowdock](http://flowdock.com).
4
4
 
5
+ ## Note
6
+
7
+ Version 1.0. supports only source flow tokens. 0.x versions use a deprecated API which will be removed soon.
8
+
5
9
  ## Installation
6
10
 
7
11
  First, you need to install this gem. You need to have Ruby and Rubygems installed in your system.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: flowdock-git-hook 1.0.0 ruby lib
5
+ # stub: flowdock-git-hook 1.0.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "flowdock-git-hook"
9
- s.version = "1.0.0"
9
+ s.version = "1.0.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Ville Lautanala"]
14
- s.date = "2015-07-22"
14
+ s.date = "2015-08-13"
15
15
  s.email = "lautis@gmail.com"
16
16
  s.extra_rdoc_files = [
17
17
  "LICENSE.txt",
@@ -54,7 +54,10 @@ module Flowdock
54
54
  end
55
55
 
56
56
  def repo
57
- @repo ||= Grit::Repo.new(@options[:repo] || Dir.pwd)
57
+ @repo ||= Grit::Repo.new(
58
+ @options[:repo] || Dir.pwd,
59
+ is_bare: @options[:is_bare] || false
60
+ )
58
61
  end
59
62
 
60
63
  private
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flowdock-git-hook
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ville Lautanala
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-22 00:00:00.000000000 Z
11
+ date: 2015-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grit