overcommit 0.10.0 → 0.11.0

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: c401b4037c6c90452c248dfaca8cacbd549179eb
4
- data.tar.gz: 0dd31cd371594e594acf9a4801c35de6a86501fb
3
+ metadata.gz: 9c50bccbcc41b00a198c3204913170541cf86221
4
+ data.tar.gz: 98934cdbb33a1b9b9fd86a1cacdd440cbc91086a
5
5
  SHA512:
6
- metadata.gz: 87a27a2be76870493529d9f66bd518107c6bc3cfeb039801075da2d89c8d50b603c8245f871d0ceae26b9ef2b2aeb87c9b77eaad7c71548d0686e282ca17b882
7
- data.tar.gz: b40a66a5f76dd54b234940370411f5dec3bc8061efe8a5c4c2dd85493f19ab350687605dab2a634fb72a183b8bfe6682484119ea9ba5f5bdb0430270995d0e80
6
+ metadata.gz: 4ee6a86eb6075f5a5eb966edd92de95084c32c53ec9ad87c8fe5c90fb20782195fd64f1fa58a77b9142cf66c12412863f607b68912e670720918878fc3d4e182
7
+ data.tar.gz: 234dccc7f9ca2a0a8b02a2594b93a6a3fa5bcb2a082152f91150d4a0382c294e474692e4a257ae1617f211464885da5bde0071a0326e7783a4ce1b7978b48087
@@ -17,8 +17,10 @@ module Overcommit::Hook::PostCheckout
17
17
  SCRIPT_LOCATION = Overcommit::Utils.script_path('index-tags')
18
18
 
19
19
  def index_tags_in_background
20
+ ctags_args = @config['ctags_arguments']
21
+
20
22
  # TODO: come up with Ruby 1.8-friendly way to do this
21
- Process.detach(Process.spawn(SCRIPT_LOCATION))
23
+ Process.detach(Process.spawn("#{SCRIPT_LOCATION} #{ctags_args}"))
22
24
  end
23
25
  end
24
26
  end
@@ -1,4 +1,4 @@
1
1
  # Defines the gem version.
2
2
  module Overcommit
3
- VERSION = '0.10.0'
3
+ VERSION = '0.11.0'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: overcommit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Causes Engineering
@@ -15,28 +15,28 @@ dependencies:
15
15
  name: childprocess
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - '>='
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: 0.5.1
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - '>='
25
+ - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  version: 0.5.1
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: json
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - '>='
32
+ - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: '1.8'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - '>='
39
+ - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '1.8'
42
42
  - !ruby/object:Gem::Dependency
@@ -57,14 +57,14 @@ dependencies:
57
57
  name: image_optim
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ~>
60
+ - - "~>"
61
61
  - !ruby/object:Gem::Version
62
62
  version: 0.13.0
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ~>
67
+ - - "~>"
68
68
  - !ruby/object:Gem::Version
69
69
  version: 0.13.0
70
70
  description: Utility to install, configure, and extend Git hooks
@@ -80,69 +80,69 @@ files:
80
80
  - config/default.yml
81
81
  - config/templates.yml
82
82
  - lib/overcommit.rb
83
- - lib/overcommit/version.rb
84
- - lib/overcommit/hook_context.rb
83
+ - lib/overcommit/cli.rb
84
+ - lib/overcommit/configuration.rb
85
+ - lib/overcommit/configuration_loader.rb
85
86
  - lib/overcommit/constants.rb
86
- - lib/overcommit/utils.rb
87
- - lib/overcommit/hook_runner.rb
88
- - lib/overcommit/user_input.rb
89
- - lib/overcommit/subprocess.rb
90
- - lib/overcommit/hook/commit_msg/trailing_period.rb
87
+ - lib/overcommit/exceptions.rb
88
+ - lib/overcommit/hook/base.rb
89
+ - lib/overcommit/hook/commit_msg/base.rb
91
90
  - lib/overcommit/hook/commit_msg/gerrit_change_id.rb
92
- - lib/overcommit/hook/commit_msg/single_line_subject.rb
93
- - lib/overcommit/hook/commit_msg/russian_novel.rb
94
91
  - lib/overcommit/hook/commit_msg/hard_tabs.rb
92
+ - lib/overcommit/hook/commit_msg/russian_novel.rb
93
+ - lib/overcommit/hook/commit_msg/single_line_subject.rb
95
94
  - lib/overcommit/hook/commit_msg/text_width.rb
96
- - lib/overcommit/hook/commit_msg/base.rb
95
+ - lib/overcommit/hook/commit_msg/trailing_period.rb
96
+ - lib/overcommit/hook/post_checkout/base.rb
97
97
  - lib/overcommit/hook/post_checkout/bundle_check.rb
98
98
  - lib/overcommit/hook/post_checkout/index_tags.rb
99
- - lib/overcommit/hook/post_checkout/base.rb
100
- - lib/overcommit/hook/base.rb
101
99
  - lib/overcommit/hook/pre_commit/author_email.rb
102
- - lib/overcommit/hook/pre_commit/pry_binding.rb
103
- - lib/overcommit/hook/pre_commit/image_optim.rb
100
+ - lib/overcommit/hook/pre_commit/author_name.rb
101
+ - lib/overcommit/hook/pre_commit/base.rb
102
+ - lib/overcommit/hook/pre_commit/berksfile_check.rb
103
+ - lib/overcommit/hook/pre_commit/brakeman.rb
104
+ - lib/overcommit/hook/pre_commit/bundle_check.rb
105
+ - lib/overcommit/hook/pre_commit/chamber_security.rb
106
+ - lib/overcommit/hook/pre_commit/coffee_lint.rb
104
107
  - lib/overcommit/hook/pre_commit/css_lint.rb
