danger-yajp 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: 31fe21c6c47db66193c9bb074710f559b03ea8b8df46abc478712d2d23d0d00d
4
- data.tar.gz: 93cc2f58198a219c4a9e758c6e6ed2e36934dff6576b2d3d24ddca3e039e9698
3
+ metadata.gz: 28f5c1b87c4924673bd6bfe7d00ec01bf94b4ea9520b43fd3002eb5944141e7c
4
+ data.tar.gz: a13caf1147682bdd71e048c848be6cb53cc7a5f5cd489310883d0ab797d76913
5
5
  SHA512:
6
- metadata.gz: 278831d0fbef23988cd1fad62d056aab0bb21ce96b33215f6a0222c361c2d1860ecf6267da024a7b7cb7a0a68455e87df272ccc3768e1be8004f8c6b6887c88e
7
- data.tar.gz: cc54f2f528a3a4c2a92f96330dad7116f30b667a6558262ffb4eedc07b10a9558490ba798229693fd8e8cc7d9c8331dbcbbd0e48f06cde3996bc2353a9c3418d
6
+ metadata.gz: 2007d092a1f920d1ca505de0695b26680629dbc082314e9ba9531894df830822383a372d3bd3b606917242ff30f161bb7d83164feaef43f6d01784908738eaf6
7
+ data.tar.gz: 4b37f4e6098bb8bb594da8bcf3f433500cf53107fc510169ec75760b7fb0c3137e0150fb8f64f2f53880cf0db55c618602db2e038edd22fa1c2292c0bae12452
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- danger-yajp (0.1.0)
4
+ danger-yajp (0.1.1)
5
5
  danger-plugin-api
6
6
  jira-ruby
7
7
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Yajp
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
@@ -230,12 +230,10 @@ module Danger
230
230
  def pr_link
231
231
  return @pr_link unless @pr_link.nil?
232
232
 
233
- pr_hash = JSON.parse(vcs_host.pr_json, symbolize_names: true)
234
-
235
233
  if defined? @dangerfile.gitlab
236
- @pr_link = pr_hash[:web_url]
234
+ @pr_link = vcs_host.pr_json['web_url']
237
235
  else
238
- @pr_link = pr_hash[:html_url]
236
+ @pr_link = vcs_host.pr_json['html_url']
239
237
  end
240
238
 
241
239
  return @pr_link
@@ -122,7 +122,7 @@ module Danger
122
122
 
123
123
  it 'can add remote link' do
124
124
  pr_title = 'PR Title'
125
- pr_json = '{"html_url":"https://github.com/test/pull/1234"}'
125
+ pr_json = { 'html_url' => 'https://github.com/test/pull/1234' }
126
126
  url = "#{ENV['DANGER_JIRA_URL']}/rest/api/2/issue/WEB-134/remotelink"
127
127
  json = File.read("#{File.dirname(__FILE__)}/support/remotelink.json")
128
128
  issue = plugin.api.Issue.build
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danger-yajp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - juliendms