recipiez 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.
- data/.gitignore +1 -0
- data/lib/recipiez/capistrano.rb +1 -0
- data/recipiez.gemspec +18 -0
- metadata +4 -1
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.gem
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Dir[File.dirname(__FILE__) + '/../../recipes/*.rb'].each { |plugin| load(plugin) }
|
data/recipiez.gemspec
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
lib = File.expand_path('../lib/', __FILE__)
|
|
3
|
+
$:.unshift lib unless $:.include?(lib)
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "recipiez"
|
|
7
|
+
s.version = "0.0.2"
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["Alastair Brunton"]
|
|
10
|
+
s.email = ["info@simplyexcited.co.uk"]
|
|
11
|
+
s.homepage = "http://github.com/pyrat/deployment_recipiez"
|
|
12
|
+
s.summary = "Collection of capistrano recipies which do good things."
|
|
13
|
+
s.description = "DB Syncing, Logrotate, Apache, Thin, Basecamp, Activecollab, Monit"
|
|
14
|
+
|
|
15
|
+
s.required_rubygems_version = ">= 1.3.1"
|
|
16
|
+
s.require_path = 'lib'
|
|
17
|
+
s.files = `git ls-files`.split("\n")
|
|
18
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: recipiez
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -18,12 +18,14 @@ executables: []
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
+
- .gitignore
|
|
21
22
|
- History.txt
|
|
22
23
|
- MIT-LICENSE
|
|
23
24
|
- README.textile
|
|
24
25
|
- lib/activecollab_notifier.rb
|
|
25
26
|
- lib/basecamp.rb
|
|
26
27
|
- lib/basecamp_notifier.rb
|
|
28
|
+
- lib/recipiez/capistrano.rb
|
|
27
29
|
- recipes/apache.rb
|
|
28
30
|
- recipes/chef.rb
|
|
29
31
|
- recipes/deployment_recipiez.rb
|
|
@@ -45,6 +47,7 @@ files:
|
|
|
45
47
|
- recipes/templates/thin_monit.erb
|
|
46
48
|
- recipes/thin.rb
|
|
47
49
|
- recipes/tolk.rb
|
|
50
|
+
- recipiez.gemspec
|
|
48
51
|
homepage: http://github.com/pyrat/deployment_recipiez
|
|
49
52
|
licenses: []
|
|
50
53
|
post_install_message:
|