transender 0.2.8 → 0.2.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,16 +1,37 @@
1
- = transender
1
+ transender
2
+ by KitschMaster
3
+ kitschmaster.com
4
+
5
+ == DESCRIPTION:
2
6
 
3
7
  Use Transender whenever you need to git-clone and rename XCode iPhone SDK projects.
4
8
 
5
9
  Project home: http://kitschmaster.com/kiches/246
6
10
 
7
- == FEATURES/NO-PROBLEMS:
11
+ When I started working with iPhone and iPod touch apps I soon realized how strange it is.
12
+ One day I wanted to copy and rename an app. There was no easy way to do it.
13
+ So I wrote some scripts to hack that.
14
+
15
+ I call the process of cloning an existing app and renaming it right after: transending.
16
+
17
+ So transend your codes.
18
+
19
+ == FEATURES/PROBLEMS:
8
20
 
9
21
  * can clone XCode projects (on git) and rename them successfully (tested only on iPhone/iPod Touch projects)
10
22
  * use from command line or ruby program
23
+ * since 0.2.8 an improved transending algorithm, uses a bowl
11
24
 
12
25
  == SYNOPSIS:
13
26
 
27
+ The project/app You want to transend should be sitting in a git repository.
28
+
29
+ An example of using it from a ruby program:
30
+
31
+ Transender::Ji.transend( {:app_title=>"myClonedProject", :transform=>"git://github.com/mihael/iproject.git", :ji_path => File.join(File.dirname(__FILE__), %w[.. tmp]) })
32
+
33
+ This would clone the iproject into ji_path. Then it would rename it to myClonedProject. It would also create "abowl" directory, which can be used with the unreleased MakeMoney iPhone and iPod touch programming framework.
34
+
14
35
  You could use it in a Rails app maybe like this:
15
36
 
16
37
  Transender::Ji.transform_and_zip({:app_title=>"myClonedProject", :transform=>"git://github.com/mihael/iproject.git", :ji_path => File.join(File.dirname(__FILE__), %w[.. tmp]) }) do |zip|
@@ -21,6 +42,10 @@ Or on the command line, like this:
21
42
 
22
43
  transender git://github.com/mihael/iproject.git myFreshProject /projects/
23
44
 
45
+ If You just need to rename an existing project You can do this:
46
+
47
+ transender-rename myBadlyNamedProject/ myCoolNamedProject /My/Cool/Path/To/My/Hot/Projects/Path/
48
+
24
49
  == REQUIREMENTS:
25
50
 
26
51
  Nothing you would not have. Only the simple tools.
@@ -32,17 +57,9 @@ Nothing you would not have. Only the simple tools.
32
57
 
33
58
  == INSTALL:
34
59
 
35
- GitHub style:
36
-
37
- * gem sources -a http://gems.github.com
38
- * sudo gem install mihael-transender
39
-
40
- RubyForge style:
41
-
42
60
  * sudo gem install transender
43
61
 
44
- == Copyright
45
-
46
- Copyright (c) 2009 Mihael. See LICENSE for details.
62
+ == LICENSE:
47
63
 
48
64
 
65
+ Copyright (c) Mihael. See LICENSE for details.
data/README.txt CHANGED
@@ -8,14 +8,30 @@ Use Transender whenever you need to git-clone and rename XCode iPhone SDK projec
8
8
 
9
9
  Project home: http://kitschmaster.com/kiches/246
10
10
 
11
+ When I started working with iPhone and iPod touch apps I soon realized how strange it is.
12
+ One day I wanted to copy and rename an app. There was no easy way to do it.
13
+ So I wrote some scripts to hack that.
14
+
15
+ I call the process of cloning an existing app and renaming it right after: transending.
16
+
17
+ So transend your codes.
11
18
 
12
19
  == FEATURES/PROBLEMS:
13
20
 
14
21
  * can clone XCode projects (on git) and rename them successfully (tested only on iPhone/iPod Touch projects)
