capistrano-scm-static 0.0.1 → 0.0.2

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: e9d12087bd0bd45cfdc7628098d56591632ec14f2d5d07deccbb4ada5fa545cd
4
- data.tar.gz: 174e320c568e7fbe5135e01ed635719cfca98ae720be6a97f6419a7dbb827eba
3
+ metadata.gz: bcdc1cb2ab17600e01d40f1801afee735dcdd58eb2374c88e3376dc392db465c
4
+ data.tar.gz: fdee1bc0644fa521b11fbcf776977a177b6d72d46c3e18afcbcf93f4c5c48a33
5
5
  SHA512:
6
- metadata.gz: 9cdf5b7d48b12f6fba01568156ce527b36db97cd510e57d7640a815aafdaf0fab81a5121501143b19963db4536bade1d57491baa1ccbee390420abb8dc716756
7
- data.tar.gz: 7637c211adf037c2abf9c5226ac686333eccc6553f5792f220dbe87c11bd73829923ba6e51cac69ffa4dfe292b234acc026b7ebacbe98560aca06e9c2dc1f3b2
6
+ metadata.gz: 9947e3fff8ebdfd37a84e592ad2575856b742732651a801295e7801d1e9f3ef00f82f3102d0c3b075f7034c615e0899622c64ae16b2ea7a2424849897ffe52f5
7
+ data.tar.gz: 5a11dcebd98e504cf2a09b0923e33900caf293e78b2e25ab539f804940d9020c0be081d525c39d062154ae1b8a9d29b1e3b972bfe669900bd9cf99d4b4d3728d
@@ -5,7 +5,7 @@ require "capistrano/scm/static/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "capistrano-scm-static"
8
- spec.version = Capistrano::Scm::Static::VERSION
8
+ spec.version = Capistrano::SCM::Static::VERSION
9
9
  spec.authors = ["sushant12"]
10
10
  spec.email = ["sussyoung9@gmail.com"]
11
11
  spec.summary = %q{A plugin for capistrano scm to deploy static site}
@@ -1,7 +1,19 @@
1
- module Capistrano
2
- module Scm
3
- module Static
4
- VERSION = "0.0.1"
1
+ begin
2
+ require 'capistrano/scm/plugin'
3
+ rescue LoadError
4
+ module Capistrano
5
+ class Plugin; end
6
+ class SCM
7
+ class Plugin < ::Capistrano::Plugin
5
8
  end
9
+ end
10
+ end
11
+ end
12
+
13
+ module Capistrano
14
+ class SCM
15
+ class Static < ::Capistrano::SCM::Plugin
16
+ VERSION = "0.0.2"
17
+ end
6
18
  end
7
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-scm-static
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - sushant12