replace_class 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: b18a50b799f86df3fc08105f309171e5ae680fd2
4
- data.tar.gz: e779cf4842b5cab161d002655864e4d4b6dbfa22
3
+ metadata.gz: bef0c7637f77ad02bc9d898645d8f0d800f1531f
4
+ data.tar.gz: 60b31b050e3d69becea8f3c583b376fcb763c3dd
5
5
  SHA512:
6
- metadata.gz: 3335c5e970aff08087feb56b1c476615d5d91a60b24a804964579665381c8fbdbdc948aac19d9320c167075618d6716fe742b41f0de5f375966f706aa1ffd341
7
- data.tar.gz: 11bfba9a6658bb85ef00e7957ca266fb19208c98d079bf4b31fb0f849c8e99229a09d5b6fc34e9287c140de331c45bc3366e966c2f3bef2fc8a08ea77bb0a7bd
6
+ metadata.gz: 9202faa2f88848d49583cb2235f51aaab76b425221bd868494f65d182c23a5cc3801ab5dd6d91b6f9e18fb3390de52298dd4ad44d4957943a9c6428232a77e4d
7
+ data.tar.gz: 84f5f98ba4b2ffa19b28903cb4779e539c0b6720ddb5e50b447a8ee29e63842d4a5f639671e6385ddd4bfde5efcfc2fd99de77ff574eb6393cebbd6be5a245fd
data/.gitignore ADDED
@@ -0,0 +1,35 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /vendor/bundle
26
+ /lib/bundler/man/
27
+
28
+ # for a library or gem, you might want to ignore these files since the code is
29
+ # intended to run in multiple environments; otherwise, check them in:
30
+ # Gemfile.lock
31
+ # .ruby-version
32
+ # .ruby-gemset
33
+
34
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
+ .rvmrc
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 MickeySha
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # ReplaceClassName
2
+ An Neat Script for Relplacing Class Name Globally
data/bin/replace_class CHANGED
@@ -1,5 +1,3 @@
1
1
  #!/usr/bin/ruby -w
2
2
 
3
- bin = File.expand_path('../../lib', __FILE__)
4
- $LOAD_PATH.unshift(bin) unless $LOAD_PATH.include?(bin)
5
- require '../lib/replace_class'
3
+ require 'replace_class'
@@ -0,0 +1,18 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # stub: replace_class 1.0.0 ruby lib
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "replace_class"
6
+ s.version = "1.0.2"
7
+
8
+ s.require_paths = ["lib"]
9
+ s.authors = ["MickeyHub"]
10
+ s.date = Time.now.strftime("%Y-%m-%d")
11
+ s.files = `git ls-files`.split($/)
12
+ s.email = ["791331313@qq.com"]
13
+ s.homepage = "http://github.com/MickeyHub/ReplaceClassName"
14
+ s.licenses = ["MIT"]
15
+ s.summary = "An Neat Script to Replace Class Name Globally for Xcode"
16
+ s.description = "easy way to replace class name in xcode using ruby"
17
+ s.executables = ["replace_class"]
18
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: replace_class
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
  - MickeyHub
@@ -10,7 +10,7 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2016-01-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description:
13
+ description: easy way to replace class name in xcode using ruby
14
14
  email:
15
15
  - 791331313@qq.com
16
16
  executables:
@@ -18,8 +18,12 @@ executables:
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - ".gitignore"
22
+ - LICENSE
23
+ - README.md
21
24
  - bin/replace_class
22
25
  - lib/replace_class.rb
26
+ - replace_class.gemspec
23
27
  homepage: http://github.com/MickeyHub/ReplaceClassName
24
28
  licenses:
25
29
  - MIT