impromptu 1.0.0

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.
Files changed (42) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/LICENSE +34 -0
  4. data/README.rdoc +76 -0
  5. data/Rakefile +53 -0
  6. data/VERSION +1 -0
  7. data/impromptu.gemspec +106 -0
  8. data/lib/impromptu/autoload.rb +33 -0
  9. data/lib/impromptu/component.rb +124 -0
  10. data/lib/impromptu/component_set.rb +10 -0
  11. data/lib/impromptu/file.rb +220 -0
  12. data/lib/impromptu/folder.rb +151 -0
  13. data/lib/impromptu/impromptu.rb +81 -0
  14. data/lib/impromptu/ordered_set.rb +49 -0
  15. data/lib/impromptu/resource.rb +195 -0
  16. data/lib/impromptu/symbol.rb +43 -0
  17. data/lib/impromptu.rb +12 -0
  18. data/test/framework/copies/extra_klass2.rb +7 -0
  19. data/test/framework/copies/new_klass.rb +10 -0
  20. data/test/framework/copies/new_unseen.rb +7 -0
  21. data/test/framework/copies/original_klass.rb +10 -0
  22. data/test/framework/ext/extensions/blog.rb +6 -0
  23. data/test/framework/ext/extensions.rb +4 -0
  24. data/test/framework/lib/group/klass2.rb +4 -0
  25. data/test/framework/lib/klass.rb +10 -0
  26. data/test/framework/other/also.rb +8 -0
  27. data/test/framework/other/ignore.rb +2 -0
  28. data/test/framework/other/load.rb +2 -0
  29. data/test/framework/other/two.rb +14 -0
  30. data/test/framework/private/klass.rb +10 -0
  31. data/test/framework/test.components +23 -0
  32. data/test/helper.rb +10 -0
  33. data/test/test_autoload.rb +32 -0
  34. data/test/test_component.rb +133 -0
  35. data/test/test_component_set.rb +20 -0
  36. data/test/test_folder.rb +4 -0
  37. data/test/test_impromptu.rb +43 -0
  38. data/test/test_integration.rb +312 -0
  39. data/test/test_ordered_set.rb +93 -0
  40. data/test/test_resource.rb +186 -0
  41. data/test/test_symbol.rb +99 -0
  42. metadata +139 -0
metadata ADDED
@@ -0,0 +1,139 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: impromptu
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ - 0
9
+ version: 1.0.0
10
+ platform: ruby
11
+ authors:
12
+ - Will Cannings
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-09-30 00:00:00 +10:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: shoulda
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 0
30
+ version: "0"
31
+ type: :development
32
+ version_requirements: *id001
33
+ description: Component and dependency manager for Ruby
34
+ email: me@willcannings.com
35
+ executables: []
36
+
37
+ extensions: []
38
+
39
+ extra_rdoc_files:
40
+ - LICENSE
41
+ - README.rdoc
42
+ files:
43
+ - .document
44
+ - .gitignore
45
+ - LICENSE
46
+ - README.rdoc
47
+ - Rakefile
48
+ - VERSION
49
+ - impromptu.gemspec
50
+ - lib/impromptu.rb
51
+ - lib/impromptu/autoload.rb
52
+ - lib/impromptu/component.rb
53
+ - lib/impromptu/component_set.rb
54
+ - lib/impromptu/file.rb
55
+ - lib/impromptu/folder.rb
56
+ - lib/impromptu/impromptu.rb
57
+ - lib/impromptu/ordered_set.rb
58
+ - lib/impromptu/resource.rb
59
+ - lib/impromptu/symbol.rb
60
+ - test/framework/copies/extra_klass2.rb
61
+ - test/framework/copies/new_klass.rb
62
+ - test/framework/copies/new_unseen.rb
63
+ - test/framework/copies/original_klass.rb
64
+ - test/framework/ext/extensions.rb
65
+ - test/framework/ext/extensions/blog.rb
66
+ - test/framework/lib/group/klass2.rb
67
+ - test/framework/lib/klass.rb
68
+ - test/framework/other/also.rb
69
+ - test/framework/other/ignore.rb
70
+ - test/framework/other/load.rb
71
+ - test/framework/other/two.rb
72
+ - test/framework/private/klass.rb
73
+ - test/framework/test.components
74
+ - test/helper.rb
75
+ - test/test_autoload.rb
76
+ - test/test_component.rb
77
+ - test/test_component_set.rb
78
+ - test/test_folder.rb
79
+ - test/test_impromptu.rb
80
+ - test/test_integration.rb
81
+ - test/test_ordered_set.rb
82
+ - test/test_resource.rb
83
+ - test/test_symbol.rb
84
+ has_rdoc: true
85
+ homepage: http://github.com/willcannings/impromptu
86
+ licenses: []
87
+
88
+ post_install_message:
89
+ rdoc_options:
90
+ - --charset=UTF-8
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ segments:
99
+ - 0
100
+ version: "0"
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ none: false
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ segments:
107
+ - 0
108
+ version: "0"
109
+ requirements: []
110
+
111
+ rubyforge_project:
112
+ rubygems_version: 1.3.7
113
+ signing_key:
114
+ specification_version: 3
115
+ summary: Component and dependency manager for Ruby
116
+ test_files:
117
+ - test/framework/copies/extra_klass2.rb
118
+ - test/framework/copies/new_klass.rb
119
+ - test/framework/copies/new_unseen.rb
120
+ - test/framework/copies/original_klass.rb
121
+ - test/framework/ext/extensions/blog.rb
122
+ - test/framework/ext/extensions.rb
123
+ - test/framework/lib/group/klass2.rb
124
+ - test/framework/lib/klass.rb
125
+ - test/framework/other/also.rb
126
+ - test/framework/other/ignore.rb
127
+ - test/framework/other/load.rb
128
+ - test/framework/other/two.rb
129
+ - test/framework/private/klass.rb
130
+ - test/helper.rb
131
+ - test/test_autoload.rb
132
+ - test/test_component.rb
133
+ - test/test_component_set.rb
134
+ - test/test_folder.rb
135
+ - test/test_impromptu.rb
136
+ - test/test_integration.rb
137
+ - test/test_ordered_set.rb
138
+ - test/test_resource.rb
139
+ - test/test_symbol.rb