tvd-microwave 0.0.11 → 0.0.12
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/NOTICE +2 -2
- data/README.mkd +3 -10
- data/VERSION +1 -1
- data/cookbooks/.gitignore +0 -0
- data/lib/development.rb +25 -0
- metadata +11 -8
- data/cookbooks/microwave/recipes/default.rb +0 -12
data/NOTICE
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
PROGRAM NOTICE
|
|
2
2
|
==============
|
|
3
3
|
|
|
4
|
-
Developed
|
|
4
|
+
Developed at WHO (URL).
|
|
5
5
|
|
|
6
6
|
Contributors and Copyright holders:
|
|
7
7
|
|
|
8
|
-
* Copyright
|
|
8
|
+
* Copyright YYYY, NAME <EMAIL>
|
|
9
9
|
|
|
10
10
|
PROGRAM incorporates code modified from tvdinner (https://github.com/HeSYINUvSBZfxqA/tvdinner), Copyright (c) 2011 Tom Bombadil
|
|
11
11
|
|
data/README.mkd
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
LICENSE
|
|
2
2
|
=======
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
working area
|
|
4
|
+
XXX - YYY
|
|
6
5
|
|
|
7
|
-
Author:
|
|
8
|
-
Copyright: Copyright (c)
|
|
6
|
+
Author: NAME (<EMAIL>)
|
|
7
|
+
Copyright: Copyright (c) YYYY-YYYY WHO
|
|
9
8
|
License: Apache License, Version 2.0
|
|
10
9
|
|
|
11
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -19,9 +18,3 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
19
18
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
20
19
|
See the License for the specific language governing permissions and
|
|
21
20
|
limitations under the License.
|
|
22
|
-
|
|
23
|
-
TESTS
|
|
24
|
-
=====
|
|
25
|
-
|
|
26
|
-
oijangajji/bin/features oijangajji/oijangajji.feature
|
|
27
|
-
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.12
|
|
File without changes
|
data/lib/development.rb
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
module Bundler
|
|
2
|
+
class Dsl
|
|
3
|
+
unless $gex
|
|
4
|
+
alias :gex :gem
|
|
5
|
+
$gex = true
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def gem(nm_gem, opt_gem = {})
|
|
9
|
+
shome = File.expand_path('../..', __FILE__)
|
|
10
|
+
gem_info = File.join(shome, ".local", nm_gem)
|
|
11
|
+
if File.exists? gem_info
|
|
12
|
+
source "http://localhost:9292"
|
|
13
|
+
local_opt = { :path => File.read(gem_info).strip }
|
|
14
|
+
|
|
15
|
+
unless local_opt[:path].empty?
|
|
16
|
+
gex nm_gem, local_opt
|
|
17
|
+
else
|
|
18
|
+
gex nm_gem, opt_gem.clone
|
|
19
|
+
end
|
|
20
|
+
else
|
|
21
|
+
gex nm_gem, opt_gem.clone
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tvd-microwave
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 7
|
|
5
|
+
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 12
|
|
10
|
+
version: 0.0.12
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Tom Bombadil
|
|
@@ -15,7 +15,8 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-
|
|
18
|
+
date: 2012-12-23 00:00:00 -08:00
|
|
19
|
+
default_executable:
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
21
22
|
name: microwave
|
|
@@ -40,7 +41,8 @@ extensions: []
|
|
|
40
41
|
extra_rdoc_files: []
|
|
41
42
|
|
|
42
43
|
files:
|
|
43
|
-
- cookbooks
|
|
44
|
+
- cookbooks/.gitignore
|
|
45
|
+
- lib/development.rb
|
|
44
46
|
- lib/tvd-microwave.rb
|
|
45
47
|
- lib/tvd-microwave/version.rb
|
|
46
48
|
- features/.gitignore
|
|
@@ -50,7 +52,8 @@ files:
|
|
|
50
52
|
- NOTICE
|
|
51
53
|
- VERSION
|
|
52
54
|
- README.mkd
|
|
53
|
-
|
|
55
|
+
has_rdoc: true
|
|
56
|
+
homepage: https://github.com/destructuring/tvd-microwave
|
|
54
57
|
licenses:
|
|
55
58
|
- Apache 2.0
|
|
56
59
|
post_install_message:
|
|
@@ -79,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
79
82
|
requirements: []
|
|
80
83
|
|
|
81
84
|
rubyforge_project:
|
|
82
|
-
rubygems_version: 1.
|
|
85
|
+
rubygems_version: 1.3.7
|
|
83
86
|
signing_key:
|
|
84
87
|
specification_version: 3
|
|
85
88
|
summary: "tvdinner: tvd-microwave"
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
directory "#{ENV['HOME']}/.bundle"
|
|
2
|
-
|
|
3
|
-
execute "microwave-backup-git" do
|
|
4
|
-
cwd "#{ENV['HOME']}/.microwave/backup"
|
|
5
|
-
command "#{ENV['HOME']}/.bash/bin/new-git-repo"
|
|
6
|
-
creates "#{ENV['HOME']}/.microwave/backup/.git"
|
|
7
|
-
end
|
|
8
|
-
|
|
9
|
-
link "#{ENV['HOME']}/.microwave/chef" do
|
|
10
|
-
to "#{ENV['HOME']}/work/microwave/chef"
|
|
11
|
-
end
|
|
12
|
-
|