15
22
  * use from command line or ruby program
23
+ * since 0.2.8 an improved transending algorithm, uses a bowl
16
24
 
17
25
  == SYNOPSIS:
18
26
 
27
+ The project/app You want to transend should be sitting in a git repository.
28
+
29
+ An example of using it from a ruby program:
30
+
31
+ Transender::Ji.transend( {:app_title=>"myClonedProject", :transform=>"git://github.com/mihael/iproject.git", :ji_path => File.join(File.dirname(__FILE__), %w[.. tmp]) })
32
+
33
+ This would clone the iproject into ji_path. Then it would rename it to myClonedProject. It would also create "abowl" directory, which can be used with the unreleased MakeMoney iPhone and iPod touch programming framework.
34
+
19
35
  You could use it in a Rails app maybe like this:
20
36
 
21
37
  Transender::Ji.transform_and_zip({:app_title=>"myClonedProject", :transform=>"git://github.com/mihael/iproject.git", :ji_path => File.join(File.dirname(__FILE__), %w[.. tmp]) }) do |zip|
@@ -26,6 +42,10 @@ Or on the command line, like this:
26
42
 
27
43
  transender git://github.com/mihael/iproject.git myFreshProject /projects/
28
44
 
45
+ If You just need to rename an existing project You can do this:
46
+
47
+ transender-rename myBadlyNamedProject/ myCoolNamedProject /My/Cool/Path/To/My/Hot/Projects/Path/
48
+
29
49
  == REQUIREMENTS:
30
50
 
31
51
  Nothing you would not have. Only the simple tools.
@@ -37,36 +57,9 @@ Nothing you would not have. Only the simple tools.
37
57
 
38
58
  == INSTALL:
39
59
 
40
- GitHub style:
41
-
42
- * gem sources -a http://gems.github.com
43
- * sudo gem install mihael-transender
44
-
45
- RubyForge style:
46
-
47
60
  * sudo gem install transender
48
61
 
49
62
  == LICENSE:
50
63
 
51
- (The MIT License)
52
-
53
- Copyright (c) 2008 FIXME (different license?)
54
-
55
- Permission is hereby granted, free of charge, to any person obtaining
56
- a copy of this software and associated documentation files (the
57
- 'Software'), to deal in the Software without restriction, including
58
- without limitation the rights to use, copy, modify, merge, publish,
59
- distribute, sublicense, and/or sell copies of the Software, and to
60
- permit persons to whom the Software is furnished to do so, subject to
61
- the following conditions:
62
-
63
- The above copyright notice and this permission notice shall be
64
- included in all copies or substantial portions of the Software.
65
64
 
66
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
67
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
68
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
69
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
70
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
71
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
72
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
65
+ Copyright (c) Mihael. See LICENSE for details.
@@ -1,4 +1,4 @@
1
1
  ---
2
- :minor: 2
3
- :patch: 8
4
2
  :major: 0
3
+ :minor: 2
4
+ :patch: 9
@@ -12,8 +12,8 @@ out_dir = ARGV[2]
12
12
  def usage
13
13
  puts "Transender #{Transender::VERSION} - the iPhoneSDK cloning/renaming gem"
14
14
  puts "Usage:\n"
15
- puts "~>transender myBadlyNamedProject/ myCoolProject /myCool/Path/To/Projects/Path/\n"
16
- puts "~>transender <transform> <app_title> <out_dir>\n"
15
+ puts "~>transender-rename myBadlyNamedProject/ myCoolProject /myCool/Path/To/Projects/Path/\n"
16
+ puts "~>transender-rename <transform> <app_title> <out_dir>\n"
17
17
  puts "transform - an XCode project \n"
18
18
  puts "app_title - the renamed projects name\n"
19
19
  puts "out_dir - where to put fresh app's files\n"
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{transender}
8
- s.version = "0.2.8"
8
+ s.version = "0.2.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mihael"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transender
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mihael