ios-box 0.0.3 → 0.1.0
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.
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/ios-box.gemspec +3 -3
- data/lib/build_cache.rb +1 -1
- data/lib/ios_box.rb +4 -0
- metadata +4 -4
data/Rakefile
CHANGED
|
@@ -13,7 +13,7 @@ require 'jeweler'
|
|
|
13
13
|
Jeweler::Tasks.new do |gem|
|
|
14
14
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
15
15
|
gem.name = "ios-box"
|
|
16
|
-
gem.homepage = "http://github.com/
|
|
16
|
+
gem.homepage = "http://github.com/owl-foresty/ios-box"
|
|
17
17
|
gem.license = "MIT"
|
|
18
18
|
gem.summary = %Q{Automates some common tasks in iOS development}
|
|
19
19
|
gem.description = %Q{ios-box offers automation and easy tasks for some most common tasks in iOS development.}
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0
|
|
1
|
+
0.1.0
|
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
|
|
8
|
+
s.version = "0.1.0"
|
|
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-05-
|
|
12
|
+
s.date = %q{2011-05-14}
|
|
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 = [
|
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
|
|
|
35
35
|
"spec/ios-box_spec.rb",
|
|
36
36
|
"spec/spec_helper.rb"
|
|
37
37
|
]
|
|
38
|
-
s.homepage = %q{http://github.com/
|
|
38
|
+
s.homepage = %q{http://github.com/owl-foresty/ios-box}
|
|
39
39
|
s.licenses = ["MIT"]
|
|
40
40
|
s.require_paths = ["lib"]
|
|
41
41
|
s.rubygems_version = %q{1.6.2}
|
data/lib/build_cache.rb
CHANGED
|
@@ -6,7 +6,7 @@ module IosBox
|
|
|
6
6
|
if (config.project_dir.nil? && ENV['XCODE_VERSION_ACTUAL'].nil?)
|
|
7
7
|
config.project_dir = @project_dir
|
|
8
8
|
config.infoplist_file = @infoplist_file
|
|
9
|
-
config.plist = File.join(@project_dir, @infoplist_file)
|
|
9
|
+
config.plist = File.join(@project_dir, @infoplist_file) unless @project_dir.nil?
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
|
data/lib/ios_box.rb
CHANGED
|
@@ -61,6 +61,10 @@ module IosBox
|
|
|
61
61
|
target = pbx.find_item :name => @config.target, :type => PBXProject::PBXTypes::PBXNativeTarget
|
|
62
62
|
target.add_build_phase initPhase, 0
|
|
63
63
|
|
|
64
|
+
# Fix DevelopmentRegion
|
|
65
|
+
project = pbx.find_item :type => PBXProject::PBXTypes::PBXProject
|
|
66
|
+
project[0].developmentRegion = "en"
|
|
67
|
+
|
|
64
68
|
# Save our project file
|
|
65
69
|
pbx.write_to :file => "#{xcode}/project.pbxproj"
|
|
66
70
|
end
|
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
|
|
5
|
+
version: 0.1.0
|
|
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-05-
|
|
13
|
+
date: 2011-05-14 00:00:00 +09:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -206,7 +206,7 @@ files:
|
|
|
206
206
|
- spec/ios-box_spec.rb
|
|
207
207
|
- spec/spec_helper.rb
|
|
208
208
|
has_rdoc: true
|
|
209
|
-
homepage: http://github.com/
|
|
209
|
+
homepage: http://github.com/owl-foresty/ios-box
|
|
210
210
|
licenses:
|
|
211
211
|
- MIT
|
|
212
212
|
post_install_message:
|
|
@@ -219,7 +219,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
219
219
|
requirements:
|
|
220
220
|
- - ">="
|
|
221
221
|
- !ruby/object:Gem::Version
|
|
222
|
-
hash:
|
|
222
|
+
hash: -1478862092490478258
|
|
223
223
|
segments:
|
|
224
224
|
- 0
|
|
225
225
|
version: "0"
|