gct 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: ccf99db3caa4e77e3a5d12173bbf4209e7fae7b7d0006be9e4144987e5b6c295
4
- data.tar.gz: 98f7ee10f64b732dbdfefbe266ef3ecb001a63ae3684fe36f638d0e930620db6
3
+ metadata.gz: 065fbd7c848f743b78265422be8cb84cc61565e56b24a7f69a74942a448748d5
4
+ data.tar.gz: 2e6196383c4b3e0f492347dfd8ada5c01a378f574c3148216b2f4a64372cfae4
5
5
  SHA512:
6
- metadata.gz: bc1eea158b989fdfe57dc1e65bef4e51e498e9453e8e6bbaa35688b5fa09af12dcbee82d9a24100d3b7e7a6bef37aab714699505f4725d9d9168d8de19196b38
7
- data.tar.gz: 8cd71663298caa845f9295948f12454f3c032145f13b2d785400a50a04ee3eb09bc45c35e226f76c5c36c6ae046dc68f085bad93b233f4f3560d8f054ba2d2ed
6
+ metadata.gz: dd5141b318b91d742596df29bbdaf6d78582abe8cf1af82195b803de74b3d0dae9498a24feae590fb0155d0a79b93afb34838688117224dc364988b0e7865abe
7
+ data.tar.gz: e2a1c79288781588dbe2e3ac23a15b78d9d800cb7220ee619faa2c5ac2f9fe94a044cddae08ad659d2472fe5ec5762f3d2acd19379ce8a47b7cd0b6e3cbd46c1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gct (0.1.0)
4
+ gct (0.1.1)
5
5
  claide (>= 1.0.2, < 2.0)
6
6
  cocoapods (>= 1.8.4)
7
7
  colored2 (~> 3.1)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Gct
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gct`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gct`. To experiment with that code, run `bin/gct` for an interactive prompt.
4
4
 
5
5
  TODO: Delete this and the text above, and describe your gem
6
6
 
@@ -26,7 +26,7 @@ TODO: Write usage instructions here
26
26
 
27
27
  ## Development
28
28
 
29
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/gct` for an interactive prompt that will allow you to experiment.
30
30
 
31
31
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
32
 
data/bin/console CHANGED
@@ -11,5 +11,5 @@ require "cocoapods"
11
11
  # require "pry"
12
12
  # Pry.start
13
13
 
14
- require "irb"
15
- IRB.start(__FILE__)
14
+ Gct::Command.run(ARGV)
15
+
data/gct.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = %q{"gct ios 自动化脚本工具"}
12
12
  spec.description = %q{"gct ios 自动化脚本工具"}
13
- spec.homepage = "https://gi-dev.ccrgt.com/ios-thirdpart/gct.git"
13
+ spec.homepage = "https://gi-dev.ccrgt.com/ios-thirdpart/gct"
14
14
 
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
16
 
@@ -20,15 +20,15 @@ Gem::Specification.new do |spec|
20
20
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
21
  end
22
22
  spec.bindir = "bin"
23
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
+ spec.executables = [spec.files.grep(%r{^exe/}) { |f| File.basename(f) }]
24
24
  spec.require_paths = ["lib"]
25
25
 
26
26
  # 生产依赖
27
27
  # spec.add_dependency
28
28
 
29
29
  # 开发依赖
30
- spec.add_development_dependency "bundler", "~> 1.17"
31
- spec.add_development_dependency "rake", "~> 10.0"
30
+ spec.add_development_dependency "bundler", ">= 1.17"
31
+ spec.add_development_dependency "rake", ">= 10.0"
32
32
 
33
33
  # 运行时依赖
34
34
  spec.add_runtime_dependency "claide", ">= 1.0.2", "< 2.0"
data/lib/gct/version.rb CHANGED
@@ -2,5 +2,5 @@ module Gct
2
2
  # freeze 冻结对象,将对象变成一个常量
3
3
  # unless 右边的代码块成立,才会运行左边的代码块
4
4
  # defined? 是用来判断本地变量是否存在,也可用来判断是否存在方法
5
- VERSION = "0.1.0".freeze unless defined? Gct::VERSION
5
+ VERSION = "0.1.1".freeze unless defined? Gct::VERSION
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gct
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
  - jieming
@@ -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.17'
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.17'
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: '10.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: '10.0'
41
41
  - !ruby/object:Gem::Dependency
@@ -135,10 +135,10 @@ files:
135
135
  - lib/gct/command/op/xcache.rb
136
136
  - lib/gct/constant.rb
137
137
  - lib/gct/version.rb
138
- homepage: https://gi-dev.ccrgt.com/ios-thirdpart/gct.git
138
+ homepage: https://gi-dev.ccrgt.com/ios-thirdpart/gct
139
139
  licenses: []
140
140
  metadata:
141
- homepage_uri: https://gi-dev.ccrgt.com/ios-thirdpart/gct.git
141
+ homepage_uri: https://gi-dev.ccrgt.com/ios-thirdpart/gct
142
142
  post_install_message:
143
143
  rdoc_options: []
144
144
  require_paths: