git-it 0.0.8 → 0.0.9

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.
@@ -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: