spreadsheet 0.9.9 → 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.
- checksums.yaml +8 -8
- data/History.md +4 -0
- data/Manifest.txt +1 -0
- data/lib/spreadsheet.rb +1 -1
- data/lib/spreadsheet/errors.rb +11 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MGEzZGQzMDI3OTM2ZWM2YjAzOGY1MWU0NDk5YjJmMzFiOGRlMzc5MA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTQ3ZWNhYzYyM2I4NWVlZGNlODUyN2MxZDExYWQ3MjI0ODQ3NWZlNg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDczOGZkZmY0OTlhNzY5MWNjNTBkN2I2OGU2Mzg2NTdiZjRiNWJkNGMzYzRl
|
10
|
+
YzU1MTQxYjYyNjYyY2UwZWQxOGRmYzQzZjgxYTYzZDdhMTgxYTAwYTI1ODBl
|
11
|
+
OTdhNmE5NzVlYWYxMjhlNDAwMjc0NzdlY2E4ZmRiMmU2NDk1ZTc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZjczMGE3ZDUyZWQ2NzFlZjA2NDEwNjU3NTQxODM3ZDM2MTg4ZDhmNWE5Y2Rk
|
14
|
+
ZTQ3ZjIzMDhiM2U1NDVmOTgzOWJhNWVkYWNlYTllODI1OTMwOTVhYWY4YjM5
|
15
|
+
YjI2YzMxZWQ2MjY1YzM5YmQ4MjEwODJhZDg5YTM3YmY1NTZhMjM=
|
data/History.md
CHANGED
data/Manifest.txt
CHANGED
data/lib/spreadsheet.rb
CHANGED
@@ -0,0 +1,11 @@
|
|
1
|
+
module Spreadsheet
|
2
|
+
# Custom errors raised by this gem, not errors from Excel
|
3
|
+
module Errors
|
4
|
+
BaseError = Class.new(StandardError)
|
5
|
+
|
6
|
+
# A codepage not stored in Spreadsheet::Internals::CODEPAGES
|
7
|
+
UnknownCodepage = Class.new(BaseError)
|
8
|
+
# The encoding can be known, but not supported by Ruby
|
9
|
+
UnsupportedEncoding = Class.new(BaseError)
|
10
|
+
end
|
11
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spreadsheet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masaomi Hatakeyama, Zeno R.R. Davatz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-ole
|
@@ -84,6 +84,7 @@ files:
|
|
84
84
|
- lib/spreadsheet/compatibility.rb
|
85
85
|
- lib/spreadsheet/datatypes.rb
|
86
86
|
- lib/spreadsheet/encodings.rb
|
87
|
+
- lib/spreadsheet/errors.rb
|
87
88
|
- lib/spreadsheet/excel.rb
|
88
89
|
- lib/spreadsheet/excel/error.rb
|
89
90
|
- lib/spreadsheet/excel/internals.rb
|