cocoapods-static_framework 1.0.1 → 1.0.2

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: 1a4585987cae1b6683a47cd93f17e77eb7c0debe
4
- data.tar.gz: 18863de48f68db2b2d3ce6c4fb4548fe0591e9c7
3
+ metadata.gz: 6c2c21d79b4ff64634cb8470e52739cf3e907037
4
+ data.tar.gz: c38a21c3fc6d6a68fac020cda6360cd2f0f9c298
5
5
  SHA512:
6
- metadata.gz: da40102d3d2cd5c7c0eb0b451faeb1076eff799604f8e66258c5ba7df43d651bbec9e17239f36e3f60aedb46d1c089ebd2802f26496afc5a88ef20cdacd880d2
7
- data.tar.gz: a52a98e2ac88c51378a638919f2983c272b6f9cf566fbc480ec47feb8a3e2db9fe2ef813ad8a623993a744913d371f3aa3fa87aff0f6c7cae985fbfed95869ee
6
+ metadata.gz: cd4e016cd711be9d3ed43279cec973e34883a11eb573f604781fd2dfc9099615384f46d2c1a4e4b5202355ee1bf088adfe42e69cbcc71740fd3a2c09278ae019
7
+ data.tar.gz: 2bdd41d7333e33b9de41002bfd3c99a2a9cef6f404d102405296ddfabdd4a5f01e5308a33d275e640556f8c757c96133c35e3e69909562e5088e381245b534c7
@@ -4,46 +4,4 @@ module Pod
4
4
  require 'cocoapods-static_framework/command/patch/static_pod.rb'
5
5
  end
6
6
  end
7
- class Command
8
- # This is an example of a cocoapods plugin adding a top-level subcommand
9
- # to the 'pod' command.
10
- #
11
- # You can also create subcommands of existing or new commands. Say you
12
- # wanted to add a subcommand to `list` to show newly deprecated pods,
13
- # (e.g. `pod list deprecated`), there are a few things that would need
14
- # to change.
15
- #
16
- # - move this file to `lib/pod/command/list/deprecated.rb` and update
17
- # the class to exist in the the Pod::Command::List namespace
18
- # - change this class to extend from `List` instead of `Command`. This
19
- # tells the plugin system that it is a subcommand of `list`.
20
- # - edit `lib/cocoapods_plugins.rb` to require this file
21
- #
22
- # @todo Create a PR to add your plugin to CocoaPods/cocoapods.org
23
- # in the `plugins.json` file, once your plugin is released.
24
- #
25
- class Static_framework < Command
26
- self.summary = 'Short description of cocoapods-static_framework.'
27
-
28
- self.description = <<-DESC
29
- Longer description of cocoapods-static_framework.
30
- DESC
31
-
32
- self.arguments = 'NAME'
33
-
34
- def initialize(argv)
35
- @name = argv.shift_argument
36
- super
37
- end
38
-
39
- def validate!
40
- super
41
- help! 'A Pod name is required.' unless @name
42
- end
43
-
44
- def run
45
- UI.puts "Add your implementation for the cocoapods-static_framework plugin in #{__FILE__}"
46
- end
47
- end
48
- end
49
- end
7
+ end
@@ -1,3 +1,3 @@
1
1
  module CocoapodsStatic_framework
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-static_framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - coolkernel