capistrano-calendar 0.1.2 → 0.1.3

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8a457fa6a650055575e9cdace6b0d4cdf7e2c210baaaff3820bc176e5caff46b
4
+ data.tar.gz: eff02a6339a94551f420cb67d6c840f5ab23fdaa66201548428f5d68482e7fc3
5
+ SHA512:
6
+ metadata.gz: b1f4c3246dadd0a594d65438f8d3bdeb093e396c66f7f786cd7a57aba05f1c31986f8e734f3af29f15ce814482b604b1d66641f591b531c701907ffcb5946830
7
+ data.tar.gz: 8a598834c22889c987515a16ed1df3ecf1addd6318a7f16a05cce638924044fc5d008fc7bff4d4434544ef05090631c8c6f6e97f0ce45cc64b0447791c9697c4
data/Gemfile CHANGED
@@ -2,9 +2,9 @@ source "http://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'json', '1.6.1'
5
+ gem 'capistrano', '2.9.0'
6
+ gem 'json', '1.8.6'
6
7
  gem "gdata_19", "1.1.3"
7
8
  gem 'daemons', '1.1.4'
8
9
 
9
-
10
10
  gem 'rspec', '2.6.0'
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capistrano-calendar (0.1.1)
4
+ capistrano-calendar (0.1.3)
5
5
  capistrano (>= 2.5.5)
6
6
  gdata_19 (>= 1.1.0)
7
- json
7
+ json (~> 1.8.6)
8
8
 
9
9
  GEM
10
10
  remote: http://rubygems.org/
@@ -19,7 +19,7 @@ GEM
19
19
  diff-lcs (1.1.2)
20
20
  gdata_19 (1.1.3)
21
21
  highline (1.6.11)
22
- json (1.6.1)
22
+ json (1.8.6)
23
23
  net-scp (1.0.4)
24
24
  net-ssh (>= 1.99.1)
25
25
  net-sftp (2.0.5)
@@ -40,8 +40,12 @@ PLATFORMS
40
40
  ruby
41
41
 
42
42
  DEPENDENCIES
43
+ capistrano (= 2.9.0)
43
44
  capistrano-calendar!
44
45
  daemons (= 1.1.4)
45
46
  gdata_19 (= 1.1.3)
46
- json (= 1.6.1)
47
+ json (= 1.8.6)
47
48
  rspec (= 2.6.0)
49
+
50
+ BUNDLED WITH
51
+ 1.16.2
data/README.md CHANGED
@@ -70,12 +70,12 @@ Be sure to pass `:once => true` option if you use *:roles* !
70
70
  set(:calendar_event_time) { Time.now }
71
71
 
72
72
  after 'deploy' do
73
- set :calendar_event_title, "[Deployed] #{application} #{branch}: #{real_revision}"
73
+ set :calendar_event_name, "[Deployed] #{application} #{branch}: #{real_revision}"
74
74
  top.calendar.create_event
75
75
  end
76
76
 
77
77
  after 'deploy:rollback' do
78
- set :calendar_event_title, "[Rollback] #{application} #{branch}: #{real_revision}"
78
+ set :calendar_event_name, "[Rollback] #{application} #{branch}: #{real_revision}"
79
79
  top.calendar.create_event
80
80
  end
81
81
 
@@ -83,12 +83,12 @@ Be sure to pass `:once => true` option if you use *:roles* !
83
83
  # Extra configurations if you are using capistrano-patch:
84
84
  #
85
85
  after 'patch:apply' do
86
- set :calendar_event_title, "[Pathed] #{application} #{branch}: #{patch_strategy.revision_to}"
86
+ set :calendar_event_name, "[Pathed] #{application} #{branch}: #{patch_strategy.revision_to}"
87
87
  calendar_client.create_event
88
88
  end
89
89
 
90
90
  after 'patch:revert' do
91
- set :calendar_event_title, "[Patch rollback] #{application} #{branch}: #{patch_strategy.revision_from}"
91
+ set :calendar_event_name, "[Patch rollback] #{application} #{branch}: #{patch_strategy.revision_from}"
92
92
  top.calendar.create_event
93
93
  end
94
94
 
@@ -19,6 +19,6 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ["lib"]
20
20
 
21
21
  s.add_runtime_dependency "capistrano", ">=2.5.5"
22
- s.add_runtime_dependency "gdata_19", ">=1.1.0"
23
- s.add_runtime_dependency "json"
22
+ s.add_runtime_dependency "gdata_19", ">=1.1.0"
23
+ s.add_runtime_dependency "json", "~>1.8.6"
24
24
  end
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Calendar
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,49 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-calendar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
5
- prerelease:
4
+ version: 0.1.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Andriy Yanko
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-02-03 00:00:00.000000000 Z
11
+ date: 2018-08-07 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: capistrano
16
- requirement: &13359740 !ruby/object:Gem::Requirement
17
- none: false
15
+ requirement: !ruby/object:Gem::Requirement
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: 2.5.5
22
20
  type: :runtime
23
21
  prerelease: false
24
- version_requirements: *13359740
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.5.5
25
27
  - !ruby/object:Gem::Dependency
26
28
  name: gdata_19
27
- requirement: &13359140 !ruby/object:Gem::Requirement
28
- none: false
29
+ requirement: !ruby/object:Gem::Requirement
29
30
  requirements:
30
- - - ! '>='
31
+ - - ">="
31
32
  - !ruby/object:Gem::Version
32
33
  version: 1.1.0
33
34
  type: :runtime
34
35
  prerelease: false
35
- version_requirements: *13359140
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 1.1.0
36
41
  - !ruby/object:Gem::Dependency
37
42
  name: json
38
- requirement: &13348500 !ruby/object:Gem::Requirement
39
- none: false
43
+ requirement: !ruby/object:Gem::Requirement
40
44
  requirements:
41
- - - ! '>='
45
+ - - "~>"
42
46
  - !ruby/object:Gem::Version
43
- version: '0'
47
+ version: 1.8.6
44
48
  type: :runtime
45
49
  prerelease: false
46
- version_requirements: *13348500
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.8.6
47
55
  description:
48
56
  email:
49
57
  - andriy.yanko@gmail.com
@@ -52,8 +60,7 @@ executables:
52
60
  extensions: []
53
61
  extra_rdoc_files: []
54
62
  files:
55
- - .gitignore
56
- - .rvmrc
63
+ - ".gitignore"
57
64
  - Gemfile
58
65
  - Gemfile.lock
59
66
  - README.md
@@ -72,29 +79,27 @@ files:
72
79
  - spec/spec_helper.rb
73
80
  homepage: https://github.com/railsware/capistrano-calendar/
74
81
  licenses: []
82
+ metadata: {}
75
83
  post_install_message:
76
84
  rdoc_options: []
77
85
  require_paths:
78
86
  - lib
79
87
  required_ruby_version: !ruby/object:Gem::Requirement
80
- none: false
81
88
  requirements:
82
- - - ! '>='
89
+ - - ">="
83
90
  - !ruby/object:Gem::Version
84
91
  version: '0'
85
92
  required_rubygems_version: !ruby/object:Gem::Requirement
86
- none: false
87
93
  requirements:
88
- - - ! '>='
94
+ - - ">="
89
95
  - !ruby/object:Gem::Version
90
96
  version: '0'
91
97
  requirements: []
92
98
  rubyforge_project: capistrano-calendar
93
- rubygems_version: 1.8.10
99
+ rubygems_version: 2.7.6
94
100
  signing_key:
95
- specification_version: 3
101
+ specification_version: 4
96
102
  summary: Deployment event creation on (google) calendar service
97
103
  test_files:
98
104
  - spec/google_calendar_spec.rb
99
105
  - spec/spec_helper.rb
100
- has_rdoc:
data/.rvmrc DELETED
@@ -1 +0,0 @@
1
- rvm ruby-1.8.7