capistrano-unformatt 0.4 → 0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +17 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile +4 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/capistrano-unformatt.gemspec +21 -0
- metadata +7 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06fdeca7b715b1c2b88c0ac6d8eaf067f16b9f32
|
4
|
+
data.tar.gz: 642895d34bd7b1c775c9fb51dd152f60c20a9750
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16fb88de41028f03cccd8b555a1d5d94b630c65a8ac4aa6f2ad83b682e01585ff0a7c8d66242acfb0570f2967c882fca01457c23dad7c73d82734ece5a026969
|
7
|
+
data.tar.gz: e26c778e1ceecef607737c9158a54b0328e45f10b21f62d249a6e8fe721253b8a09c98190af0a49c467517a93c5a5096258376327f0470071be7fa9cb800d960
|
data/.gitignore
ADDED
data/CHANGELOG.md
CHANGED
data/Gemfile
ADDED
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "capistrano/unformatt"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "capistrano-unformatt"
|
7
|
+
spec.version = '0.5'
|
8
|
+
spec.authors = ["unformatt"]
|
9
|
+
spec.email = ["unformatt@gmail.com"]
|
10
|
+
spec.description = "Custom recipes for Unformatt projects"
|
11
|
+
spec.summary = "Custom recipes for Unformatt projects"
|
12
|
+
spec.homepage = "https://github.com/unformattmh/capistrano-unformatt"
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files`.split($/)
|
16
|
+
spec.executables = []
|
17
|
+
spec.require_paths = ["lib"]
|
18
|
+
|
19
|
+
spec.add_dependency "capistrano", ">= 3.1.0"
|
20
|
+
spec.add_dependency "capistrano-template", ">= 0.0.7"
|
21
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-unformatt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.5'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- unformatt
|
@@ -45,9 +45,15 @@ executables: []
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
+
- ".gitignore"
|
48
49
|
- CHANGELOG.md
|
50
|
+
- Gemfile
|
49
51
|
- LICENSE.md
|
50
52
|
- README.md
|
53
|
+
- Rakefile
|
54
|
+
- bin/console
|
55
|
+
- bin/setup
|
56
|
+
- capistrano-unformatt.gemspec
|
51
57
|
- lib/capistrano/tasks/monit.rake
|
52
58
|
- lib/capistrano/tasks/nginx.rake
|
53
59
|
- lib/capistrano/tasks/rails.rake
|