capistrano-crono 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c240c476b5c3855743c7fbdb996286fbe710d3d1
4
- data.tar.gz: f1ba7c755175c53790a7fa71254d04e9d9e564a8
3
+ metadata.gz: d7f353a866bc47ff3f6e9fe08ac5150ec5649b0f
4
+ data.tar.gz: 711d1279b157c2ed53ddfc4172cec33792972628
5
5
  SHA512:
6
- metadata.gz: aac2fefabd2e755fefd638442a17bdb11f1cb8847ae7618ddd2f3a13358cb5630798ad05bf7bc334e5480eb58ad364b7db1739782f0a366feae602a828960cb8
7
- data.tar.gz: df68b30015dc3da9e557d911397cca5b5ba8cbb095e2dd01f7df56a409053b09384463efbd7766b8ec11bf20d5471dd70c2bc09ce5e7545ce54a07261744ccb4
6
+ metadata.gz: 86885b8171481ccb951c5567bf5a631b1e9d31b784a5035d3432b7aaf056a538623566689bb2d5cb66c1638629f3ace50264a47df9a7e8eb3bdd22be693ad59f
7
+ data.tar.gz: 0c9db0162cb1a168c494288d446c8ca08a0b30a2920f212a1241bc902ffa2a058433a29c60dcb2825c3b2db6979f569bcdc912bf9055f03212e4b820ad07b3a8
@@ -0,0 +1,4 @@
1
+ 0.1.0
2
+ -----------
3
+
4
+ - Initial release!
@@ -0,0 +1,49 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ capistrano-crono (0.1.0)
5
+ capistrano (>= 3.0.0)
6
+ crono
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activejob (4.2.0)
12
+ activesupport (= 4.2.0)
13
+ globalid (>= 0.3.0)
14
+ activesupport (4.2.0)
15
+ i18n (~> 0.7)
16
+ json (~> 1.7, >= 1.7.7)
17
+ minitest (~> 5.1)
18
+ thread_safe (~> 0.3, >= 0.3.4)
19
+ tzinfo (~> 1.1)
20
+ capistrano (3.4.0)
21
+ i18n
22
+ rake (>= 10.0.0)
23
+ sshkit (~> 1.3)
24
+ colorize (0.7.5)
25
+ crono (0.5.1)
26
+ activejob (~> 4.0)
27
+ activesupport (~> 4.0)
28
+ globalid (0.3.3)
29
+ activesupport (>= 4.1.0)
30
+ i18n (0.7.0)
31
+ json (1.8.2)
32
+ minitest (5.5.1)
33
+ net-scp (1.2.1)
34
+ net-ssh (>= 2.6.5)
35
+ net-ssh (2.9.2)
36
+ rake (10.4.2)
37
+ sshkit (1.7.1)
38
+ colorize (>= 0.7.0)
39
+ net-scp (>= 1.1.2)
40
+ net-ssh (>= 2.8.0)
41
+ thread_safe (0.3.4)
42
+ tzinfo (1.2.2)
43
+ thread_safe (~> 0.1)
44
+
45
+ PLATFORMS
46
+ ruby
47
+
48
+ DEPENDENCIES
49
+ capistrano-crono!
data/README.md CHANGED
@@ -3,6 +3,11 @@ capistrano-crono
3
3
 
4
4
  [Crono](https://github.com/plashchynski/crono/) integration for [Capistrano](https://github.com/capistrano/capistrano)
5
5
 
6
+ ## Requirements
7
+
8
+ Capistrano 3.*
9
+
10
+
6
11
  ## Installation
7
12
 
8
13
  Add this line to your application's Gemfile:
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
  s.required_rubygems_version = ">= 1.3.6"
17
17
  s.rubyforge_project = "capistrano-crono"
18
18
 
19
- s.add_runtime_dependency "capistrano"
19
+ s.add_runtime_dependency "capistrano", ">= 3.0.0"
20
20
  s.add_runtime_dependency "crono"
21
21
 
22
22
  s.files = `git ls-files`.split("\n")
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Crono
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-crono
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dzmitry Plashchynski
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 3.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: 3.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: crono
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -46,7 +46,9 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - ".gitignore"
49
+ - Changes.md
49
50
  - Gemfile
51
+ - Gemfile.lock
50
52
  - LICENSE
51
53
  - NOTICE
52
54
  - README.md