betabuilder 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. data/lib/beta_builder.rb +9 -9
  2. metadata +20 -4
data/lib/beta_builder.rb CHANGED
@@ -66,9 +66,9 @@ module BetaBuilder
66
66
 
67
67
  desc "Package the beta release as an IPA file"
68
68
  task :package => :build do
69
- # if @configuration.auto_archive
70
- # Rake::Task['beta:archive'].invoke
71
- # end
69
+ if @configuration.auto_archive
70
+ Rake::Task['beta:archive'].invoke
71
+ end
72
72
 
73
73
  FileUtils.rm_rf('pkg') && FileUtils.mkdir_p('pkg')
74
74
  FileUtils.mkdir_p("pkg/Payload")
@@ -145,14 +145,14 @@ module BetaBuilder
145
145
 
146
146
  desc "Deploy the beta to your server"
147
147
  task :deploy => :package do
148
- system("scp pkg/dist/* lukeredpath.co.uk:#{@configuration.remote_installation_path}")
148
+ system("scp pkg/dist/* #{@configuration.remote_host}:#{@configuration.remote_installation_path}")
149
149
  end
150
150
 
151
- # desc "Build and archive the app"
152
- # task :archive => :build do
153
- # archive = BetaBuilder::ArchivedBuild.new(@configuration)
154
- # archive.save_to(@configuration.archive_path)
155
- # end
151
+ desc "Build and archive the app"
152
+ task :archive => :build do
153
+ archive = BetaBuilder::ArchivedBuild.new(@configuration)
154
+ archive.save_to(@configuration.archive_path)
155
+ end
156
156
  end
157
157
  end
158
158
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: betabuilder
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Luke Redpath
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-02 00:00:00 +00:00
18
+ date: 2010-11-05 00:00:00 +00:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -34,6 +34,22 @@ dependencies:
34
34
  version: 2.0.0
35
35
  type: :runtime
36
36
  version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: uuid
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ hash: 1
46
+ segments:
47
+ - 2
48
+ - 3
49
+ - 1
50
+ version: 2.3.1
51
+ type: :runtime
52
+ version_requirements: *id002
37
53
  description:
38
54
  email: luke@lukeredpath.co.uk
39
55
  executables: []