deploy-context 2.1.33 → 2.1.33.2.gfbb24ca
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 +4 -4
- 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: c904b0ccc5676d657ef0c566f14e49515a84c779a6a9d1d36d9bbb0fbc75c0de
|
4
|
+
data.tar.gz: 969e17b4b9fc76f4dc3ab8dabaa1b3334d3f3f7cefc3917c546fe7c9728c0e4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1751091d7bb61e53814a7c90ec432b6693e7362d7d989fc96143e98a27d08bacc817e1158fc41c2d35c2d01338523d807bcb25689b649a8cf493fc15b46b5958
|
7
|
+
data.tar.gz: 7846dbaff3872063d624d23248d2c6838bd459ddda19ee8fb19aaf56f0b015f3589a54181ada4cffb359a2e98b19d76d11c182c4aca58d2f81620e42a9628231
|
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.33
|
4
|
+
version: 2.1.33.2.gfbb24ca
|
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
|
@@ -133,9 +133,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
133
133
|
version: '0'
|
134
134
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
|
-
- - "
|
136
|
+
- - ">"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
138
|
+
version: 1.3.1
|
139
139
|
requirements: []
|
140
140
|
rubygems_version: 3.2.32
|
141
141
|
signing_key:
|
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
|