hooke 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: 80fd2b7d6a26d4a019dba10f671da342732289d1
4
- data.tar.gz: 1f98ef0e57868730ddaa2d8aa583ac4aa2bf391a
3
+ metadata.gz: 2a131dc47de1ca0fdb5e3daa3df5fa5f4d4651d5
4
+ data.tar.gz: f972e7966f08e357279e1c2b59a35225c9a4df96
5
5
  SHA512:
6
- metadata.gz: 3dfea0e47a02050484e8331266fb8a4db410d9ff6db158638943de7e5b468031a2f7a251cf9a13b50f8f8df9ab6861ae8c313c5923e6cd87225bc150867ff5ae
7
- data.tar.gz: 148783307f4fc7886cfff4e46a741b1345a9ebd54695d4cdfb61552968842bde39b4fb9d93a775c3da5528fc7399f0ebe71bed930b137980e2c249088aaf1223
6
+ metadata.gz: 9022b2128d18feecc17b836b7df499f3f6bcf294e6eb763b7393b7e2fcccbd3184f5cf1a8b3474bedafdec1b54d691cb236ec5b26fe3e643f5cf95eb12ae75d5
7
+ data.tar.gz: d89e09ea8a5a2d52acd86bdf38552f53e0769f74419037a7e1866f78c9c3b247582a59b30e70c9921958a782a16345a05464327f50175b1ec56ee3407d64525a
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  Links your git hooks from your repository.
4
4
  With this gem, you can commit and share git hooks as part of your repository
5
5
 
6
+ [![Gem Version](https://badge.fury.io/rb/hooke.svg)](https://badge.fury.io/rb/hooke)
6
7
  [![Dependency Status](https://gemnasium.com/badges/github.com/ramkumar-kr/hooke.svg)](https://gemnasium.com/github.com/ramkumar-kr/hooke)
7
8
  [![Build Status](https://travis-ci.org/ramkumar-kr/hooke.svg?branch=master)](https://travis-ci.org/ramkumar-kr/hooke)
8
9
  ## Requirements
data/git_hooks/pre-commit CHANGED
@@ -1,8 +1,5 @@
1
1
  #!/bin/sh
2
2
 
3
3
  # Run linter before commit
4
- echo "Running rubocop..."
5
- bundle exec rubocop
6
- # Run tests before commit
7
- echo "Running Tests...."
8
- bundle exec rake
4
+ echo "Running rubocop and rspec..."
5
+ bundle exec rubocop && bundle exec rake
data/hooke.gemspec CHANGED
@@ -10,7 +10,8 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ['ramkumar.kr94@gmail.com']
11
11
 
12
12
  spec.summary = 'Copy and share your git hooks'
13
- spec.description = 'Creates a soft link from '
13
+ spec.description = 'Creates a soft link from git_hooks \
14
+ directory to .git/hooks on bundle install'
14
15
  spec.homepage = ''
15
16
  spec.license = 'MIT'
16
17
  spec.post_install_message = 'You are now hooked'
data/lib/hooke/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Hooke
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hooke
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
  - Ramkumar
@@ -80,7 +80,9 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0.12'
83
- description: 'Creates a soft link from '
83
+ description: |-
84
+ Creates a soft link from git_hooks \
85
+ directory to .git/hooks on bundle install
84
86
  email:
85
87
  - ramkumar.kr94@gmail.com
86
88
  executables: []