cocoapods-deploy 0.0.10 → 0.0.11

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: 8dbe86929ae196680a65923c36ec60d1eafa2dc7
4
- data.tar.gz: 7c52897b500ead9cffbd28113fae2dd22d41ba6f
3
+ metadata.gz: 848abbd9996c26ac01f3f2db4bb916fbe01ca423
4
+ data.tar.gz: f06ca063d50a5765f375eb34fe622f6abbd7b1c3
5
5
  SHA512:
6
- metadata.gz: 82ff9ce48004050e8e9a86390f2b0eafceb975b7a3a65197e539efc6e4eee647a2678c8473624622382f3488942e629d2209baee7cc080c4c53aa412dad379bf
7
- data.tar.gz: e204335bddf89e65f528643b7bfaaf217d815dd6102de9f69b4e0bf7cef94ef8406abeae7dd480f76756ae91e68a114b5b740fd182310e31b7a80c5ba333de6a
6
+ metadata.gz: 707c57134eecedb0337869cb33afaecb318aca8f2b524e5f0d1f6f7cf2ca371a2be9af0cdce1940d793eec32beb54b3962af58c29ac7cca1c927231e817bd76a
7
+ data.tar.gz: bdbe7a768450629ad2ed0f4a57f39bc075561ee4e50e8d28e55d34d9f7c10e9f22378df4c1b325b0a6cba0bcddac21704e47dd1fb38cabe1b17fffffe932ce55
@@ -3,7 +3,7 @@
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "cocoapods-deploy"
6
- s.version = "0.0.10"
6
+ s.version = "0.0.11"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib"]
@@ -1,3 +1,3 @@
1
1
  module CocoapodsDeploy
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Campbell
@@ -14,28 +14,28 @@ dependencies:
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.3'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  description: Implement's bundler's --deployment functionality in CocoaPods.
@@ -45,23 +45,23 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - ".gitignore"
48
+ - .gitignore
49
49
  - Gemfile
50
50
  - LICENSE.txt
51
51
  - README.md
52
52
  - Rakefile
53
53
  - cocoapods-deploy.gemspec
54
- - lib/cocoapods-deploy.rb
55
54
  - lib/cocoapods-deploy/command.rb
56
55
  - lib/cocoapods-deploy/command/deploy.rb
56
+ - lib/cocoapods-deploy/deploy_transformer.rb
57
57
  - lib/cocoapods-deploy/deploy_analyzer.rb
58
58
  - lib/cocoapods-deploy/deploy_downloader.rb
59
59
  - lib/cocoapods-deploy/deploy_installer.rb
60
- - lib/cocoapods-deploy/deploy_transformer.rb
61
60
  - lib/cocoapods-deploy/gem_version.rb
61
+ - lib/cocoapods-deploy.rb
62
62
  - lib/cocoapods_plugin.rb
63
- - spec/command/deploy_spec.rb
64
63
  - spec/spec_helper.rb
64
+ - spec/command/deploy_spec.rb
65
65
  homepage: https://github.com/jcampbell05/cocoapods-deploy
66
66
  licenses:
67
67
  - MIT
@@ -72,21 +72,20 @@ require_paths:
72
72
  - lib
73
73
  required_ruby_version: !ruby/object:Gem::Requirement
74
74
  requirements:
75
- - - ">="
75
+ - - '>='
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ">="
80
+ - - '>='
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  requirements: []
84
84
  rubyforge_project:
85
- rubygems_version: 2.4.8
85
+ rubygems_version: 2.0.14.1
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: Implement's bundler's --deployment functionality in CocoaPods.
89
89
  test_files:
90
90
  - spec/command/deploy_spec.rb
91
91
  - spec/spec_helper.rb
92
- has_rdoc: