deploy-context 2.1.33 → 2.1.33.2.gfbb24ca

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 111bb4d3374b339808f2074729b4139363faf9890245537b96a227b394afa3d3
4
- data.tar.gz: 2d385e49ebdb9701176b3d2be548e5aece75c03966b70329f560b48ba8eb8be9
3
+ metadata.gz: c904b0ccc5676d657ef0c566f14e49515a84c779a6a9d1d36d9bbb0fbc75c0de
4
+ data.tar.gz: 969e17b4b9fc76f4dc3ab8dabaa1b3334d3f3f7cefc3917c546fe7c9728c0e4d
5
5
  SHA512:
6
- metadata.gz: 2c8c749e3da0f0cc4f8967cd4ca8fdaefc7d9f4a0142572af8bf7ef847a155ea5e83156e750945438596952afbc4b38fb337adafd0b2b437fe2a4a8d85ac79c2
7
- data.tar.gz: 9655e4bab086915ec872cbda245b25fc4d436ea6c1169ac9d5650d13bbc03544b55b9e4a4f84815e8b075504732a76655d0680e04b02593027a593853e6dc3bd
6
+ metadata.gz: 1751091d7bb61e53814a7c90ec432b6693e7362d7d989fc96143e98a27d08bacc817e1158fc41c2d35c2d01338523d807bcb25689b649a8cf493fc15b46b5958
7
+ data.tar.gz: 7846dbaff3872063d624d23248d2c6838bd459ddda19ee8fb19aaf56f0b015f3589a54181ada4cffb359a2e98b19d76d11c182c4aca58d2f81620e42a9628231
checksums.yaml.gz.sig CHANGED
Binary file
data/Rakefile CHANGED
@@ -1,16 +1,3 @@
1
- require 'rubygems'
2
- require 'bundler'
1
+ require_relative 'lib/deploy-context/helpers/rake_tasks'
3
2
 
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 'lib/deploy-context/helpers/rake'
3
+ task :default => "deploycontext:default"
@@ -2,7 +2,6 @@ module Context
2
2
  module CommandHelper
3
3
  def debug?
4
4
  ENV.key?('CONTEXTDEBUG') && ! ENV['CONTEXTDEBUG'].nil? && ENV['CONTEXTDEBUG']
5
- true
6
5
  end
7
6
 
8
7
  def log(message)
@@ -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/rake.rb
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: '0'
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