octopress-deploy 1.2.7 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1eb5beb837b96c6e0ab922695ec87617e71f1bad
4
- data.tar.gz: cf3e51606a71b99ef7410025c919fd84106ed3cc
3
+ metadata.gz: 1ce4d859030b32ba4d7c3e3942c494eaa909e0b3
4
+ data.tar.gz: 2497a1355b26cadb4330ba785acc5d2dd2321f4e
5
5
  SHA512:
6
- metadata.gz: 9f41bd149e09d98034fdafa4419ab2b66e40a991c84aa8aac00f2c1569c95c08cf28ba8a4c087e38290e83fcdbc58261fc2a861a08f356a08d4e27c09d9b0326
7
- data.tar.gz: 26ff8855e56f5167d14ae11092197fc4e2a2dce3121202d8971adb6f4c42fa8f56a345f28ba43c0e754f36569189ac88ba08f48a6f897952ab9119792779a979
6
+ metadata.gz: 4050bd2c5bc4187d39fdf82007f29a8fa636e7c39370b1f70c681ee4cf671f0bca36948c842c8f503413270ba6bde6d0fcbe5f9d50559ea7ace81534de18dbdb
7
+ data.tar.gz: 4e2c3264bcede17fcabf5eabbf843662cbfc93a11c302efa0b3eabb440681fb78c74267bc356fdfbb432ea3d9ad5ca16320a0c6d74563176192a211184b3aa49
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ### 1.2.8 - 2015-06-29
4
+ - Fix: Using Regex quote to escape special characters in repo urls. [#61](https://github.com/octopress/deploy/pull/61)
5
+
3
6
  ### 1.2.7 - 2015-06-17
4
7
  - Fix: Fixed some erroneous references to site_dir configuration. [#60](https://github.com/octopress/deploy/pull/60)
5
8
  - Minor: Moved documentation to [octopress#deploy](https://github.com/octopress/octopress#deploy).
@@ -115,7 +115,7 @@ CONFIG
115
115
  end
116
116
 
117
117
  def git_push
118
- if `git remote -v` =~ /#{@remote}\s+#{@repo}.+\(push\)/
118
+ if `git remote -v` =~ /#{@remote}\s+#{Regexp.quote(@repo)}.+\(push\)/
119
119
  `git push #{@remote} #{@branch}`
120
120
  else
121
121
  remotes = `git remote -v`
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module Deploy
3
- VERSION = "1.2.7"
3
+ VERSION = "1.2.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.7
4
+ version: 1.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-18 00:00:00.000000000 Z
11
+ date: 2015-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorator