simple-spreadsheet 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/lib/simple-spreadsheet/version.rb +1 -1
- data/simple-spreadsheet.gemspec +2 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eabf0f9d6cdbfcf4ce588275e32fe5f5b8fb0f67
|
4
|
+
data.tar.gz: 2d2145fcb3e03a3442cf3c3a362839609ce2706d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19611308ae818bc71e29782420fff3d65e81d4e4a0585c843f066b347be41db6b507f68eea8e33d6e5ae387a8e8f64d41a77f985ba2e956192cc9e64bc65e0da
|
7
|
+
data.tar.gz: c72b29dd92d6dbc40e2678c47be53bd86a7c6b3821b9b64706ec4c40fe246ac0acbc9f7f8797bde4cbee98619f4e0305e19fa341ebdb5b5af2098a677aaf9910
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Andrea Mostosi
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/simple-spreadsheet.gemspec
CHANGED
@@ -7,6 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.description = %q{Simple spreadsheet reader for common formats: Excel (.xls, .xlsx), Open-office (.ods) and some CSV (standard, excel, tab separated). Future versions: writing and more formats.}
|
8
8
|
gem.summary = %q{Read and write most common spreadsheet format}
|
9
9
|
gem.homepage = "https://github.com/zenkay/simple-spreadsheet"
|
10
|
+
gem.license = "MIT"
|
10
11
|
|
11
12
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
12
13
|
gem.files = `git ls-files`.split("\n")
|
@@ -15,6 +16,7 @@ Gem::Specification.new do |gem|
|
|
15
16
|
gem.require_paths = ["lib"]
|
16
17
|
gem.version = SimpleSpreadsheet::VERSION
|
17
18
|
|
19
|
+
|
18
20
|
# specify any dependencies here; for example:
|
19
21
|
gem.add_development_dependency "bundler", "~> 1.10"
|
20
22
|
gem.add_development_dependency "rake", "~> 10.1"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple-spreadsheet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrea Mostosi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -108,6 +108,7 @@ files:
|
|
108
108
|
- ".travis.yml"
|
109
109
|
- Gemfile
|
110
110
|
- Gemfile.lock
|
111
|
+
- LICENSE.txt
|
111
112
|
- README.md
|
112
113
|
- Rakefile
|
113
114
|
- lib/simple-spreadsheet.rb
|
@@ -157,7 +158,8 @@ files:
|
|
157
158
|
- spec/simple-spreadsheet_xlsx_spec.rb
|
158
159
|
- spec/spec_helper.rb
|
159
160
|
homepage: https://github.com/zenkay/simple-spreadsheet
|
160
|
-
licenses:
|
161
|
+
licenses:
|
162
|
+
- MIT
|
161
163
|
metadata: {}
|
162
164
|
post_install_message:
|
163
165
|
rdoc_options: []
|