fastlane-plugin-badge 0.8.2 → 1.0.0

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: b67569d0068e40f2827c3227ea737e7771998967
4
- data.tar.gz: ead9b3a4b2a804b8cce7154f3815a98382574ef6
3
+ metadata.gz: 2ae9b5704957a4800d563b35df6e79889b6ce600
4
+ data.tar.gz: ef0f1288717f3c6fb8108e44861983baf79df0e4
5
5
  SHA512:
6
- metadata.gz: 11552da6f651949a8e4b561f861c91ffed56fb4c62a3495250bf388f2378a901080d3a7586214d660e77756768c53da6f2255ebac92887e7d0d9cb2c657c3324
7
- data.tar.gz: 639bc2bcd390787600af1f6dab868bc37eede3e400bfc6b12d3cb07a053ff8e5308754ab525ec86ffb68de9fb68d06871d3747d1601847998957622d4ac54dcc
6
+ metadata.gz: 970fa42542b735eadb233152a36bc6c608006836cb7c9e12b62b474aabc49b7fda1039fd66d3d2979db9adc0fef6fdb3f53005b25d94478c0ec63302292a5d74
7
+ data.tar.gz: cbacedf80867793280a7630b962a19d61388514a097f30ddfa550ab551c99a6ea15624df2de53a277c384908924b11e8f4eba8385df2fc4d0352bc46adc9403d
@@ -1,6 +1,6 @@
1
1
  module Fastlane
2
2
  module Actions
3
- class BadgeAction < Action
3
+ class AddBadgeAction < Action
4
4
  def self.run(params)
5
5
  Actions.verify_gem!('badge')
6
6
 
@@ -27,7 +27,7 @@ module Fastlane
27
27
  end
28
28
 
29
29
  def self.authors
30
- ["Daniel Griesser", "HazAT"]
30
+ ["HazAT"]
31
31
  end
32
32
 
33
33
  def self.return_value
@@ -49,10 +49,10 @@ module Fastlane
49
49
 
50
50
  def self.example_code
51
51
  [
52
- 'badge(dark: true)',
53
- 'badge(alpha: true)',
54
- 'badge(custom: "/Users/xxx/Desktop/badge.png")',
55
- 'badge(shield: "Version-0.0.3-blue", no_badge: true)'
52
+ 'add_badge(dark: true)',
53
+ 'add_badge(alpha: true)',
54
+ 'add_badge(custom: "/Users/xxx/Desktop/badge.png")',
55
+ 'add_badge(shield: "Version-0.0.3-blue", no_badge: true)'
56
56
  ]
57
57
  end
58
58
 
@@ -3,7 +3,7 @@ module BadgeBridge
3
3
  class Bridge
4
4
  def self.available_options
5
5
  require 'badge'
6
- Badge::Options.available_options
6
+ Badge::Options.available_options
7
7
  end
8
8
 
9
9
  def self.run(options)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Badge
3
- VERSION = "0.8.2"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-badge
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Griesser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-14 00:00:00.000000000 Z
11
+ date: 2017-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: badge
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.8.1
19
+ version: 0.8.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.8.1
26
+ version: 0.8.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: pry
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -117,7 +117,7 @@ files:
117
117
  - LICENSE
118
118
  - README.md
119
119
  - lib/fastlane/plugin/badge.rb
120
- - lib/fastlane/plugin/badge/actions/badge_action.rb
120
+ - lib/fastlane/plugin/badge/actions/add_badge_action.rb
121
121
  - lib/fastlane/plugin/badge/helper/badge_helper.rb
122
122
  - lib/fastlane/plugin/badge/version.rb
123
123
  homepage: https://github.com/HazAT/fastlane-plugin-badge