ios-box 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +31 -4
  2. data/VERSION +1 -1
  3. data/ios-box.gemspec +2 -2
  4. metadata +3 -3
data/README.md CHANGED
@@ -7,10 +7,33 @@ version information (e.g. build date, GIT hash, etc).
7
7
  Further version will integrate deployment options, such as deploy beta versions
8
8
  to TestFlight.
9
9
 
10
+ Current Features
11
+ ----------------
12
+
13
+ Currently IosBox supports following features:
14
+
15
+ * <b>Build Prepare</b> (`iosbox:build:prepare`)
16
+ Build prepare task generates new build number and bundle version and stores
17
+ it to application Info.plist.
18
+ It also saves some needed path information to .buildCache for other tasks
19
+
20
+ * <b>Version Mungle</b> (`iosbox:version:*`)
21
+ IosBox offers simple tasks to bump version numbers. Either it is patch, minor or
22
+ major version bump, IosBox automatically handles increasing current version number.
23
+
24
+ ### Planned Features
25
+
26
+ In the roadmap are following features (but not yet planned)
27
+
28
+ * Library adding, such as analytics, Hoptoad, adwhirl, etc.
29
+ * Asset management, slicing assets according to receipt etc.
30
+ * More to come, open for suggestions...
31
+
10
32
  Installation
11
- ============
33
+ ------------
12
34
 
13
35
  Install `IosBox` gem if you haven't done yet so
36
+
14
37
  $ gem install ios-box
15
38
 
16
39
  Create in the root of your project folder `Rakefile` -file with following contents:
@@ -28,14 +51,18 @@ Integrate toolbox with your XCode project by executing following command:
28
51
  Notice! This command will modify your XCode project file and therefore can make your project to stop working.
29
52
  Make sure you have proper backups done.
30
53
 
54
+ If you want to integrate IosBox manually, add following script as build phase, preferably as first phase.
55
+
56
+ (cd $PROJECT_DIR; rake iosbox:build:prepare)
57
+
31
58
  Usage
32
- =====
59
+ -----
33
60
 
34
61
  Run `rake -T` in project folder to see available commands.
35
62
 
36
63
  Copyright
37
- =========
64
+ ---------
38
65
 
39
- Copyright (c) 2011 Mikko Kokkonen. See LICENSE.txt for
66
+ Copyright &copy; 2011 Mikko Kokkonen. See LICENSE.txt for
40
67
  further details.
41
68
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 0.0.1
data/ios-box.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ios-box}
8
- s.version = "0.0.0"
8
+ s.version = "0.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mikko Kokkonen"]
12
- s.date = %q{2011-04-23}
12
+ s.date = %q{2011-04-25}
13
13
  s.description = %q{ios-box offers automation and easy tasks for some most common tasks in iOS development.}
14
14
  s.email = %q{mikko.kokkonen@me.com}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ios-box
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.0
5
+ version: 0.0.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Mikko Kokkonen
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-23 00:00:00 +09:00
13
+ date: 2011-04-25 00:00:00 +09:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -160,7 +160,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
160
160
  requirements:
161
161
  - - ">="
162
162
  - !ruby/object:Gem::Version
163
- hash: -258283987276610379
163
+ hash: 4585312451122071517
164
164
  segments:
165
165
  - 0
166
166
  version: "0"