shoes-manual 4.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 (68) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +69 -0
  6. data/Rakefile +2 -0
  7. data/lib/shoes/manual.rb +45 -0
  8. data/lib/shoes/manual/app.rb +512 -0
  9. data/lib/shoes/manual/version.rb +5 -0
  10. data/shoes-manual.gemspec +27 -0
  11. data/static/PKGBUILD +47 -0
  12. data/static/Shoes.icns +0 -0
  13. data/static/avatar.png +0 -0
  14. data/static/code_highlighter.js +188 -0
  15. data/static/code_highlighter_ruby.js +26 -0
  16. data/static/downloading.png +0 -0
  17. data/static/icon-debug.png +0 -0
  18. data/static/icon-error.png +0 -0
  19. data/static/icon-info.png +0 -0
  20. data/static/icon-warn.png +0 -0
  21. data/static/listbox_button1.png +0 -0
  22. data/static/listbox_button2.png +0 -0
  23. data/static/man-app.png +0 -0
  24. data/static/man-builds.png +0 -0
  25. data/static/man-builds1.png +0 -0
  26. data/static/man-editor-notepad.png +0 -0
  27. data/static/man-editor-osx.png +0 -0
  28. data/static/man-ele-background.png +0 -0
  29. data/static/man-ele-border.png +0 -0
  30. data/static/man-ele-button.png +0 -0
  31. data/static/man-ele-check.png +0 -0
  32. data/static/man-ele-editbox.png +0 -0
  33. data/static/man-ele-editline.png +0 -0
  34. data/static/man-ele-image.png +0 -0
  35. data/static/man-ele-listbox.png +0 -0
  36. data/static/man-ele-progress.png +0 -0
  37. data/static/man-ele-radio.png +0 -0
  38. data/static/man-ele-shape.png +0 -0
  39. data/static/man-ele-textblock.png +0 -0
  40. data/static/man-ele-video.png +0 -0
  41. data/static/man-intro-dmg.png +0 -0
  42. data/static/man-intro-exe.png +0 -0
  43. data/static/man-look-tiger.png +0 -0
  44. data/static/man-look-ubuntu.png +0 -0
  45. data/static/man-look-vista.png +0 -0
  46. data/static/man-run-osx.png +0 -0
  47. data/static/man-run-vista.png +0 -0
  48. data/static/man-run-xp.png +0 -0
  49. data/static/man-shot1.png +0 -0
  50. data/static/manual-en.txt +3531 -0
  51. data/static/manual-ja.txt +2829 -0
  52. data/static/manual.css +184 -0
  53. data/static/menu-corner1.png +0 -0
  54. data/static/menu-corner2.png +0 -0
  55. data/static/menu-gray.png +0 -0
  56. data/static/menu-left.png +0 -0
  57. data/static/menu-right.png +0 -0
  58. data/static/menu-top.png +0 -0
  59. data/static/shoes-dmg.jpg +0 -0
  60. data/static/shoes-icon-blue.png +0 -0
  61. data/static/shoes-icon-brown.png +0 -0
  62. data/static/shoes-icon.png +0 -0
  63. data/static/shoes-manual-apps.gif +0 -0
  64. data/static/shoes-manual-apps.png +0 -0
  65. data/static/shoes_main_window.png +0 -0
  66. data/static/stripe.png +0 -0
  67. data/static/tutor-back.png +0 -0
  68. metadata +193 -0
