gitarro 0.1.54 → 0.1.55

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: ea196155b60e599328efe518da225836b264f0fd
4
- data.tar.gz: 74cef83a6730617b66c2e71b4191bd7f7563a214
3
+ metadata.gz: 4b744e2305a069eed8d8873e2c7e1ed57065c640
4
+ data.tar.gz: 3f95bde2ebc193a07ec2a55a66899554201840ef
5
5
  SHA512:
6
- metadata.gz: de2965fe6377e68a1677e21f88c82c10c85165f009fae1b1c0506cb27e938fa555feece15a0bf970363a17bc0d14f7d262cef86461e7963e7fa3eafd2d866826
7
- data.tar.gz: 0ce1d7d7380317c34dc6fb3b98c13048bb4d496975ba8fd1bfeeb1ef5f8a8ebd8a00683eeaebe090a035681cabf4143347ad0a8014c0711ed17910fc5d0bfa44
6
+ metadata.gz: dead8709837e944935cd4d0ae5a2f82935c02e807528e2bd133307d4e99b6606f727b7308e9c9da04b634e3579ed86b398cd36a58287606e01c9dc6981596d6b
7
+ data.tar.gz: a601f3b9359a1de3407042018a2edebb6bafb9b437043e14a945920feee660173bdc481ea1ace0690ce9d36aa7f75bcf533081aebaa98e7b07d279579ab6a329
@@ -121,7 +121,8 @@ end
121
121
  # this the main public class is the backend of gitarro,
122
122
  # were we execute the tests and so on
123
123
  class Backend
124
- attr_accessor :options, :client, :gbexec
124
+ attr_accessor :options
125
+ attr_reader :gbexec, :client
125
126
  include GitHubPrOperations
126
127
 
127
128
  # public method of backend
@@ -56,7 +56,7 @@ class GitOp
56
56
 
57
57
  def clone_repo
58
58
  repo_url = "#{repo_protocol}#{@options[:repo]}.git"
59
- puts `git clone #{repo_url}`
59
+ puts `git clone --depth 1 #{repo_url}`
60
60
  exit 1 if $CHILD_STATUS.exitstatus.nonzero?
61
61
  end
62
62
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitarro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.54
4
+ version: 0.1.55
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dario Maiocchi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-19 00:00:00.000000000 Z
11
+ date: 2017-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: english
@@ -122,6 +122,20 @@ dependencies:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0.49'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rubocop-rspec
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '1.19'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '1.19'
125
139
  description: gitarro run tests on GitHub PRs using almost any script,language or binary,
126
140
  it integrate easy with other tools.
127
141
  email: dmaiocchi@suse.com