capistrano-nomad 0.2.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 738a22f74e6da3d79450902fa618bb8e9e62955997907b04133921462a72894c
4
- data.tar.gz: b898428a3f7010a7602705f0f49b18c41aedaa6d8b27147d8b39f5fa7b645e69
3
+ metadata.gz: 817ed9b3557b3b74bfb35d3111727895286265375ded0706cac176eb32575476
4
+ data.tar.gz: a07a09a0f12cf4f40241f1634bda9a45fbd5eda6eb7252c1be1192967d924ae9
5
5
  SHA512:
6
- metadata.gz: a6eebd2e632918127d1391edf9e55e0196412d80989d14fff0904fdf3a9ef17216d0b56536776995cfd5455cd1ff623faa59c41f4a5c1e4bd9b6c69cf6b75fcf
7
- data.tar.gz: f8effea0e0ed0b4f6d413c04492c1eb835afbbf5c2c30ad27bf7b6433756c0bcc5050b75dc099a30d08c05c8b27ae5d748bb5fda80637d5a1ee41e3fe5667eb7
6
+ metadata.gz: 333e445e462bf9437b87563ca1a55386fd9ab6e55384b70ba293bf5cc21d3855519a84cc757db68953b020afa17f0f67e334e21f098ea42f9a29be01996767d7
7
+ data.tar.gz: 81e3665eaf1e438d4a1e49654959c28b388c8daa8471fbc66d68a34f6de21b5e9db6aee67e8798b3484114367df7dd25831b075e4bd5b848f8756132275bfc34
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capistrano-nomad (0.2.0)
5
- activesupport
4
+ capistrano-nomad (0.2.1)
5
+ activesupport (~> 7.0, <= 7.0.8)
6
6
  byebug
7
7
  capistrano (~> 3.0)
8
8
  git
@@ -18,16 +18,19 @@ GEM
18
18
  i18n (>= 1.6, < 2)
19
19
  minitest (>= 5.1)
20
20
  tzinfo (~> 2.0)
21
+ addressable (2.8.5)
22
+ public_suffix (>= 2.0.2, < 6.0)
21
23
  airbrussh (1.5.0)
22
24
  sshkit (>= 1.6.1, != 1.7.0)
23
25
  byebug (11.1.3)
24
- capistrano (3.14.1)
26
+ capistrano (3.17.3)
25
27
  airbrussh (>= 1.0.0)
26
28
  i18n
27
29
  rake (>= 10.0.0)
28
30
  sshkit (>= 1.9.0)
29
31
  concurrent-ruby (1.2.2)
30
- git (1.10.2)
32
+ git (1.18.0)
33
+ addressable (~> 2.8)
31
34
  rchardet (~> 1.8)
32
35
  i18n (1.14.1)
33
36
  concurrent-ruby (~> 1.0)
@@ -35,6 +38,7 @@ GEM
35
38
  net-scp (4.0.0)
36
39
  net-ssh (>= 2.6.5, < 8.0.0)
37
40
  net-ssh (7.2.0)
41
+ public_suffix (5.0.3)
38
42
  rake (13.0.6)
39
43
  rchardet (1.8.0)
40
44
  sshkit (1.21.5)
@@ -1,10 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "lib/capistrano/nomad/version"
4
-
5
3
  Gem::Specification.new do |spec|
6
4
  spec.name = "capistrano-nomad"
7
- spec.version = Capistrano::Nomad::VERSION
5
+ spec.version = "0.2.1"
8
6
  spec.authors = ["James Hu"]
9
7
 
10
8
  spec.summary = "Capistrano plugin for deploying and managing Nomad jobs"
@@ -29,7 +27,7 @@ Gem::Specification.new do |spec|
29
27
  spec.require_paths = ["lib"]
30
28
 
31
29
  # Uncomment to register a new dependency of your gem
32
- spec.add_dependency "activesupport"
30
+ spec.add_dependency "activesupport", "~> 7.0", "<= 7.0.8"
33
31
  spec.add_dependency "byebug"
34
32
  spec.add_dependency "capistrano", "~> 3.0"
35
33
  spec.add_dependency "git"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-nomad
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Hu
@@ -14,16 +14,22 @@ dependencies:
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '7.0'
20
+ - - "<="
21
+ - !ruby/object:Gem::Version
22
+ version: 7.0.8
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - ">="
27
+ - - "~>"
25
28
  - !ruby/object:Gem::Version
26
- version: '0'
29
+ version: '7.0'
30
+ - - "<="
31
+ - !ruby/object:Gem::Version
32
+ version: 7.0.8
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: byebug
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -129,7 +135,6 @@ files:
129
135
  - lib/capistrano/nomad/helpers/nomad.rb
130
136
  - lib/capistrano/nomad/scm/git_local.rb
131
137
  - lib/capistrano/nomad/tasks/nomad.rake
132
- - lib/capistrano/nomad/version.rb
133
138
  - sig/capistrano/nomad.rbs
134
139
  homepage: https://github.com/axsuul/capistrano-nomad
135
140
  licenses:
@@ -1,6 +0,0 @@
1
- module Capistrano
2
- module Nomad
3
- VERSION = "0.2.0".freeze
4
- end
5
- end
6
-