ruby-screen 0.9.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 (45) hide show
  1. data/History.txt +3 -0
  2. data/License.txt +20 -0
  3. data/Manifest.txt +44 -0
  4. data/README.textile +226 -0
  5. data/README.txt +1 -0
  6. data/Rakefile +4 -0
  7. data/bin/ruby-screen +5 -0
  8. data/config/hoe.rb +71 -0
  9. data/config/requirements.rb +17 -0
  10. data/lib/ruby_screen.rb +14 -0
  11. data/lib/ruby_screen/configuration/description.rb +60 -0
  12. data/lib/ruby_screen/configuration/generator.rb +54 -0
  13. data/lib/ruby_screen/configuration/parser.rb +35 -0
  14. data/lib/ruby_screen/configuration/parser/block_processor.rb +43 -0
  15. data/lib/ruby_screen/configuration/parser/iterator.rb +31 -0
  16. data/lib/ruby_screen/configuration/parser/nesting_hash.rb +37 -0
  17. data/lib/ruby_screen/executer.rb +26 -0
  18. data/lib/ruby_screen/preferences_loader.rb +26 -0
  19. data/lib/ruby_screen/version.rb +9 -0
  20. data/log/debug.log +0 -0
  21. data/script/destroy +14 -0
  22. data/script/generate +14 -0
  23. data/script/txt2html +74 -0
  24. data/setup.rb +1585 -0
  25. data/spec/configuration/description_spec.rb +93 -0
  26. data/spec/configuration/generator_spec.rb +49 -0
  27. data/spec/configuration/parser/block_processor_spec.rb +46 -0
  28. data/spec/configuration/parser/iterator_spec.rb +35 -0
  29. data/spec/configuration/parser/nesting_hash_spec.rb +59 -0
  30. data/spec/configuration/parser_spec.rb +73 -0
  31. data/spec/executer_spec.rb +63 -0
  32. data/spec/preferences_loader_spec.rb +46 -0
  33. data/spec/ruby_screen_spec.rb +33 -0
  34. data/spec/spec.opts +1 -0
  35. data/spec/spec_helper.rb +9 -0
  36. data/tasks/deployment.rake +34 -0
  37. data/tasks/environment.rake +7 -0
  38. data/tasks/rspec.rake +21 -0
  39. data/tasks/website.rake +17 -0
  40. data/website/index.html +289 -0
  41. data/website/index.txt +226 -0
  42. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  43. data/website/stylesheets/screen.css +138 -0
  44. data/website/template.rhtml +48 -0
  45. metadata +111 -0
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-screen
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.0
5
+ platform: ruby
6
+ authors:
7
+ - Don Petersen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-08-01 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hoe
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.7.0
24
+ version:
25
+ description: Ruby command line utility to manage GNU Screen configurations, and launch Screen using those configuration.
26
+ email:
27
+ - don@donpetersen.net
28
+ executables:
29
+ - ruby-screen
30
+ extensions: []
31
+
32
+ extra_rdoc_files:
33
+ - History.txt
34
+ - License.txt
35
+ - Manifest.txt
36
+ - README.txt
37
+ - website/index.txt
38
+ files:
39
+ - History.txt
40
+ - License.txt
41
+ - Manifest.txt
42
+ - README.textile
43
+ - README.txt
44
+ - Rakefile
45
+ - bin/ruby-screen
46
+ - config/hoe.rb
47
+ - config/requirements.rb
48
+ - lib/ruby_screen.rb
49
+ - lib/ruby_screen/version.rb
50
+ - lib/ruby_screen/preferences_loader.rb
51
+ - lib/ruby_screen/executer.rb
52
+ - lib/ruby_screen/configuration/description.rb
53
+ - lib/ruby_screen/configuration/generator.rb
54
+ - lib/ruby_screen/configuration/parser.rb
55
+ - lib/ruby_screen/configuration/parser/block_processor.rb
56
+ - lib/ruby_screen/configuration/parser/nesting_hash.rb
57
+ - lib/ruby_screen/configuration/parser/iterator.rb
58
+ - log/debug.log
59
+ - script/destroy
60
+ - script/generate
61
+ - script/txt2html
62
+ - setup.rb
63
+ - spec/ruby_screen_spec.rb
64
+ - spec/preferences_loader_spec.rb
65
+ - spec/executer_spec.rb
66
+ - spec/spec.opts
67
+ - spec/spec_helper.rb
68
+ - spec/configuration/description_spec.rb
69
+ - spec/configuration/parser_spec.rb
70
+ - spec/configuration/generator_spec.rb
71
+ - spec/configuration/parser/block_processor_spec.rb
72
+ - spec/configuration/parser/iterator_spec.rb
73
+ - spec/configuration/parser/nesting_hash_spec.rb
74
+ - tasks/deployment.rake
75
+ - tasks/environment.rake
76
+ - tasks/rspec.rake
77
+ - tasks/website.rake
78
+ - website/index.html
79
+ - website/index.txt
80
+ - website/javascripts/rounded_corners_lite.inc.js
81
+ - website/stylesheets/screen.css
82
+ - website/template.rhtml
83
+ has_rdoc: true
84
+ homepage: http://ruby-screen.rubyforge.org
85
+ post_install_message:
86
+ rdoc_options:
87
+ - --main
88
+ - README.txt
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: "0"
96
+ version:
97
+ required_rubygems_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: "0"
102
+ version:
103
+ requirements: []
104
+
105
+ rubyforge_project: ruby-screen
106
+ rubygems_version: 1.2.0
107
+ signing_key:
108
+ specification_version: 2
109
+ summary: Ruby command line utility to manage GNU Screen configurations, and launch Screen using those configuration.
110
+ test_files: []
111
+