soroban 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -0
- data/Gemfile.lock +7 -3
- data/Soroban.gemspec +9 -2
- data/VERSION +1 -1
- data/bugs/issue-096ca8b758759b2b32d9c58a88a2ab05672336b8.yaml +18 -0
- data/bugs/issue-2257df466e56d29a07b2ecc2453296d9d1401d77.yaml +18 -0
- data/bugs/issue-d84ed3471e4dd2930795446dca750c20700746e0.yaml +18 -0
- data/bugs/project.yaml +8 -0
- metadata +22 -4
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -2,13 +2,15 @@ GEM
|
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
4
|
diff-lcs (1.1.3)
|
5
|
+
ditz (0.5)
|
6
|
+
trollop (>= 1.9)
|
5
7
|
git (1.2.5)
|
6
8
|
jeweler (1.8.3)
|
7
9
|
bundler (~> 1.0)
|
8
10
|
git (>= 1.2.5)
|
9
11
|
rake
|
10
12
|
rdoc
|
11
|
-
json (1.
|
13
|
+
json (1.7.3)
|
12
14
|
nokogiri (1.5.2)
|
13
15
|
polyglot (0.3.3)
|
14
16
|
rake (0.9.2.2)
|
@@ -24,16 +26,18 @@ GEM
|
|
24
26
|
diff-lcs (~> 1.1.3)
|
25
27
|
rspec-mocks (2.9.0)
|
26
28
|
rubyXL (1.2.7)
|
27
|
-
rubyzip (0.9.
|
29
|
+
rubyzip (0.9.8)
|
28
30
|
treetop (1.4.10)
|
29
31
|
polyglot
|
30
32
|
polyglot (>= 0.3.1)
|
31
|
-
|
33
|
+
trollop (1.16.2)
|
34
|
+
yard (0.8.1)
|
32
35
|
|
33
36
|
PLATFORMS
|
34
37
|
ruby
|
35
38
|
|
36
39
|
DEPENDENCIES
|
40
|
+
ditz
|
37
41
|
jeweler (~> 1.8.3)
|
38
42
|
nokogiri (>= 1.4.4)
|
39
43
|
rake
|
data/Soroban.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "soroban"
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jason Hutchens"]
|
12
|
-
s.date = "2012-
|
12
|
+
s.date = "2012-05-22"
|
13
13
|
s.description = "Soroban makes it easy to extract and execute formulas from Excel spreadsheets. It rewrites Excel formulas as Ruby expressions, and allows you to bind named variables to spreadsheet cells to easily manipulate inputs and capture outputs."
|
14
14
|
s.email = "jason.hutchens@agworld.com.au"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -28,6 +28,10 @@ Gem::Specification.new do |s|
|
|
28
28
|
"Rakefile",
|
29
29
|
"Soroban.gemspec",
|
30
30
|
"VERSION",
|
31
|
+
"bugs/issue-096ca8b758759b2b32d9c58a88a2ab05672336b8.yaml",
|
32
|
+
"bugs/issue-2257df466e56d29a07b2ecc2453296d9d1401d77.yaml",
|
33
|
+
"bugs/issue-d84ed3471e4dd2930795446dca750c20700746e0.yaml",
|
34
|
+
"bugs/project.yaml",
|
31
35
|
"files/Physics.xlsx",
|
32
36
|
"lib/soroban.rb",
|
33
37
|
"lib/soroban/cell.rb",
|
@@ -73,17 +77,20 @@ Gem::Specification.new do |s|
|
|
73
77
|
s.add_development_dependency(%q<rubyXL>, ["~> 1.2.7"])
|
74
78
|
s.add_development_dependency(%q<nokogiri>, [">= 1.4.4"])
|
75
79
|
s.add_development_dependency(%q<rubyzip>, [">= 0.9.4"])
|
80
|
+
s.add_development_dependency(%q<ditz>, [">= 0"])
|
76
81
|
else
|
77
82
|
s.add_dependency(%q<treetop>, ["~> 1.4.10"])
|
78
83
|
s.add_dependency(%q<rubyXL>, ["~> 1.2.7"])
|
79
84
|
s.add_dependency(%q<nokogiri>, [">= 1.4.4"])
|
80
85
|
s.add_dependency(%q<rubyzip>, [">= 0.9.4"])
|
86
|
+
s.add_dependency(%q<ditz>, [">= 0"])
|
81
87
|
end
|
82
88
|
else
|
83
89
|
s.add_dependency(%q<treetop>, ["~> 1.4.10"])
|
84
90
|
s.add_dependency(%q<rubyXL>, ["~> 1.2.7"])
|
85
91
|
s.add_dependency(%q<nokogiri>, [">= 1.4.4"])
|
86
92
|
s.add_dependency(%q<rubyzip>, [">= 0.9.4"])
|
93
|
+
s.add_dependency(%q<ditz>, [">= 0"])
|
87
94
|
end
|
88
95
|
end
|
89
96
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
@@ -0,0 +1,18 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Implement dump and restore as a JSON blob
|
3
|
+
desc: Dump the entire state out as a JSON blob, and load it back in. Write tests. Makes for easy serialisation.
|
4
|
+
type: :task
|
5
|
+
component: soroban
|
6
|
+
release:
|
7
|
+
reporter: Jason Hutchens <jason@agworld.com.au>
|
8
|
+
status: :unstarted
|
9
|
+
disposition:
|
10
|
+
creation_time: 2012-05-03 07:50:15.815354 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 096ca8b758759b2b32d9c58a88a2ab05672336b8
|
14
|
+
log_events:
|
15
|
+
- - 2012-05-03 07:50:20.319126 Z
|
16
|
+
- Jason Hutchens <jason@agworld.com.au>
|
17
|
+
- created
|
18
|
+
- ""
|
@@ -0,0 +1,18 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Fix issue with importing rows of equations
|
3
|
+
desc: I have a sheet where the same equation has been copied/pasted between cells, and it only gets imported once.
|
4
|
+
type: :bugfix
|
5
|
+
component: soroban
|
6
|
+
release:
|
7
|
+
reporter: Jason Hutchens <jason@agworld.com.au>
|
8
|
+
status: :unstarted
|
9
|
+
disposition:
|
10
|
+
creation_time: 2012-05-03 07:51:21.582499 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 2257df466e56d29a07b2ecc2453296d9d1401d77
|
14
|
+
log_events:
|
15
|
+
- - 2012-05-03 07:51:24.022969 Z
|
16
|
+
- Jason Hutchens <jason@agworld.com.au>
|
17
|
+
- created
|
18
|
+
- ""
|
@@ -0,0 +1,18 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Rewrite formulas as valud Javascript
|
3
|
+
desc: Soroban currently rewrites formulas as valid Ruby for execution on the server. It is possible to rewrite as valid JS code for execution on the client. Do this thing.
|
4
|
+
type: :feature
|
5
|
+
component: soroban
|
6
|
+
release:
|
7
|
+
reporter: Jason Hutchens <jason@agworld.com.au>
|
8
|
+
status: :unstarted
|
9
|
+
disposition:
|
10
|
+
creation_time: 2012-05-03 07:52:17.446014 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: d84ed3471e4dd2930795446dca750c20700746e0
|
14
|
+
log_events:
|
15
|
+
- - 2012-05-03 07:52:19.141383 Z
|
16
|
+
- Jason Hutchens <jason@agworld.com.au>
|
17
|
+
- created
|
18
|
+
- ""
|
data/bugs/project.yaml
ADDED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: soroban
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 1
|
10
|
+
version: 0.3.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jason Hutchens
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-05-22 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
type: :runtime
|
@@ -81,6 +81,20 @@ dependencies:
|
|
81
81
|
version: 0.9.4
|
82
82
|
version_requirements: *id004
|
83
83
|
name: rubyzip
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
type: :development
|
86
|
+
prerelease: false
|
87
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
88
|
+
none: false
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
hash: 3
|
93
|
+
segments:
|
94
|
+
- 0
|
95
|
+
version: "0"
|
96
|
+
version_requirements: *id005
|
97
|
+
name: ditz
|
84
98
|
description: Soroban makes it easy to extract and execute formulas from Excel spreadsheets. It rewrites Excel formulas as Ruby expressions, and allows you to bind named variables to spreadsheet cells to easily manipulate inputs and capture outputs.
|
85
99
|
email: jason.hutchens@agworld.com.au
|
86
100
|
executables: []
|
@@ -102,6 +116,10 @@ files:
|
|
102
116
|
- Rakefile
|
103
117
|
- Soroban.gemspec
|
104
118
|
- VERSION
|
119
|
+
- bugs/issue-096ca8b758759b2b32d9c58a88a2ab05672336b8.yaml
|
120
|
+
- bugs/issue-2257df466e56d29a07b2ecc2453296d9d1401d77.yaml
|
121
|
+
- bugs/issue-d84ed3471e4dd2930795446dca750c20700746e0.yaml
|
122
|
+
- bugs/project.yaml
|
105
123
|
- files/Physics.xlsx
|
106
124
|
- lib/soroban.rb
|
107
125
|
- lib/soroban/cell.rb
|