fwtoolkit 0.6.0 → 0.6.1
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/lib/fwtoolkit/tasks/build.rb +7 -0
- data/lib/fwtoolkit/tasks/frank.rb +0 -5
- data/lib/fwtoolkit/version.rb +1 -1
- metadata +3 -3
|
@@ -93,6 +93,13 @@ module FWToolkit
|
|
|
93
93
|
task :build_upload => [:validate_auth_token, 'release_iphoneos:archive', :ipa, :upload]
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
+
namespace :frank do
|
|
97
|
+
desc 'Build the frankified App'
|
|
98
|
+
task :build do
|
|
99
|
+
sh "frank build --workspace #{@workspace} --scheme #{@scheme}"
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
|
|
96
103
|
namespace :fwbuild do
|
|
97
104
|
task :upload do
|
|
98
105
|
S3Cmd.put("path/to/a/file.ext", "s3://fw.fwbuild.production/uploads/") do |progress|
|
|
@@ -43,11 +43,6 @@ module FWToolkit
|
|
|
43
43
|
template(factory_template, File.join(output_dir, 'factories.rb'))
|
|
44
44
|
end
|
|
45
45
|
|
|
46
|
-
desc 'Build the frankified App'
|
|
47
|
-
task :build do
|
|
48
|
-
run "frank build --workspace #{@workspace} --scheme #{@scheme}"
|
|
49
|
-
end
|
|
50
|
-
|
|
51
46
|
Cucumber::Rake::Task.new(:ci_test, 'Run Frank acceptance tests with CI options') do |t|
|
|
52
47
|
ENV['APP_BUNDLE_PATH'] = File.join( Dir.pwd, 'Frank/frankified_build/Frankified.app' )
|
|
53
48
|
ENV['USE_SIM_LAUNCHER_SERVER'] = 'YES'
|
data/lib/fwtoolkit/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fwtoolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -326,7 +326,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
326
326
|
version: '0'
|
|
327
327
|
segments:
|
|
328
328
|
- 0
|
|
329
|
-
hash:
|
|
329
|
+
hash: 548593184535858224
|
|
330
330
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
331
331
|
none: false
|
|
332
332
|
requirements:
|
|
@@ -335,7 +335,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
335
335
|
version: '0'
|
|
336
336
|
segments:
|
|
337
337
|
- 0
|
|
338
|
-
hash:
|
|
338
|
+
hash: 548593184535858224
|
|
339
339
|
requirements: []
|
|
340
340
|
rubyforge_project:
|
|
341
341
|
rubygems_version: 1.8.24
|