capones_recipes 0.4.0 → 0.4.1
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/VERSION +1 -1
- data/capones_recipes.gemspec +4 -2
- data/lib/cookbook/rails.rb +1 -0
- data/lib/recipes/kuhsaft.rb +1 -0
- data/lib/recipes/kuhsaft/sync.rb +15 -0
- metadata +5 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.1
|
data/capones_recipes.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{capones_recipes}
|
8
|
-
s.version = "0.4.
|
8
|
+
s.version = "0.4.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Roman Simecek"]
|
12
|
-
s.date = %q{2011-08-
|
12
|
+
s.date = %q{2011-08-12}
|
13
13
|
s.description = %q{just for fun}
|
14
14
|
s.email = %q{roman.simecek@cyt.ch}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -40,6 +40,8 @@ Gem::Specification.new do |s|
|
|
40
40
|
"lib/recipes/katalog.rb",
|
41
41
|
"lib/recipes/katalog/import.rb",
|
42
42
|
"lib/recipes/katalog/katalog.rb",
|
43
|
+
"lib/recipes/kuhsaft.rb",
|
44
|
+
"lib/recipes/kuhsaft/sync.rb",
|
43
45
|
"lib/recipes/new_relic.rb",
|
44
46
|
"lib/recipes/new_relic/new_relic.rb",
|
45
47
|
"lib/recipes/rails.rb",
|
data/lib/cookbook/rails.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
Dir.glob(File.join(File.dirname(__FILE__), '/kuhsaft/*.rb')).sort.each { |f| load f }
|
@@ -0,0 +1,15 @@
|
|
1
|
+
Capistrano::Configuration.instance.load do
|
2
|
+
namespace :kuhsaft do
|
3
|
+
namespace :sync do
|
4
|
+
desc "Syncs down the tables of kuhsaft"
|
5
|
+
task :down do
|
6
|
+
puts 'TODO: kuhsaft down'
|
7
|
+
end
|
8
|
+
|
9
|
+
desc "Syncs up the tables of kuhsaft"
|
10
|
+
task :up do
|
11
|
+
puts 'TODO: kuhsaft up'
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: capones_recipes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.4.
|
5
|
+
version: 0.4.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Roman Simecek
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-08-
|
13
|
+
date: 2011-08-12 00:00:00 +02:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -134,6 +134,8 @@ files:
|
|
134
134
|
- lib/recipes/katalog.rb
|
135
135
|
- lib/recipes/katalog/import.rb
|
136
136
|
- lib/recipes/katalog/katalog.rb
|
137
|
+
- lib/recipes/kuhsaft.rb
|
138
|
+
- lib/recipes/kuhsaft/sync.rb
|
137
139
|
- lib/recipes/new_relic.rb
|
138
140
|
- lib/recipes/new_relic/new_relic.rb
|
139
141
|
- lib/recipes/rails.rb
|
@@ -160,7 +162,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
162
|
requirements:
|
161
163
|
- - ">="
|
162
164
|
- !ruby/object:Gem::Version
|
163
|
-
hash:
|
165
|
+
hash: -3199396906071940908
|
164
166
|
segments:
|
165
167
|
- 0
|
166
168
|
version: "0"
|