git-it 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,11 +9,11 @@ module GitIt
9
9
  def initialize(repository_url)
10
10
  @repository_url = repository_url
11
11
 
12
- @repo = /^git@(?<site>.*):(?<user>.*)\/(?<proj>.*).git$/.match(@repository_url)
12
+ @repo = /^git@(.*):(.*)\/(.*).git$/.match(@repository_url)
13
13
 
14
- @site = @repo[:site]
15
- @user = @repo[:user]
16
- @proj = @repo[:proj]
14
+ @site = @repo[1]
15
+ @user = @repo[2]
16
+ @proj = @repo[3]
17
17
  end
18
18
 
19
19
  # https://github.com/more-ron/git-it/tree/gh-pages
@@ -2,5 +2,5 @@
2
2
  module GitIt
3
3
 
4
4
  # Current git-it version
5
- VERSION = '0.0.8'
5
+ VERSION = '0.0.9'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-it
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: