capistrano-confirm 0.0.2 → 0.0.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.
data/README CHANGED
@@ -15,7 +15,7 @@
15
15
  2, Require it in your deploy config file, it should be `config/deploy.rb` for rails
16
16
 
17
17
  require "bundler/setup"
18
- require 'capistrano-confirm'
18
+ require 'capistrano/confirm'
19
19
 
20
20
  3, Only want to confirm for some stages? customize `confirm_stages` as your like.
21
21
 
@@ -1,10 +1,10 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path("../lib", __FILE__)
3
- require "capistrano-confirm/version"
3
+ require "capistrano/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "capistrano-confirm"
7
- s.version = Capistrano::Confirm::VERSION
7
+ s.version = CapistranoConfirm::VERSION
8
8
  s.authors = ["Jinzhu"]
9
9
  s.email = ["wosmvp@gmail.com"]
10
10
  s.homepage = "https://github.com/jinzhu/capistrano-confirm"
@@ -0,0 +1,3 @@
1
+ module CapistranoConfirm
2
+ VERSION = "0.0.3"
3
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-confirm
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jinzhu
@@ -35,8 +35,8 @@ files:
35
35
  - README
36
36
  - Rakefile
37
37
  - capistrano-confirm.gemspec
38
- - lib/capistrano-confirm.rb
39
- - lib/capistrano-confirm/version.rb
38
+ - lib/capistrano/confirm.rb
39
+ - lib/capistrano/version.rb
40
40
  has_rdoc: true
41
41
  homepage: https://github.com/jinzhu/capistrano-confirm
42
42
  licenses: []
@@ -1,5 +0,0 @@
1
- module Capistrano
2
- module Confirm
3
- VERSION = "0.0.2"
4
- end
5
- end