slt_xcodeproj_helper 0.1.0 → 0.1.01

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: cc052970a3a8d4f22c6d6466376c385d508a67c9
4
- data.tar.gz: d3b7b873d8e06b7d2524c475635c3a230ecb4404
3
+ metadata.gz: bd92595ff2bb64ef3fecdb95ae6478c5adb18179
4
+ data.tar.gz: ca9f4077f3cbf76ddac298d2d40961f4082df86c
5
5
  SHA512:
6
- metadata.gz: 3a8bdde20b3bc5d6403bb50c906ef26f56a63976d97b397f72d41053d52532ceb0d8663ded2d9424c76eb028d230105c2aec18200b3339c8887c0e6e95f850de
7
- data.tar.gz: 4e41f48f18cd4128d1af1edbc7f95df05c2abfdb31d60de2148d52f2c3242048d2a7d6e617518293cea46dadc6d872420baefb78ae1b21d0c6563c660f648654
6
+ metadata.gz: 3a59d57bec1e3c9e1ded4a96f8a7a9cd048f3f31c507f2e9d9a143c683f45b9c9cfb6501f3499f9b80699e5cf09239bbf8e92d31788db91d8feb92b97faee20d
7
+ data.tar.gz: 5d94adf286a20b605ff7f5dc113077fd574065f9c65484720e4a04c7c8b69ac05118868c0a517b692d7be80b7801483a1082af844a489028b0bc55c7e9a19a3b
data/bin/sltset ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'slt_xcodeproj_helper'
4
+ SLTProjectHelper.run(ARGV)
@@ -7,9 +7,9 @@ require 'xcodeproj'
7
7
 
8
8
  class SLTProjectHelper < CLAide::Command
9
9
 
10
- self.description = 'set xcode project build options'
10
+ self.description = 'sltset xcode project build options'
11
11
 
12
- self.command = 'set'
12
+ self.command = 'sltset'
13
13
 
14
14
  def self.options
15
15
  [
@@ -52,4 +52,3 @@ class SLTProjectHelper < CLAide::Command
52
52
 
53
53
  end
54
54
 
55
- # SLTProjectHelper.run(ARGV)
@@ -1,3 +1,3 @@
1
1
  module SltXcodeprojHelper
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.01"
3
3
  end
Binary file
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["LiuShulong"]
10
10
  spec.email = ["bigfish_liu@126.com"]
11
11
 
12
- spec.summary = %q{set xcode settings}
13
- spec.description = %q{a commandline to set xcode project settings}
12
+ spec.summary = %q{sltset xcode settings}
13
+ spec.description = %q{a commandline to sltset xcode project settings}
14
14
  spec.homepage = "https://github.com/LiuShulong/slt_xcodeproj_helper.git"
15
15
  spec.license = "MIT"
16
16
 
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  f.match(%r{^(test|spec|features)/})
20
20
  end
21
21
  spec.bindir = "bin"
22
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
22
+ spec.executables = "sltset"
23
23
  spec.require_paths = ["lib"]
24
24
 
25
25
  spec.add_development_dependency "bundler", "~> 1.14"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slt_xcodeproj_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.01
5
5
  platform: ruby
6
6
  authors:
7
7
  - LiuShulong
@@ -66,12 +66,11 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- description: a commandline to set xcode project settings
69
+ description: a commandline to sltset xcode project settings
70
70
  email:
71
71
  - bigfish_liu@126.com
72
72
  executables:
73
- - console
74
- - setup
73
+ - sltset
75
74
  extensions: []
76
75
  extra_rdoc_files: []
77
76
  files:
@@ -82,10 +81,10 @@ files:
82
81
  - LICENSE.txt
83
82
  - README.md
84
83
  - Rakefile
85
- - bin/console
86
- - bin/setup
84
+ - bin/sltset
87
85
  - lib/slt_xcodeproj_helper.rb
88
86
  - lib/slt_xcodeproj_helper/version.rb
87
+ - slt_xcodeproj_helper-0.1.0.gem
89
88
  - slt_xcodeproj_helper.gemspec
90
89
  homepage: https://github.com/LiuShulong/slt_xcodeproj_helper.git
91
90
  licenses:
@@ -110,5 +109,5 @@ rubyforge_project:
110
109
  rubygems_version: 2.6.12
111
110
  signing_key:
112
111
  specification_version: 4
113
- summary: set xcode settings
112
+ summary: sltset xcode settings
114
113
  test_files: []
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "slt_xcodeproj_helper"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here