hw 1.1.9 → 1.1.10

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.
data/lib/hw.rb CHANGED
@@ -1 +1,2 @@
1
+ require 'hw/git'
1
2
  require 'hw/base'
@@ -43,10 +43,11 @@ class HW
43
43
  begin
44
44
  path = "#{SOURCES_PATH}/#{name}"
45
45
  local = self.local_source?(url)
46
-
46
+
47
47
  unless local
48
48
  if File.exists?(path)
49
- Git.open(path).pull
49
+ git = Git.open(path, log: nil)
50
+ git.lib.send :command, 'pull' # See: https://github.com/schacon/ruby-git/issues/32
50
51
  else
51
52
  Git.clone(url, name, :path => SOURCES_PATH) unless local
52
53
  end
@@ -1,7 +1,7 @@
1
1
  class HW
2
2
  MAJOR = 1
3
3
  MINOR = 1
4
- TINY = 9
4
+ TINY = 10
5
5
  PRE = nil
6
6
 
7
7
  VERSION = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hw
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.9
4
+ version: 1.1.10
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -114,7 +114,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
114
114
  version: '0'
115
115
  segments:
116
116
  - 0
117
- hash: -3696391133987059405
117
+ hash: -2364818574954552801
118
118
  required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  none: false
120
120
  requirements:
@@ -123,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
123
  version: '0'
124
124
  segments:
125
125
  - 0
126
- hash: -3696391133987059405
126
+ hash: -2364818574954552801
127
127
  requirements: []
128
128
  rubyforge_project:
129
129
  rubygems_version: 1.8.25