xmlss 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. data/.gitignore +6 -0
  2. data/Gemfile +4 -0
  3. data/Gemfile.lock +28 -0
  4. data/README.rdoc +154 -0
  5. data/Rakefile +7 -0
  6. data/examples/example_workbook.rb +19 -0
  7. data/examples/layout.rb +81 -0
  8. data/examples/simple.rb +30 -0
  9. data/examples/styles.rb +85 -0
  10. data/examples/text.rb +36 -0
  11. data/lib/xmlss/cell.rb +38 -0
  12. data/lib/xmlss/column.rb +28 -0
  13. data/lib/xmlss/data.rb +67 -0
  14. data/lib/xmlss/enum.rb +56 -0
  15. data/lib/xmlss/item_set.rb +17 -0
  16. data/lib/xmlss/row.rb +34 -0
  17. data/lib/xmlss/style/alignment.rb +47 -0
  18. data/lib/xmlss/style/base.rb +63 -0
  19. data/lib/xmlss/style/border.rb +43 -0
  20. data/lib/xmlss/style/font.rb +41 -0
  21. data/lib/xmlss/style/interior.rb +41 -0
  22. data/lib/xmlss/style/number_format.rb +20 -0
  23. data/lib/xmlss/style/protection.rb +18 -0
  24. data/lib/xmlss/table.rb +22 -0
  25. data/lib/xmlss/version.rb +3 -0
  26. data/lib/xmlss/workbook.rb +33 -0
  27. data/lib/xmlss/worksheet.rb +37 -0
  28. data/lib/xmlss/xml.rb +55 -0
  29. data/lib/xmlss.rb +31 -0
  30. data/test/cell_test.rb +86 -0
  31. data/test/column_test.rb +46 -0
  32. data/test/data_test.rb +75 -0
  33. data/test/enum_test.rb +63 -0
  34. data/test/env.rb +10 -0
  35. data/test/helper.rb +49 -0
  36. data/test/item_set_test.rb +26 -0
  37. data/test/row_test.rb +67 -0
  38. data/test/style/alignment_test.rb +107 -0
  39. data/test/style/base_test.rb +126 -0
  40. data/test/style/border_test.rb +114 -0
  41. data/test/style/font_test.rb +100 -0
  42. data/test/style/interior_test.rb +87 -0
  43. data/test/style/number_format_test.rb +50 -0
  44. data/test/style/protection_test.rb +45 -0
  45. data/test/table_test.rb +53 -0
  46. data/test/thing.rb +5 -0
  47. data/test/workbook_test.rb +59 -0
  48. data/test/worksheet_test.rb +62 -0
  49. data/test/xml_test.rb +61 -0
  50. data/test/xmlss_test.rb +29 -0
  51. data/xmlss.gemspec +23 -0
  52. metadata +184 -0