108
+ - lib/overcommit/hook/pre_commit/haml_lint.rb
109
+ - lib/overcommit/hook/pre_commit/hard_tabs.rb
110
+ - lib/overcommit/hook/pre_commit/image_optim.rb
111
+ - lib/overcommit/hook/pre_commit/js_hint.rb
112
+ - lib/overcommit/hook/pre_commit/jscs.rb
113
+ - lib/overcommit/hook/pre_commit/json_syntax.rb
105
114
  - lib/overcommit/hook/pre_commit/jsx_hint.rb
106
115
  - lib/overcommit/hook/pre_commit/local_paths_in_gemfile.rb
107
- - lib/overcommit/hook/pre_commit/travis_lint.rb
108
- - lib/overcommit/hook/pre_commit/bundle_check.rb
109
- - lib/overcommit/hook/pre_commit/yaml_syntax.rb
110
- - lib/overcommit/hook/pre_commit/rails_schema_up_to_date.rb
111
- - lib/overcommit/hook/pre_commit/berksfile_check.rb
112
116
  - lib/overcommit/hook/pre_commit/merge_conflicts.rb
113
- - lib/overcommit/hook/pre_commit/trailing_whitespace.rb
114
- - lib/overcommit/hook/pre_commit/author_name.rb
115
- - lib/overcommit/hook/pre_commit/rubocop.rb
117
+ - lib/overcommit/hook/pre_commit/pry_binding.rb
116
118
  - lib/overcommit/hook/pre_commit/python_flake8.rb
117
- - lib/overcommit/hook/pre_commit/js_hint.rb
118
- - lib/overcommit/hook/pre_commit/chamber_security.rb
119
- - lib/overcommit/hook/pre_commit/hard_tabs.rb
120
- - lib/overcommit/hook/pre_commit/haml_lint.rb
121
- - lib/overcommit/hook/pre_commit/coffee_lint.rb
122
- - lib/overcommit/hook/pre_commit/brakeman.rb
123
- - lib/overcommit/hook/pre_commit/jscs.rb
119
+ - lib/overcommit/hook/pre_commit/rails_schema_up_to_date.rb
120
+ - lib/overcommit/hook/pre_commit/rubocop.rb
124
121
  - lib/overcommit/hook/pre_commit/scss_lint.rb
125
- - lib/overcommit/hook/pre_commit/base.rb
126
- - lib/overcommit/hook/pre_commit/json_syntax.rb
127
- - lib/overcommit/hook_signer.rb
128
- - lib/overcommit/hook_context/pre_commit.rb
129
- - lib/overcommit/hook_context/commit_msg.rb
122
+ - lib/overcommit/hook/pre_commit/trailing_whitespace.rb
123
+ - lib/overcommit/hook/pre_commit/travis_lint.rb
124
+ - lib/overcommit/hook/pre_commit/yaml_syntax.rb
125
+ - lib/overcommit/hook_context.rb
130
126
  - lib/overcommit/hook_context/base.rb
127
+ - lib/overcommit/hook_context/commit_msg.rb
131
128
  - lib/overcommit/hook_context/post_checkout.rb
132
- - lib/overcommit/installer.rb
133
- - lib/overcommit/configuration_loader.rb
129
+ - lib/overcommit/hook_context/pre_commit.rb
130
+ - lib/overcommit/hook_loader/base.rb
134
131
  - lib/overcommit/hook_loader/built_in_hook_loader.rb
135
132
  - lib/overcommit/hook_loader/plugin_hook_loader.rb
136
- - lib/overcommit/hook_loader/base.rb
137
- - lib/overcommit/exceptions.rb
138
- - lib/overcommit/configuration.rb
133
+ - lib/overcommit/hook_runner.rb
134
+ - lib/overcommit/hook_signer.rb
135
+ - lib/overcommit/installer.rb
139
136
  - lib/overcommit/logger.rb
140
- - lib/overcommit/cli.rb
141
- - libexec/index-tags
137
+ - lib/overcommit/subprocess.rb
138
+ - lib/overcommit/user_input.rb
139
+ - lib/overcommit/utils.rb
140
+ - lib/overcommit/version.rb
142
141
  - libexec/gerrit-change-id
142
+ - libexec/index-tags
143
143
  - template-dir/hooks/commit-msg
144
- - template-dir/hooks/post-checkout
145
144
  - template-dir/hooks/overcommit-hook
145
+ - template-dir/hooks/post-checkout
146
146
  - template-dir/hooks/pre-commit
147
147
  homepage: https://github.com/causes/overcommit
148
148
  licenses:
@@ -155,17 +155,17 @@ require_paths:
155
155
  - lib
156
156
  required_ruby_version: !ruby/object:Gem::Requirement
157
157
  requirements:
158
- - - '>='
158
+ - - ">="
159
159
  - !ruby/object:Gem::Version
160
160
  version: 1.8.7
161
161
  required_rubygems_version: !ruby/object:Gem::Requirement
162
162
  requirements:
163
- - - '>='
163
+ - - ">="
164
164
  - !ruby/object:Gem::Version
165
165
  version: '0'
166
166
  requirements: []
167
167
  rubyforge_project:
168
- rubygems_version: 2.0.14
168
+ rubygems_version: 2.2.0
169
169
  signing_key:
170
170
  specification_version: 4
171
171
  summary: Git hook manager