pronto-circleci 1.0.0 → 1.0.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51c68722b1924b7ab73bd57bdc7d11caac6d061b
4
- data.tar.gz: '04813905e572cfecb4facc71d421db448699328d'
3
+ metadata.gz: 1ea3a4be3b870ff1f449752fc575d785b514929f
4
+ data.tar.gz: 47f6551ea9890f3b180d328107f223e49bf704d7
5
5
  SHA512:
6
- metadata.gz: 600e263590c6c49e10c58f59b46677de644568c9c9ec765f4e569c20d9e2d1e5ffa7e9fda8a79b533b18b9f41017f3df3ec2b9c01ef954f23511b9d9a69020f6
7
- data.tar.gz: fea36915805883164f6991d5ba3a89980d6d4c87767ca39640dbe8ab87027fbc8fbbbc38438089d1853dd335ebe1a8f35770c798d592798496983b60aa5e64d2
6
+ metadata.gz: 81063bc25e3f989506b43ffc35677bffc2a1737e65a2df8a565468332ee99960e2091f1f4f3ddfd51b391e49fa8815df343be1b1c369aa93ccbc01de02baee62
7
+ data.tar.gz: 09cb53359cd7048434be81fcad30a485bfef0a0d25f9e53801297456d456a1ae1de9f545f0453b32f7ca6dbe037d8fcf5f0aa92760682e1016699ee7d80a2f5b
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # pronto-circleci
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/pronto-circleci.svg)](https://badge.fury.io/rb/pronto-circleci)
4
+ [![CircleCI](https://circleci.com/gh/comparaonline/pronto-circleci/tree/master.svg?style=svg)](https://circleci.com/gh/comparaonline/pronto-circleci/tree/master)
5
+
3
6
  This gem allows to simply setup [pronto](https://github.com/prontolabs/pronto) along with **circleci** and **github**.
4
7
 
5
8
  ## Installation
@@ -33,7 +36,7 @@ test:
33
36
  - bundle exec pronto-circleci
34
37
  ```
35
38
 
36
- And finally setup an environment variable with a [Github access token](https://help.github.com/articles/creating-an-access-token-for-command-line-use) in the [circleci environment configuration](https://circleci.com/docs/1.0/environment-variables/) of your repo with the name of: `GITHUB_ACCESS_TOKEN`.
39
+ And finally setup an environment variable with a [Github access token](https://help.github.com/articles/creating-an-access-token-for-command-line-use) in the [circleci environment configuration](https://circleci.com/docs/1.0/environment-variables/) of your repo with the name of: `PRONTO_GITHUB_ACCESS_TOKEN`.
37
40
 
38
41
 
39
42
  ## Usage
@@ -10,7 +10,7 @@ module Pronto
10
10
  end
11
11
 
12
12
  def pull_requests_urls
13
- ENV['CI_PULL_REQUESTS'].split(',')
13
+ ENV.key?('CI_PULL_REQUESTS') ? ENV['CI_PULL_REQUESTS'].split(',') : []
14
14
  end
15
15
 
16
16
  def gem_root
@@ -1,5 +1,5 @@
1
1
  module Pronto
2
2
  module CircleCI
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto-circleci
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joaquín Moreira
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-06 00:00:00.000000000 Z
11
+ date: 2017-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pronto
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
155
  version: '0'
156
156
  requirements: []
157
157
  rubyforge_project:
158
- rubygems_version: 2.6.11
158
+ rubygems_version: 2.6.12
159
159
  signing_key:
160
160
  specification_version: 4
161
161
  summary: Automate pronto run for use with circleci and github