betabuilder 0.3.0 → 0.3.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/CHANGES.md +6 -0
- data/lib/beta_builder.rb +6 -2
- data/lib/beta_builder/deployment_strategies.rb +1 -0
- metadata +3 -3
data/CHANGES.md
CHANGED
data/lib/beta_builder.rb
CHANGED
|
@@ -88,9 +88,13 @@ module BetaBuilder
|
|
|
88
88
|
end
|
|
89
89
|
|
|
90
90
|
if @configuration.deployment_strategy
|
|
91
|
-
desc "
|
|
92
|
-
task :
|
|
91
|
+
desc "Prepare your app for deployment"
|
|
92
|
+
task :prepare => :package do
|
|
93
93
|
@configuration.deployment_strategy.prepare
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
desc "Deploy the beta using your chosen deployment strategy"
|
|
97
|
+
task :deploy => :prepare do
|
|
94
98
|
@configuration.deployment_strategy.deploy
|
|
95
99
|
end
|
|
96
100
|
|
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:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.3.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Luke Redpath
|