metadata ADDED
@@ -0,0 +1,184 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xmlss
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Kelly Redding
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-03-14 00:00:00 -05:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: bundler
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 15
30
+ segments:
31
+ - 1
32
+ - 0
33
+ version: "1.0"
34
+ type: :development
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: test-belt
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - "="
43
+ - !ruby/object:Gem::Version
44
+ hash: 21
45
+ segments:
46
+ - 0
47
+ - 2
48
+ - 1
49
+ version: 0.2.1
50
+ type: :development
51
+ version_requirements: *id002
52
+ - !ruby/object:Gem::Dependency
53
+ name: nokogiri
54
+ prerelease: false
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ~>
59
+ - !ruby/object:Gem::Version
60
+ hash: 7
61
+ segments:
62
+ - 1
63
+ - 4
64
+ - 0
65
+ version: 1.4.0
66
+ type: :runtime
67
+ version_requirements: *id003
68
+ description: This gem provides an api for constructing spreadsheet data and then uses that data to generate xml that can be interpreted by MS Excel. The xml conforms to the XML Spreadsheet spec (http://msdn.microsoft.com/en-us/library/aa140066(office.10).aspx).
69
+ email:
70
+ - kelly@kelredd.com
71
+ executables: []
72
+
73
+ extensions: []
74
+
75
+ extra_rdoc_files: []
76
+
77
+ files:
78
+ - .gitignore
79
+ - Gemfile
80
+ - Gemfile.lock
81
+ - README.rdoc
82
+ - Rakefile
83
+ - examples/example_workbook.rb
84
+ - examples/layout.rb
85
+ - examples/simple.rb
86
+ - examples/styles.rb
87
+ - examples/text.rb
88
+ - lib/xmlss.rb
89
+ - lib/xmlss/cell.rb
90
+ - lib/xmlss/column.rb
91
+ - lib/xmlss/data.rb
92
+ - lib/xmlss/enum.rb
93
+ - lib/xmlss/item_set.rb
94
+ - lib/xmlss/row.rb
95
+ - lib/xmlss/style/alignment.rb
96
+ - lib/xmlss/style/base.rb
97
+ - lib/xmlss/style/border.rb
98
+ - lib/xmlss/style/font.rb
99
+ - lib/xmlss/style/interior.rb
100
+ - lib/xmlss/style/number_format.rb
101
+ - lib/xmlss/style/protection.rb
102
+ - lib/xmlss/table.rb
103
+ - lib/xmlss/version.rb
104
+ - lib/xmlss/workbook.rb
105
+ - lib/xmlss/worksheet.rb
106
+ - lib/xmlss/xml.rb
107
+ - test/cell_test.rb
108
+ - test/column_test.rb
109
+ - test/data_test.rb
110
+ - test/enum_test.rb
111
+ - test/env.rb
112
+ - test/helper.rb
113
+ - test/item_set_test.rb
114
+ - test/row_test.rb
115
+ - test/style/alignment_test.rb
116
+ - test/style/base_test.rb
117
+ - test/style/border_test.rb
118
+ - test/style/font_test.rb
119
+ - test/style/interior_test.rb
120
+ - test/style/number_format_test.rb
121
+ - test/style/protection_test.rb
122
+ - test/table_test.rb
123
+ - test/thing.rb
124
+ - test/workbook_test.rb
125
+ - test/worksheet_test.rb
126
+ - test/xml_test.rb
127
+ - test/xmlss_test.rb
128
+ - xmlss.gemspec
129
+ has_rdoc: true
130
+ homepage: http://github.com/kelredd/xmlss
131
+ licenses: []
132
+
133
+ post_install_message:
134
+ rdoc_options: []
135
+
136
+ require_paths:
137
+ - lib
138
+ required_ruby_version: !ruby/object:Gem::Requirement
139
+ none: false
140
+ requirements:
141
+ - - ">="
142
+ - !ruby/object:Gem::Version
143
+ hash: 3
144
+ segments:
145
+ - 0
146
+ version: "0"
147
+ required_rubygems_version: !ruby/object:Gem::Requirement
148
+ none: false
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ hash: 3
153
+ segments:
154
+ - 0
155
+ version: "0"
156
+ requirements: []
157
+
158
+ rubyforge_project:
159
+ rubygems_version: 1.3.7
160
+ signing_key:
161
+ specification_version: 3
162
+ summary: Generate spreadsheet docs for MS Excel using XML Spreedsheet
163
+ test_files:
164
+ - test/cell_test.rb
165
+ - test/column_test.rb
166
+ - test/data_test.rb
167
+ - test/enum_test.rb
168
+ - test/env.rb
169
+ - test/helper.rb
170
+ - test/item_set_test.rb
171
+ - test/row_test.rb
172
+ - test/style/alignment_test.rb
173
+ - test/style/base_test.rb
174
+ - test/style/border_test.rb
175
+ - test/style/font_test.rb
176
+ - test/style/interior_test.rb
177
+ - test/style/number_format_test.rb
178
+ - test/style/protection_test.rb
179
+ - test/table_test.rb
180
+ - test/thing.rb
181
+ - test/workbook_test.rb
182
+ - test/worksheet_test.rb
183
+ - test/xml_test.rb
184
+ - test/xmlss_test.rb