@@ -0,0 +1,184 @@
1
+ body {
2
+ font-family: verdana, arial, sans-serif;
3
+ background: #DDD;
4
+ margin: 0; padding: 0;
5
+ }
6
+ a {
7
+ color: #378;
8
+ text-decoration: none;
9
+ }
10
+ a.hi {
11
+ color: #C30;
12
+ font-weight: bold;
13
+ }
14
+ a:hover {
15
+ text-decoration: underline;
16
+ }
17
+ #main {
18
+ width: 720px;
19
+ margin: 40px auto;
20
+ }
21
+ .sidebar {
22
+ position: fixed;
23
+ width: 120px;
24
+ }
25
+ #manual {
26
+ float: right;
27
+ width: 540px;
28
+ padding: 20px;
29
+ border: solid 1px #BBB;
30
+ background: #eee;
31
+ margin-bottom: 80px;
32
+ }
33
+ #manual2 {
34
+ float: right;
35
+ padding: 20px;
36
+ border: solid 1px #BBB;
37
+ background: #eee;
38
+ margin-bottom: 80px;
39
+ }
40
+ #manual li {
41
+ margin-bottom: 8px;
42
+ }
43
+ h1 {
44
+ font-weight: normal;
45
+ font-size: 42px;
46
+ margin-top: 0;
47
+ }
48
+ h2 {
49
+ font-weight: normal;
50
+ font-size: 12px;
51
+ color: #777;
52
+ margin: 0;
53
+ }
54
+ h4 {
55
+ font-weight: normal;
56
+ font-size: 32px;
57
+ margin-bottom: 0;
58
+ }
59
+ #manual img {
60
+ display: block;
61
+ margin: 0 auto;
62
+ padding: 10px;
63
+ }
64
+ div.divmethod {
65
+ background: #333;
66
+ padding: 4px;
67
+ color: #CCC;
68
+ }
69
+ div.divmethod a {
70
+ color: white;
71
+ text-decoration: none;
72
+ font-weight: bold;
73
+ }
74
+ .intro {
75
+ font-size: 140%;
76
+ border-bottom: solid 1px #BBB;
77
+ }
78
+ .sidebar ul {
79
+ list-style: none;
80
+ text-align: center;
81
+ margin: 0; padding: 10px;
82
+ font-size: 18px;
83
+ }
84
+ .sidebar ul.sub {
85
+ margin: 6px 0; padding: 0;
86
+ border-left: solid 1px #CCC;
87
+ border-right: solid 1px #CCC;
88
+ }
89
+ .sidebar ul.sub li {
90
+ margin: 0; padding: 0;
91
+ font-size: 14px;
92
+ }
93
+ .sidebar ul.sub a {
94
+ font-weight: normal;
95
+ }
96
+ .sidebar a {
97
+ color: #666;
98
+ font-weight: bold;
99
+ text-decoration: none;
100
+ }
101
+ .sidebar .prime {
102
+ display: block;
103
+ color: #BBB;
104
+ font-size: 38px;
105
+ margin-bottom: 20px;
106
+ }
107
+ .sidebar a:hover {
108
+ color: black;
109
+ }
110
+ div.color {
111
+ width: 31%;
112
+ float: left;
113
+ text-align: center;
114
+ padding: 6px;
115
+ font-size: 80%;
116
+ }
117
+ div.color h3, div.color p {
118
+ margin: 4px;
119
+ }
120
+ div.sample {
121
+ width: 13%;
122
+ float: left;
123
+ text-align: center;
124
+ padding: 6px;
125
+ font-size: 50%;
126
+ }
127
+ div.sample h3, div.sample p {
128
+ margin: 0px;
129
+ }
130
+ p.next {
131
+ clear: both;
132
+ border-top: solid 1px #BBB;
133
+ text-align: right;
134
+ font-size: 120%;
135
+ padding: 8px;
136
+ }
137
+
138
+ /* code highlighting */
139
+ pre {
140
+ background: white;
141
+ padding: 8px 0;
142
+ border: solid 1px #ddd;
143
+ }
144
+ pre .comment, .ruby .comment {
145
+ color: #696;
146
+ } pre .string, .ruby .string {
147
+ color: teal;
148
+ }
149
+ pre .constant, .ruby .constant {
150
+ font-weight: bold;
151
+ }
152
+ pre .symbol, .ruby .symbol {
153
+ color: green;
154
+ }
155
+ pre .keywords, .ruby .keywords {
156
+ color: #662;
157
+ }
158
+ pre .global, pre .ivar, .ruby .ivar {
159
+ color: #F60;
160
+ }
161
+ pre .brackets, .ruby .brackets {
162
+ color: #993;
163
+ }
164
+
165
+ /* index pages */
166
+ #index .hibox {
167
+ background: white;
168
+ border: solid 1px #ddd;
169
+ }
170
+ #index .hibox p {
171
+ font-size: 14px;
172
+ margin: 8px;
173
+ }
174
+ #index h1 {
175
+ margin: 0;
176
+ }
177
+ #index ul {
178
+ list-style: none;
179
+ font-size: 13px;
180
+ }
181
+ #index ul a.hi,
182
+ #index ul a.lo {
183
+ font-size: 18px;
184
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,193 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shoes-manual
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Team Shoes
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ~>
17
+ - !ruby/object:Gem::Version
18
+ version: '1.0'
19
+ - - '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 1.0.0
22
+ name: shoes-highlighter
23
+ prerelease: false
24
+ type: :runtime
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - '>='
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.0
33
+ - !ruby/object:Gem::Dependency
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: 1.6.4.1
39
+ - - '>='
40
+ - !ruby/object:Gem::Version
41
+ version: 1.6.4.1
42
+ name: nokogiri
43
+ prerelease: false
44
+ type: :runtime
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ~>
48
+ - !ruby/object:Gem::Version
49
+ version: 1.6.4.1
50
+ - - '>='
51
+ - !ruby/object:Gem::Version
52
+ version: 1.6.4.1
53
+ - !ruby/object:Gem::Dependency
54
+ requirement: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ~>
57
+ - !ruby/object:Gem::Version
58
+ version: '1.7'
59
+ name: bundler
60
+ prerelease: false
61
+ type: :development
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ~>
65
+ - !ruby/object:Gem::Version
66
+ version: '1.7'
67
+ - !ruby/object:Gem::Dependency
68
+ requirement: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ~>
71
+ - !ruby/object:Gem::Version
72
+ version: '10.0'
73
+ name: rake
74
+ prerelease: false
75
+ type: :development
76
+ version_requirements: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ~>
79
+ - !ruby/object:Gem::Version
80
+ version: '10.0'
81
+ - !ruby/object:Gem::Dependency
82
+ requirement: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ~>
85
+ - !ruby/object:Gem::Version
86
+ version: 0.10.0
87
+ name: pry
88
+ prerelease: false
89
+ type: :development
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ~>
93
+ - !ruby/object:Gem::Version
94
+ version: 0.10.0
95
+ description: Content and loading classes for the Shoes manual
96
+ email:
97
+ - shoes@librelist.com
98
+ executables: []
99
+ extensions: []
100
+ extra_rdoc_files: []
101
+ files:
102
+ - .gitignore
103
+ - Gemfile
104
+ - LICENSE.txt
105
+ - README.md
106
+ - Rakefile
107
+ - lib/shoes/manual.rb
108
+ - lib/shoes/manual/app.rb
109
+ - lib/shoes/manual/version.rb
110
+ - shoes-manual.gemspec
111
+ - static/PKGBUILD
112
+ - static/Shoes.icns
113
+ - static/avatar.png
114
+ - static/code_highlighter.js
115
+ - static/code_highlighter_ruby.js
116
+ - static/downloading.png
117
+ - static/icon-debug.png
118
+ - static/icon-error.png
119
+ - static/icon-info.png
120
+ - static/icon-warn.png
121
+ - static/listbox_button1.png
122
+ - static/listbox_button2.png
123
+ - static/man-app.png
124
+ - static/man-builds.png
125
+ - static/man-builds1.png
126
+ - static/man-editor-notepad.png
127
+ - static/man-editor-osx.png
128
+ - static/man-ele-background.png
129
+ - static/man-ele-border.png
130
+ - static/man-ele-button.png
131
+ - static/man-ele-check.png
132
+ - static/man-ele-editbox.png
133
+ - static/man-ele-editline.png
134
+ - static/man-ele-image.png
135
+ - static/man-ele-listbox.png
136
+ - static/man-ele-progress.png
137
+ - static/man-ele-radio.png
138
+ - static/man-ele-shape.png
139
+ - static/man-ele-textblock.png
140
+ - static/man-ele-video.png
141
+ - static/man-intro-dmg.png
142
+ - static/man-intro-exe.png
143
+ - static/man-look-tiger.png
144
+ - static/man-look-ubuntu.png
145
+ - static/man-look-vista.png
146
+ - static/man-run-osx.png
147
+ - static/man-run-vista.png
148
+ - static/man-run-xp.png
149
+ - static/man-shot1.png
150
+ - static/manual-en.txt
151
+ - static/manual-ja.txt
152
+ - static/manual.css
153
+ - static/menu-corner1.png
154
+ - static/menu-corner2.png
155
+ - static/menu-gray.png
156
+ - static/menu-left.png
157
+ - static/menu-right.png
158
+ - static/menu-top.png
159
+ - static/shoes-dmg.jpg
160
+ - static/shoes-icon-blue.png
161
+ - static/shoes-icon-brown.png
162
+ - static/shoes-icon.png
163
+ - static/shoes-manual-apps.gif
164
+ - static/shoes-manual-apps.png
165
+ - static/shoes_main_window.png
166
+ - static/stripe.png
167
+ - static/tutor-back.png
168
+ homepage: https://github.com/shoes/shoes-manual
169
+ licenses:
170
+ - MIT
171
+ metadata: {}
172
+ post_install_message:
173
+ rdoc_options: []
174
+ require_paths:
175
+ - lib
176
+ required_ruby_version: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - '>='
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ required_rubygems_version: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - '>='
184
+ - !ruby/object:Gem::Version
185
+ version: '0'
186
+ requirements: []
187
+ rubyforge_project:
188
+ rubygems_version: 2.4.2
189
+ signing_key:
190
+ specification_version: 4
191
+ summary: Content for the Shoes manual
192
+ test_files: []
193
+ has_rdoc: