angry_mob 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. data/LICENSE +21 -0
  2. data/README.md +123 -0
  3. data/bin/mob +139 -0
  4. data/lib/angry_mob.rb +28 -0
  5. data/lib/angry_mob/act.rb +111 -0
  6. data/lib/angry_mob/act/scheduler.rb +143 -0
  7. data/lib/angry_mob/action.rb +11 -0
  8. data/lib/angry_mob/builder.rb +115 -0
  9. data/lib/angry_mob/extend.rb +10 -0
  10. data/lib/angry_mob/extend/array.rb +30 -0
  11. data/lib/angry_mob/extend/blank.rb +108 -0
  12. data/lib/angry_mob/extend/blankslate.rb +109 -0
  13. data/lib/angry_mob/extend/dictionary.rb +140 -0
  14. data/lib/angry_mob/extend/hash.rb +67 -0
  15. data/lib/angry_mob/extend/object.rb +21 -0
  16. data/lib/angry_mob/extend/pathname.rb +23 -0
  17. data/lib/angry_mob/extend/string.rb +8 -0
  18. data/lib/angry_mob/log.rb +28 -0
  19. data/lib/angry_mob/mob.rb +77 -0
  20. data/lib/angry_mob/mob_loader.rb +115 -0
  21. data/lib/angry_mob/node.rb +44 -0
  22. data/lib/angry_mob/notifier.rb +76 -0
  23. data/lib/angry_mob/target.rb +257 -0
  24. data/lib/angry_mob/target/arguments.rb +71 -0
  25. data/lib/angry_mob/target/call.rb +57 -0
  26. data/lib/angry_mob/target/default_resource_locator.rb +11 -0
  27. data/lib/angry_mob/target/defaults.rb +23 -0
  28. data/lib/angry_mob/target/mother.rb +66 -0
  29. data/lib/angry_mob/target/notify.rb +57 -0
  30. data/lib/angry_mob/target/tracking.rb +96 -0
  31. data/lib/angry_mob/ui.rb +247 -0
  32. data/lib/angry_mob/util.rb +11 -0
  33. data/lib/angry_mob/vendored.rb +8 -0
  34. data/lib/angry_mob/version.rb +3 -0
  35. data/vendor/angry_hash/Rakefile +17 -0
  36. data/vendor/angry_hash/VERSION +1 -0
  37. data/vendor/angry_hash/angry_hash.gemspec +47 -0
  38. data/vendor/angry_hash/examples/accessors_eg.rb +46 -0
  39. data/vendor/angry_hash/examples/creation_eg.rb +43 -0
  40. data/vendor/angry_hash/examples/dsl.eg.rb +18 -0
  41. data/vendor/angry_hash/examples/dup_eg.rb +86 -0
  42. data/vendor/angry_hash/examples/eg_helper.rb +24 -0
  43. data/vendor/angry_hash/examples/merge_eg.rb +135 -0
  44. data/vendor/angry_hash/lib/angry_hash.rb +215 -0
  45. data/vendor/angry_hash/lib/angry_hash/dsl.rb +44 -0
  46. data/vendor/angry_hash/lib/angry_hash/extension_tracking.rb +12 -0
  47. data/vendor/angry_hash/lib/angry_hash/merge_string.rb +58 -0
  48. data/vendor/json/COPYING +58 -0
  49. data/vendor/json/GPL +340 -0
  50. data/vendor/json/README +360 -0
  51. data/vendor/json/lib/json/common.rb +371 -0
  52. data/vendor/json/lib/json/pure.rb +77 -0
  53. data/vendor/json/lib/json/pure/generator.rb +443 -0
  54. data/vendor/json/lib/json/pure/parser.rb +303 -0
  55. data/vendor/json/lib/json/version.rb +8 -0
  56. data/vendor/thor/CHANGELOG.rdoc +89 -0
  57. data/vendor/thor/LICENSE +20 -0
  58. data/vendor/thor/README.rdoc +297 -0
  59. data/vendor/thor/Thorfile +69 -0
  60. data/vendor/thor/bin/rake2thor +86 -0
  61. data/vendor/thor/bin/thor +6 -0
  62. data/vendor/thor/lib/thor.rb +244 -0
  63. data/vendor/thor/lib/thor/actions.rb +275 -0
  64. data/vendor/thor/lib/thor/actions/create_file.rb +103 -0
  65. data/vendor/thor/lib/thor/actions/directory.rb +91 -0
  66. data/vendor/thor/lib/thor/actions/empty_directory.rb +134 -0
  67. data/vendor/thor/lib/thor/actions/file_manipulation.rb +223 -0
  68. data/vendor/thor/lib/thor/actions/inject_into_file.rb +104 -0
  69. data/vendor/thor/lib/thor/base.rb +540 -0
  70. data/vendor/thor/lib/thor/core_ext/file_binary_read.rb +9 -0
  71. data/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  72. data/vendor/thor/lib/thor/core_ext/ordered_hash.rb +100 -0
  73. data/vendor/thor/lib/thor/error.rb +30 -0
  74. data/vendor/thor/lib/thor/group.rb +271 -0
  75. data/vendor/thor/lib/thor/invocation.rb +180 -0
  76. data/vendor/thor/lib/thor/parser.rb +4 -0
  77. data/vendor/thor/lib/thor/parser/argument.rb +67 -0
  78. data/vendor/thor/lib/thor/parser/arguments.rb +150 -0
  79. data/vendor/thor/lib/thor/parser/option.rb +128 -0
  80. data/vendor/thor/lib/thor/parser/options.rb +169 -0
  81. data/vendor/thor/lib/thor/rake_compat.rb +66 -0
  82. data/vendor/thor/lib/thor/runner.rb +314 -0
  83. data/vendor/thor/lib/thor/shell.rb +83 -0
  84. data/vendor/thor/lib/thor/shell/basic.rb +239 -0
  85. data/vendor/thor/lib/thor/shell/color.rb +108 -0
  86. data/vendor/thor/lib/thor/task.rb +102 -0
  87. data/vendor/thor/lib/thor/util.rb +224 -0
  88. data/vendor/thor/lib/thor/version.rb +3 -0
  89. data/vendor/thor/spec/actions/create_file_spec.rb +170 -0
  90. data/vendor/thor/spec/actions/directory_spec.rb +131 -0
  91. data/vendor/thor/spec/actions/empty_directory_spec.rb +91 -0
  92. data/vendor/thor/spec/actions/file_manipulation_spec.rb +271 -0
  93. data/vendor/thor/spec/actions/inject_into_file_spec.rb +135 -0
  94. data/vendor/thor/spec/actions_spec.rb +292 -0
  95. data/vendor/thor/spec/base_spec.rb +263 -0
  96. data/vendor/thor/spec/core_ext/hash_with_indifferent_access_spec.rb +43 -0
  97. data/vendor/thor/spec/core_ext/ordered_hash_spec.rb +115 -0
  98. data/vendor/thor/spec/fixtures/application.rb +2 -0
  99. data/vendor/thor/spec/fixtures/bundle/execute.rb +6 -0
  100. data/vendor/thor/spec/fixtures/bundle/main.thor +1 -0
  101. data/vendor/thor/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  102. data/vendor/thor/spec/fixtures/doc/README +3 -0
  103. data/vendor/thor/spec/fixtures/doc/config.rb +1 -0
  104. data/vendor/thor/spec/fixtures/group.thor +90 -0
  105. data/vendor/thor/spec/fixtures/invoke.thor +112 -0
  106. data/vendor/thor/spec/fixtures/script.thor +145 -0
  107. data/vendor/thor/spec/fixtures/task.thor +10 -0
  108. data/vendor/thor/spec/group_spec.rb +171 -0
  109. data/vendor/thor/spec/invocation_spec.rb +107 -0
  110. data/vendor/thor/spec/parser/argument_spec.rb +47 -0
  111. data/vendor/thor/spec/parser/arguments_spec.rb +64 -0
  112. data/vendor/thor/spec/parser/option_spec.rb +202 -0
  113. data/vendor/thor/spec/parser/options_spec.rb +292 -0
  114. data/vendor/thor/spec/rake_compat_spec.rb +68 -0
  115. data/vendor/thor/spec/runner_spec.rb +210 -0
  116. data/vendor/thor/spec/shell/basic_spec.rb +205 -0
  117. data/vendor/thor/spec/shell/color_spec.rb +41 -0
  118. data/vendor/thor/spec/shell_spec.rb +34 -0
  119. data/vendor/thor/spec/spec.opts +1 -0
  120. data/vendor/thor/spec/spec_helper.rb +54 -0
  121. data/vendor/thor/spec/task_spec.rb +69 -0
  122. data/vendor/thor/spec/thor_spec.rb +237 -0
  123. data/vendor/thor/spec/util_spec.rb +163 -0
  124. data/vendor/thor/thor.gemspec +120 -0
  125. metadata +199 -0
@@ -0,0 +1,163 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ module Thor::Util
4
+ def self.clear_user_home!
5
+ @@user_home = nil
6
+ end
7
+ end
8
+
9
+ describe Thor::Util do
10
+ describe "#find_by_namespace" do
11
+ it "returns 'default' if no namespace is given" do
12
+ Thor::Util.find_by_namespace('').must == Scripts::MyDefaults
13
+ end
14
+
15
+ it "adds 'default' if namespace starts with :" do
16
+ Thor::Util.find_by_namespace(':child').must == Scripts::ChildDefault
17
+ end
18
+
19
+ it "returns nil if the namespace can't be found" do
20
+ Thor::Util.find_by_namespace('thor:core_ext:ordered_hash').must be_nil
21
+ end
22
+
23
+ it "returns a class if it matches the namespace" do
24
+ Thor::Util.find_by_namespace('app:broken:counter').must == BrokenCounter
25
+ end
26
+
27
+ it "matches classes default namespace" do
28
+ Thor::Util.find_by_namespace('scripts:my_script').must == Scripts::MyScript
29
+ end
30
+ end
31
+
32
+ describe "#namespace_from_thor_class" do
33
+ it "replaces constant nesting with task namespacing" do
34
+ Thor::Util.namespace_from_thor_class("Foo::Bar::Baz").must == "foo:bar:baz"
35
+ end
36
+
37
+ it "snake-cases component strings" do
38
+ Thor::Util.namespace_from_thor_class("FooBar::BarBaz::BazBoom").must == "foo_bar:bar_baz:baz_boom"
39
+ end
40
+
41
+ it "accepts class and module objects" do
42
+ Thor::Util.namespace_from_thor_class(Thor::CoreExt::OrderedHash).must == "thor:core_ext:ordered_hash"
43
+ Thor::Util.namespace_from_thor_class(Thor::Util).must == "thor:util"
44
+ end
45
+
46
+ it "removes Thor::Sandbox namespace" do
47
+ Thor::Util.namespace_from_thor_class("Thor::Sandbox::Package").must == "package"
48
+ end
49
+ end
50
+
51
+ describe "#namespaces_in_content" do
52
+ it "returns an array of names of constants defined in the string" do
53
+ list = Thor::Util.namespaces_in_content("class Foo; class Bar < Thor; end; end; class Baz; class Bat; end; end")
54
+ list.must include("foo:bar")
55
+ list.must_not include("bar:bat")
56
+ end
57
+
58
+ it "doesn't put the newly-defined constants in the enclosing namespace" do
59
+ Thor::Util.namespaces_in_content("class Blat; end")
60
+ defined?(Blat).must_not be
61
+ defined?(Thor::Sandbox::Blat).must be
62
+ end
63
+ end
64
+
65
+ describe "#snake_case" do
66
+ it "preserves no-cap strings" do
67
+ Thor::Util.snake_case("foo").must == "foo"
68
+ Thor::Util.snake_case("foo_bar").must == "foo_bar"
69
+ end
70
+
71
+ it "downcases all-caps strings" do
72
+ Thor::Util.snake_case("FOO").must == "foo"
73
+ Thor::Util.snake_case("FOO_BAR").must == "foo_bar"
74
+ end
75
+
76
+ it "downcases initial-cap strings" do
77
+ Thor::Util.snake_case("Foo").must == "foo"
78
+ end
79
+
80
+ it "replaces camel-casing with underscores" do
81
+ Thor::Util.snake_case("FooBarBaz").must == "foo_bar_baz"
82
+ Thor::Util.snake_case("Foo_BarBaz").must == "foo_bar_baz"
83
+ end
84
+
85
+ it "places underscores between multiple capitals" do
86
+ Thor::Util.snake_case("ABClass").must == "a_b_class"
87
+ end
88
+ end
89
+
90
+ describe "#find_class_and_task_by_namespace" do
91
+ it "returns a Thor::Group class if full namespace matches" do
92
+ Thor::Util.find_class_and_task_by_namespace("my_counter").must == [MyCounter, nil]
93
+ end
94
+
95
+ it "returns a Thor class if full namespace matches" do
96
+ Thor::Util.find_class_and_task_by_namespace("thor").must == [Thor, nil]
97
+ end
98
+
99
+ it "returns a Thor class and the task name" do
100
+ Thor::Util.find_class_and_task_by_namespace("thor:help").must == [Thor, "help"]
101
+ end
102
+
103
+ it "falls back in the namespace:task look up even if a full namespace does not match" do
104
+ Thor.const_set(:Help, Module.new)
105
+ Thor::Util.find_class_and_task_by_namespace("thor:help").must == [Thor, "help"]
106
+ Thor.send :remove_const, :Help
107
+ end
108
+
109
+ it "falls back on the default namespace class if nothing else matches" do
110
+ Thor::Util.find_class_and_task_by_namespace("test").must == [Scripts::MyDefaults, "test"]
111
+ end
112
+ end
113
+
114
+ describe "#thor_classes_in" do
115
+ it "returns thor classes inside the given class" do
116
+ Thor::Util.thor_classes_in(MyScript).must == [MyScript::AnotherScript]
117
+ Thor::Util.thor_classes_in(MyScript::AnotherScript).must be_empty
118
+ end
119
+ end
120
+
121
+ describe "#user_home" do
122
+ before(:each) do
123
+ ENV.stub!(:[])
124
+ Thor::Util.clear_user_home!
125
+ end
126
+
127
+ it "returns the user path if none variable is set on the environment" do
128
+ Thor::Util.user_home.must == File.expand_path("~")
129
+ end
130
+
131
+ it "returns the *unix system path if file cannot be expanded and separator does not exist" do
132
+ File.should_receive(:expand_path).with("~").and_raise(RuntimeError)
133
+ previous_value = File::ALT_SEPARATOR
134
+ capture(:stderr){ File.const_set(:ALT_SEPARATOR, false) }
135
+ Thor::Util.user_home.must == "/"
136
+ capture(:stderr){ File.const_set(:ALT_SEPARATOR, previous_value) }
137
+ end
138
+
139
+ it "returns the windows system path if file cannot be expanded and a separator exists" do
140
+ File.should_receive(:expand_path).with("~").and_raise(RuntimeError)
141
+ previous_value = File::ALT_SEPARATOR
142
+ capture(:stderr){ File.const_set(:ALT_SEPARATOR, true) }
143
+ Thor::Util.user_home.must == "C:/"
144
+ capture(:stderr){ File.const_set(:ALT_SEPARATOR, previous_value) }
145
+ end
146
+
147
+ it "returns HOME/.thor if set" do
148
+ ENV.stub!(:[]).with("HOME").and_return("/home/user/")
149
+ Thor::Util.user_home.must == "/home/user/"
150
+ end
151
+
152
+ it "returns path with HOMEDRIVE and HOMEPATH if set" do
153
+ ENV.stub!(:[]).with("HOMEDRIVE").and_return("D:/")
154
+ ENV.stub!(:[]).with("HOMEPATH").and_return("Documents and Settings/James")
155
+ Thor::Util.user_home.must == "D:/Documents and Settings/James"
156
+ end
157
+
158
+ it "returns APPDATA/.thor if set" do
159
+ ENV.stub!(:[]).with("APPDATA").and_return("/home/user/")
160
+ Thor::Util.user_home.must == "/home/user/"
161
+ end
162
+ end
163
+ end
@@ -0,0 +1,120 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Thorfile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{thor}
8
+ s.version = "0.13.4"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Yehuda Katz", "Jos\303\251 Valim"]
12
+ s.date = %q{2010-02-26}
13
+ s.description = %q{A scripting framework that replaces rake, sake and rubigen}
14
+ s.email = %q{ruby-thor@googlegroups.com}
15
+ s.executables = ["thor", "rake2thor"]
16
+ s.extra_rdoc_files = [
17
+ "CHANGELOG.rdoc",
18
+ "LICENSE",
19
+ "README.rdoc",
20
+ "Thorfile"
21
+ ]
22
+ s.files = [
23
+ "CHANGELOG.rdoc",
24
+ "LICENSE",
25
+ "README.rdoc",
26
+ "Thorfile",
27
+ "bin/rake2thor",
28
+ "bin/thor",
29
+ "lib/thor.rb",
30
+ "lib/thor/actions.rb",
31
+ "lib/thor/actions/create_file.rb",
32
+ "lib/thor/actions/directory.rb",
33
+ "lib/thor/actions/empty_directory.rb",
34
+ "lib/thor/actions/file_manipulation.rb",
35
+ "lib/thor/actions/inject_into_file.rb",
36
+ "lib/thor/base.rb",
37
+ "lib/thor/core_ext/file_binary_read.rb",
38
+ "lib/thor/core_ext/hash_with_indifferent_access.rb",
39
+ "lib/thor/core_ext/ordered_hash.rb",
40
+ "lib/thor/error.rb",
41
+ "lib/thor/group.rb",
42
+ "lib/thor/invocation.rb",
43
+ "lib/thor/parser.rb",
44
+ "lib/thor/parser/argument.rb",
45
+ "lib/thor/parser/arguments.rb",
46
+ "lib/thor/parser/option.rb",
47
+ "lib/thor/parser/options.rb",
48
+ "lib/thor/rake_compat.rb",
49
+ "lib/thor/runner.rb",
50
+ "lib/thor/shell.rb",
51
+ "lib/thor/shell/basic.rb",
52
+ "lib/thor/shell/color.rb",
53
+ "lib/thor/task.rb",
54
+ "lib/thor/util.rb",
55
+ "lib/thor/version.rb"
56
+ ]
57
+ s.homepage = %q{http://yehudakatz.com}
58
+ s.rdoc_options = ["--charset=UTF-8"]
59
+ s.require_paths = ["lib"]
60
+ s.rubyforge_project = %q{textmate}
61
+ s.rubygems_version = %q{1.3.5}
62
+ s.summary = %q{A scripting framework that replaces rake, sake and rubigen}
63
+ s.test_files = [
64
+ "spec/actions/create_file_spec.rb",
65
+ "spec/actions/directory_spec.rb",
66
+ "spec/actions/empty_directory_spec.rb",
67
+ "spec/actions/file_manipulation_spec.rb",
68
+ "spec/actions/inject_into_file_spec.rb",
69
+ "spec/actions_spec.rb",
70
+ "spec/base_spec.rb",
71
+ "spec/core_ext/hash_with_indifferent_access_spec.rb",
72
+ "spec/core_ext/ordered_hash_spec.rb",
73
+ "spec/fixtures/application.rb",
74
+ "spec/fixtures/bundle/execute.rb",
75
+ "spec/fixtures/doc/config.rb",
76
+ "spec/group_spec.rb",
77
+ "spec/invocation_spec.rb",
78
+ "spec/parser/argument_spec.rb",
79
+ "spec/parser/arguments_spec.rb",
80
+ "spec/parser/option_spec.rb",
81
+ "spec/parser/options_spec.rb",
82
+ "spec/rake_compat_spec.rb",
83
+ "spec/runner_spec.rb",
84
+ "spec/shell/basic_spec.rb",
85
+ "spec/shell/color_spec.rb",
86
+ "spec/shell_spec.rb",
87
+ "spec/spec_helper.rb",
88
+ "spec/task_spec.rb",
89
+ "spec/thor_spec.rb",
90
+ "spec/util_spec.rb",
91
+ "spec/actions",
92
+ "spec/core_ext",
93
+ "spec/fixtures",
94
+ "spec/fixtures/bundle",
95
+ "spec/fixtures/bundle/main.thor",
96
+ "spec/fixtures/doc",
97
+ "spec/fixtures/doc/%file_name%.rb.tt",
98
+ "spec/fixtures/doc/components",
99
+ "spec/fixtures/doc/README",
100
+ "spec/fixtures/group.thor",
101
+ "spec/fixtures/invoke.thor",
102
+ "spec/fixtures/script.thor",
103
+ "spec/fixtures/task.thor",
104
+ "spec/parser",
105
+ "spec/sandbox",
106
+ "spec/shell",
107
+ "spec/spec.opts"
108
+ ]
109
+
110
+ if s.respond_to? :specification_version then
111
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
112
+ s.specification_version = 3
113
+
114
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
115
+ else
116
+ end
117
+ else
118
+ end
119
+ end
120
+
metadata ADDED
@@ -0,0 +1,199 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: angry_mob
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
10
+ platform: ruby
11
+ authors:
12
+ - Lachie Cox
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-08-07 00:00:00 +10:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rspec
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ version: "0"
30
+ type: :development
31
+ version_requirements: *id001
32
+ description: AngryMob is the automated system configuration component of YesMaster. It combines convenient configuration data (the node), idempotent code to ensure the configuration of the parts of a system (targets), and a method of controlling the flow of the setup (acts)
33
+ email:
34
+ - lachie.cox@plus2.com.au
35
+ executables:
36
+ - mob
37
+ extensions: []
38
+
39
+ extra_rdoc_files: []
40
+
41
+ files:
42
+ - bin/mob
43
+ - lib/angry_mob/act/scheduler.rb
44
+ - lib/angry_mob/act.rb
45
+ - lib/angry_mob/action.rb
46
+ - lib/angry_mob/builder.rb
47
+ - lib/angry_mob/extend/array.rb
48
+ - lib/angry_mob/extend/blank.rb
49
+ - lib/angry_mob/extend/blankslate.rb
50
+ - lib/angry_mob/extend/dictionary.rb
51
+ - lib/angry_mob/extend/hash.rb
52
+ - lib/angry_mob/extend/object.rb
53
+ - lib/angry_mob/extend/pathname.rb
54
+ - lib/angry_mob/extend/string.rb
55
+ - lib/angry_mob/extend.rb
56
+ - lib/angry_mob/log.rb
57
+ - lib/angry_mob/mob.rb
58
+ - lib/angry_mob/mob_loader.rb
59
+ - lib/angry_mob/node.rb
60
+ - lib/angry_mob/notifier.rb
61
+ - lib/angry_mob/target/arguments.rb
62
+ - lib/angry_mob/target/call.rb
63
+ - lib/angry_mob/target/default_resource_locator.rb
64
+ - lib/angry_mob/target/defaults.rb
65
+ - lib/angry_mob/target/mother.rb
66
+ - lib/angry_mob/target/notify.rb
67
+ - lib/angry_mob/target/tracking.rb
68
+ - lib/angry_mob/target.rb
69
+ - lib/angry_mob/ui.rb
70
+ - lib/angry_mob/util.rb
71
+ - lib/angry_mob/vendored.rb
72
+ - lib/angry_mob/version.rb
73
+ - lib/angry_mob.rb
74
+ - vendor/angry_hash/angry_hash.gemspec
75
+ - vendor/angry_hash/examples/accessors_eg.rb
76
+ - vendor/angry_hash/examples/creation_eg.rb
77
+ - vendor/angry_hash/examples/dsl.eg.rb
78
+ - vendor/angry_hash/examples/dup_eg.rb
79
+ - vendor/angry_hash/examples/eg_helper.rb
80
+ - vendor/angry_hash/examples/merge_eg.rb
81
+ - vendor/angry_hash/lib/angry_hash/dsl.rb
82
+ - vendor/angry_hash/lib/angry_hash/extension_tracking.rb
83
+ - vendor/angry_hash/lib/angry_hash/merge_string.rb
84
+ - vendor/angry_hash/lib/angry_hash.rb
85
+ - vendor/angry_hash/Rakefile
86
+ - vendor/angry_hash/VERSION
87
+ - vendor/json/COPYING
88
+ - vendor/json/GPL
89
+ - vendor/json/lib/json/common.rb
90
+ - vendor/json/lib/json/pure/generator.rb
91
+ - vendor/json/lib/json/pure/parser.rb
92
+ - vendor/json/lib/json/pure.rb
93
+ - vendor/json/lib/json/version.rb
94
+ - vendor/json/README
95
+ - vendor/thor/bin/rake2thor
96
+ - vendor/thor/bin/thor
97
+ - vendor/thor/CHANGELOG.rdoc
98
+ - vendor/thor/lib/thor/actions/create_file.rb
99
+ - vendor/thor/lib/thor/actions/directory.rb
100
+ - vendor/thor/lib/thor/actions/empty_directory.rb
101
+ - vendor/thor/lib/thor/actions/file_manipulation.rb
102
+ - vendor/thor/lib/thor/actions/inject_into_file.rb
103
+ - vendor/thor/lib/thor/actions.rb
104
+ - vendor/thor/lib/thor/base.rb
105
+ - vendor/thor/lib/thor/core_ext/file_binary_read.rb
106
+ - vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
107
+ - vendor/thor/lib/thor/core_ext/ordered_hash.rb
108
+ - vendor/thor/lib/thor/error.rb
109
+ - vendor/thor/lib/thor/group.rb
110
+ - vendor/thor/lib/thor/invocation.rb
111
+ - vendor/thor/lib/thor/parser/argument.rb
112
+ - vendor/thor/lib/thor/parser/arguments.rb
113
+ - vendor/thor/lib/thor/parser/option.rb
114
+ - vendor/thor/lib/thor/parser/options.rb
115
+ - vendor/thor/lib/thor/parser.rb
116
+ - vendor/thor/lib/thor/rake_compat.rb
117
+ - vendor/thor/lib/thor/runner.rb
118
+ - vendor/thor/lib/thor/shell/basic.rb
119
+ - vendor/thor/lib/thor/shell/color.rb
120
+ - vendor/thor/lib/thor/shell.rb
121
+ - vendor/thor/lib/thor/task.rb
122
+ - vendor/thor/lib/thor/util.rb
123
+ - vendor/thor/lib/thor/version.rb
124
+ - vendor/thor/lib/thor.rb
125
+ - vendor/thor/LICENSE
126
+ - vendor/thor/README.rdoc
127
+ - vendor/thor/spec/actions/create_file_spec.rb
128
+ - vendor/thor/spec/actions/directory_spec.rb
129
+ - vendor/thor/spec/actions/empty_directory_spec.rb
130
+ - vendor/thor/spec/actions/file_manipulation_spec.rb
131
+ - vendor/thor/spec/actions/inject_into_file_spec.rb
132
+ - vendor/thor/spec/actions_spec.rb
133
+ - vendor/thor/spec/base_spec.rb
134
+ - vendor/thor/spec/core_ext/hash_with_indifferent_access_spec.rb
135
+ - vendor/thor/spec/core_ext/ordered_hash_spec.rb
136
+ - vendor/thor/spec/fixtures/application.rb
137
+ - vendor/thor/spec/fixtures/bundle/execute.rb
138
+ - vendor/thor/spec/fixtures/bundle/main.thor
139
+ - vendor/thor/spec/fixtures/doc/%file_name%.rb.tt
140
+ - vendor/thor/spec/fixtures/doc/config.rb
141
+ - vendor/thor/spec/fixtures/doc/README
142
+ - vendor/thor/spec/fixtures/group.thor
143
+ - vendor/thor/spec/fixtures/invoke.thor
144
+ - vendor/thor/spec/fixtures/script.thor
145
+ - vendor/thor/spec/fixtures/task.thor
146
+ - vendor/thor/spec/group_spec.rb
147
+ - vendor/thor/spec/invocation_spec.rb
148
+ - vendor/thor/spec/parser/argument_spec.rb
149
+ - vendor/thor/spec/parser/arguments_spec.rb
150
+ - vendor/thor/spec/parser/option_spec.rb
151
+ - vendor/thor/spec/parser/options_spec.rb
152
+ - vendor/thor/spec/rake_compat_spec.rb
153
+ - vendor/thor/spec/runner_spec.rb
154
+ - vendor/thor/spec/shell/basic_spec.rb
155
+ - vendor/thor/spec/shell/color_spec.rb
156
+ - vendor/thor/spec/shell_spec.rb
157
+ - vendor/thor/spec/spec.opts
158
+ - vendor/thor/spec/spec_helper.rb
159
+ - vendor/thor/spec/task_spec.rb
160
+ - vendor/thor/spec/thor_spec.rb
161
+ - vendor/thor/spec/util_spec.rb
162
+ - vendor/thor/thor.gemspec
163
+ - vendor/thor/Thorfile
164
+ - LICENSE
165
+ - README.md
166
+ has_rdoc: true
167
+ homepage: http://github.com/plustwo/angry_mob
168
+ licenses: []
169
+
170
+ post_install_message:
171
+ rdoc_options: []
172
+
173
+ require_paths:
174
+ - lib
175
+ required_ruby_version: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ segments:
180
+ - 0
181
+ version: "0"
182
+ required_rubygems_version: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ segments:
187
+ - 1
188
+ - 3
189
+ - 6
190
+ version: 1.3.6
191
+ requirements: []
192
+
193
+ rubyforge_project: angry_mob
194
+ rubygems_version: 1.3.6
195
+ signing_key:
196
+ specification_version: 3
197
+ summary: Automated slice configuration framework
198
+ test_files: []
199
+