rob_cap_recipes 0.0.7 → 0.0.8
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 +4 -4
- data/README.md +4 -0
- data/lib/rob_cap_recipes/recipes/rmagick.cap +10 -0
- data/lib/rob_cap_recipes/rmagick.rb +1 -0
- data/lib/rob_cap_recipes/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c025c2384d38345c7d64ffb1eabb80f7ec086567
|
|
4
|
+
data.tar.gz: f271fde63f4e4226b1b2ed97445ab0eb8b74aa5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 464a79d1768677a7dc9b12e893bb44d11ded8c7bba5c1e0bb92c194def10157041cc9d841bb6e7a0daf4a9c39fdfef5ba6423f3260e718846ae6e8fef5dffa5c
|
|
7
|
+
data.tar.gz: 594ffd1e7cc8d70ad518d6db96aeda5ccbffb07c0c9dbc08ff6aab385ae0efeee59bdd8f73334fcbd7218adb967c3fac3adc695f2f96081f108c7597d544f3b5
|
data/README.md
CHANGED
|
@@ -26,6 +26,10 @@ To include generation of ldap.yml at deploy:install add this line to youre deplo
|
|
|
26
26
|
|
|
27
27
|
require 'rob_cap_recipes/device'
|
|
28
28
|
|
|
29
|
+
To install Rmagic on servers at deploy:install add this line to youre deploy.rb file after 'rob_cap_recipes/recipes'
|
|
30
|
+
|
|
31
|
+
require 'rob_cap_recipes/rmagick'
|
|
32
|
+
|
|
29
33
|
## Contributing
|
|
30
34
|
|
|
31
35
|
1. Fork it
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
load File.expand_path('../recipes/rmagick.cap', __FILE__)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rob_cap_recipes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robin Stridsberg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-01-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -49,6 +49,7 @@ files:
|
|
|
49
49
|
- lib/rob_cap_recipes/recipes/nodejs.cap
|
|
50
50
|
- lib/rob_cap_recipes/recipes/puma.cap
|
|
51
51
|
- lib/rob_cap_recipes/recipes/rbenv.cap
|
|
52
|
+
- lib/rob_cap_recipes/recipes/rmagick.cap
|
|
52
53
|
- lib/rob_cap_recipes/recipes/templates/device_ldap.yml.erb
|
|
53
54
|
- lib/rob_cap_recipes/recipes/templates/mysql.yml.erb
|
|
54
55
|
- lib/rob_cap_recipes/recipes/templates/nginx.erb
|
|
@@ -58,6 +59,7 @@ files:
|
|
|
58
59
|
- lib/rob_cap_recipes/recipes/templates/unicorn.rb.erb
|
|
59
60
|
- lib/rob_cap_recipes/recipes/templates/unicorn_init.erb
|
|
60
61
|
- lib/rob_cap_recipes/recipes/unicorn.cap
|
|
62
|
+
- lib/rob_cap_recipes/rmagick.rb
|
|
61
63
|
- lib/rob_cap_recipes/tasks/db.rake
|
|
62
64
|
- lib/rob_cap_recipes/version.rb
|
|
63
65
|
- rob_cap_recipes.gemspec
|
|
@@ -80,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
80
82
|
version: '0'
|
|
81
83
|
requirements: []
|
|
82
84
|
rubyforge_project:
|
|
83
|
-
rubygems_version: 2.0.
|
|
85
|
+
rubygems_version: 2.0.14
|
|
84
86
|
signing_key:
|
|
85
87
|
specification_version: 4
|
|
86
88
|
summary: Adds some recipes to capistrano. Made to fit my own environment
|