rmasalov-surpass 0.1.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.
File without changes
@@ -0,0 +1,39 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{surpass}
5
+ s.version = "0.0.8"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Ana Nelson"]
9
+ s.date = %q{2010-04-23}
10
+ s.default_executable = %q{surpass}
11
+ s.description = %q{Surpass is writing (and eventually reading) excel workbooks in pure Ruby. Surpass is based on xlwt (and pyExcelerator).
12
+
13
+ For comprehensive documentation, please refer to the PDF manual which is available from http://surpass.rubyforge.org or in the root directory of the source code repository.
14
+
15
+ If you like to learn from playing with working examples, then there are plenty in the examples/ and webby/examples directories of the source code.}
16
+ s.email = %q{ana@ananelson.com}
17
+ s.executables = ["surpass"]
18
+ s.extra_rdoc_files = ["History.txt", "LICENSE.txt", "README.txt", "bin/surpass", "lib/surpass/ExcelFormula.g", "lib/surpass/ExcelFormulaGrammar.g", "lib/surpass/ExcelFormulaGrammar.tokens", "lib/surpass/tokens.txt"]
19
+ s.files = ["History.txt", "LICENSE.txt", "README.txt", "Rakefile", "bin/surpass", "lib/surpass.rb", "lib/surpass/ExcelFormula.g", "lib/surpass/ExcelFormulaGrammar.g", "lib/surpass/ExcelFormulaGrammar.tokens", "lib/surpass/ExcelFormulaGrammarLexer.rb", "lib/surpass/ExcelFormulaGrammarParser.rb", "lib/surpass/biff_record.rb", "lib/surpass/bitmap.rb", "lib/surpass/cell.rb", "lib/surpass/chart.rb", "lib/surpass/column.rb", "lib/surpass/document.rb", "lib/surpass/excel_formula.rb", "lib/surpass/excel_magic.rb", "lib/surpass/formatting.rb", "lib/surpass/row.rb", "lib/surpass/style.rb", "lib/surpass/tokens.txt", "lib/surpass/utilities.rb", "lib/surpass/workbook.rb", "lib/surpass/worksheet.rb", "surpass.gemspec"]
20
+ s.homepage = %q{http://surpass.rubyforge.org}
21
+ s.rdoc_options = ["--main", "README.txt"]
22
+ s.require_paths = ["lib"]
23
+ s.rubyforge_project = %q{surpass}
24
+ s.rubygems_version = %q{1.3.6}
25
+ s.summary = %q{Surpass is writing (and eventually reading) excel workbooks in pure Ruby}
26
+
27
+ if s.respond_to? :specification_version then
28
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
29
+ s.specification_version = 3
30
+
31
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
32
+ s.add_development_dependency(%q<bones>, [">= 3.4.1"])
33
+ else
34
+ s.add_dependency(%q<bones>, [">= 3.4.1"])
35
+ end
36
+ else
37
+ s.add_dependency(%q<bones>, [">= 3.4.1"])
38
+ end
39
+ end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rmasalov-surpass
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Ana Nelson
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-09-05 00:00:00 +03:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: bones
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 25
30
+ segments:
31
+ - 3
32
+ - 7
33
+ - 1
34
+ version: 3.7.1
35
+ type: :development
36
+ version_requirements: *id001
37
+ description: |-
38
+ Surpass is writing (and eventually reading) excel workbooks in pure Ruby. Surpass is based on xlwt (and pyExcelerator).
39
+
40
+ For comprehensive documentation, please refer to the PDF manual which is available from http://surpass.rubyforge.org or in the root directory of the source code repository.
41
+
42
+ If you like to learn from playing with working examples, then there are plenty in the examples/ and webby/examples directories of the source code.
43
+ email: ana@ananelson.com
44
+ executables:
45
+ - surpass
46
+ extensions: []
47
+
48
+ extra_rdoc_files:
49
+ - History.txt
50
+ - LICENSE.txt
51
+ - README.txt
52
+ - bin/surpass
53
+ - lib/surpass/ExcelFormula.g
54
+ - lib/surpass/ExcelFormula.tokens
55
+ - lib/surpass/tokens.txt
56
+ files:
57
+ - History.txt
58
+ - LICENSE.txt
59
+ - README.txt
60
+ - Rakefile
61
+ - bin/surpass
62
+ - lib/surpass.rb
63
+ - lib/surpass/ExcelFormula.g
64
+ - lib/surpass/ExcelFormula.tokens
65
+ - lib/surpass/ExcelFormulaLexer.rb
66
+ - lib/surpass/ExcelFormulaParser.rb
67
+ - lib/surpass/biff_record.rb
68
+ - lib/surpass/bitmap.rb
69
+ - lib/surpass/chart.rb
70
+ - lib/surpass/column.rb
71
+ - lib/surpass/document.rb
72
+ - lib/surpass/excel_magic.rb
73
+ - lib/surpass/formatting.rb
74
+ - lib/surpass/formula.rb
75
+ - lib/surpass/row.rb
76
+ - lib/surpass/style.rb
77
+ - lib/surpass/surpass_cell.rb
78
+ - lib/surpass/tokens.txt
79
+ - lib/surpass/utilities.rb
80
+ - lib/surpass/workbook.rb
81
+ - lib/surpass/worksheet.rb
82
+ - rmasalov-surpass
83
+ - surpass.gemspec
84
+ has_rdoc: true
85
+ homepage: http://surpass.rubyforge.org
86
+ licenses: []
87
+
88
+ post_install_message:
89
+ rdoc_options:
90
+ - --main
91
+ - README.txt
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ hash: 3
100
+ segments:
101
+ - 0
102
+ version: "0"
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ none: false
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ hash: 3
109
+ segments:
110
+ - 0
111
+ version: "0"
112
+ requirements: []
113
+
114
+ rubyforge_project: rmasalov-surpass
115
+ rubygems_version: 1.3.7
116
+ signing_key:
117
+ specification_version: 3
118
+ summary: Surpass is writing (and eventually reading) excel workbooks in pure Ruby.
119
+ test_files: []
120
+