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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9eb893060fbb1f9b79f531cab0fbf6896d12f466
4
- data.tar.gz: 00b7089d158f2be6e9ef083ae2f137d16f36ac59
3
+ metadata.gz: c025c2384d38345c7d64ffb1eabb80f7ec086567
4
+ data.tar.gz: f271fde63f4e4226b1b2ed97445ab0eb8b74aa5f
5
5
  SHA512:
6
- metadata.gz: c13822a5aa5a385ed903b6ce9488879d8b2d990af2509e23ac94a28152e10704f50a4b66e97b75ce11191526563422c68dfdc27df0fa48e31ec4954b356f0fce
7
- data.tar.gz: 1c0b886205fec0be75c67ce4612a18c5318d121c4f985f3d5b5e9241b9b027c3e4f905273bd2326f1f541a6f78a626ef77695be5f80f775731d9e9b1dc89dcbd
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,10 @@
1
+ namespace :rmagick do
2
+
3
+ task :install do
4
+ on roles(:web) do
5
+ sudo "apt-get update -y"
6
+ sudo "apt-get install -y libmagickwand-dev"
7
+ end
8
+ end
9
+ after "deploy:install", "rmagick:install"
10
+ end
@@ -0,0 +1 @@
1
+ load File.expand_path('../recipes/rmagick.cap', __FILE__)
@@ -1,3 +1,3 @@
1
1
  module RobCapRecipes
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
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.7
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: 2013-12-31 00:00:00.000000000 Z
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.6
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