capistrano-unformatt 0.4 → 0.5

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
  SHA1:
3
- metadata.gz: 6bdbcfec23015204318334e85a1a0a0d0d23e980
4
- data.tar.gz: c89f8b144bc3a737cf98d8f0a98c19de3725e659
3
+ metadata.gz: 06fdeca7b715b1c2b88c0ac6d8eaf067f16b9f32
4
+ data.tar.gz: 642895d34bd7b1c775c9fb51dd152f60c20a9750
5
5
  SHA512:
6
- metadata.gz: 21234b5b2a51a8712d94ad423d7f69df59ac12763aa25be742f7814ab2a0ffcc0cd8740dedb2ad8277cea691ac0b07d82ee4a0aa8f9c37011656b83b9d73825d
7
- data.tar.gz: 751dacc78d1c8f3f9f1c6f048c58df74d25f509f948d5589abe283cfd32db7f577647edd11c46a71491d34435c00f86cb08d54c4e5456de1e768b04e8d256941
6
+ metadata.gz: 16fb88de41028f03cccd8b555a1d5d94b630c65a8ac4aa6f2ad83b682e01585ff0a7c8d66242acfb0570f2967c882fca01457c23dad7c73d82734ece5a026969
7
+ data.tar.gz: e26c778e1ceecef607737c9158a54b0328e45f10b21f62d249a6e8fe721253b8a09c98190af0a49c467517a93c5a5096258376327f0470071be7fa9cb800d960
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/CHANGELOG.md CHANGED
@@ -13,3 +13,7 @@
13
13
  ## v0.4
14
14
 
15
15
  * Remove conflicting require and templating path not being set
16
+
17
+ ## v0.5
18
+
19
+ * Fixes on spec
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in capistrano-unformatt.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
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,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -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'
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