deploy-context 2.1.33 → 2.1.34
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/Rakefile +2 -15
- data/lib/deploy-context/helpers/command.rb +0 -1
- data/lib/deploy-context/helpers/rake_tasks.rb +30 -0
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
- data/lib/deploy-context/helpers/rake.rb +0 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58da6e5ffc5de17d4063999705d96c4bd1af79692113fd4f2c69a122a4d0233f
|
4
|
+
data.tar.gz: 60dce65e50292b0852fe8a1f794226aa89f419b3cc2eb914f301530f47618966
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed4491cf4edb22d04f0f67e68a050f75ae3df49374944c34e11e309bf5146649b2ba1a33bd71b2e4928a495d7e167de9b6b44928d2b58dac44986f3a52a53825
|
7
|
+
data.tar.gz: a18427eee0b1e9b7e4683ce7e25c7560c141b8879313666ec7a0cd8f9527d53eed5358428449a0c798216d9ce237c1b7d0e68c7e2c2d8db9431415ac9c725308
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/Rakefile
CHANGED
@@ -1,16 +1,3 @@
|
|
1
|
-
|
2
|
-
require 'bundler'
|
1
|
+
require_relative 'lib/deploy-context/helpers/rake_tasks'
|
3
2
|
|
4
|
-
|
5
|
-
|
6
|
-
require 'rdoc/task'
|
7
|
-
|
8
|
-
Rake::RDocTask.new do |rd|
|
9
|
-
rd.main = "README.md"
|
10
|
-
rd.title = 'deploy-context'
|
11
|
-
rd.rdoc_files.include("README.md", "lib/**/*.rb")
|
12
|
-
end
|
13
|
-
|
14
|
-
require 'git-version-bump/rake-tasks'
|
15
|
-
|
16
|
-
require_relative 'lib/deploy-context/helpers/rake'
|
3
|
+
task :default => "deploycontext:default"
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'bundler'
|
3
|
+
|
4
|
+
Bundler::GemHelper.install_tasks
|
5
|
+
|
6
|
+
require 'rdoc/task'
|
7
|
+
|
8
|
+
Rake::RDocTask.new do |rd|
|
9
|
+
rd.main = "README.md"
|
10
|
+
rd.title = 'deploy-context'
|
11
|
+
rd.rdoc_files.include("README.md", "lib/**/*.rb")
|
12
|
+
end
|
13
|
+
|
14
|
+
require 'git-version-bump/rake-tasks'
|
15
|
+
|
16
|
+
require_relative '../../deploy-context'
|
17
|
+
|
18
|
+
namespace :deploycontext do
|
19
|
+
task :default => "deploycontext:test" do
|
20
|
+
Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'once')
|
21
|
+
end
|
22
|
+
|
23
|
+
task :bump do
|
24
|
+
Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'bump')
|
25
|
+
end
|
26
|
+
|
27
|
+
task :test do
|
28
|
+
Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'test')
|
29
|
+
end
|
30
|
+
end
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deploy-context
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.34
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jimmy Provencher
|
@@ -113,7 +113,7 @@ files:
|
|
113
113
|
- lib/deploy-context/deploy/ruby.rb
|
114
114
|
- lib/deploy-context/helpers/binary.rb
|
115
115
|
- lib/deploy-context/helpers/command.rb
|
116
|
-
- lib/deploy-context/helpers/
|
116
|
+
- lib/deploy-context/helpers/rake_tasks.rb
|
117
117
|
homepage: https://github.com/JimboDragonGit/deploy-context
|
118
118
|
licenses:
|
119
119
|
- MIT
|
metadata.gz.sig
CHANGED
Binary file
|
@@ -1,15 +0,0 @@
|
|
1
|
-
require_relative '../../deploy-context'
|
2
|
-
|
3
|
-
deployer = Context::DeployContext.deployer
|
4
|
-
|
5
|
-
task :default => "test" do
|
6
|
-
deployer.execute_action(deployer, 'once')
|
7
|
-
end
|
8
|
-
|
9
|
-
task :bump do
|
10
|
-
deployer.execute_action(deployer, 'bump')
|
11
|
-
end
|
12
|
-
|
13
|
-
task :test do
|
14
|
-
deployer.execute_action(deployer, 'test')
|
15
|
-
end
|