wbzyl-sinatra-math 0.0.5 → 0.0.7
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.
- data/VERSION.yml +1 -1
- data/examples/app.rb +0 -1
- data/examples/euler.ru +5 -0
- data/examples/menagerie.rb +3 -0
- data/examples/phi.ru +5 -0
- data/examples/pi.ru +5 -1
- data/examples/rapp.ru +5 -1
- data/examples/sqrt2.ru +4 -2
- data/lib/sinatra-math.rb +1 -0
- data/lib/sinatra-math/phi.rb +0 -2
- data/lib/sinatra-math/sqrt2.rb +4 -1
- data/sinatra-math.gemspec +6 -6
- metadata +3 -3
data/VERSION.yml
CHANGED
data/examples/app.rb
CHANGED
data/examples/euler.ru
CHANGED
data/examples/menagerie.rb
CHANGED
data/examples/phi.ru
CHANGED
data/examples/pi.ru
CHANGED
data/examples/rapp.ru
CHANGED
data/examples/sqrt2.ru
CHANGED
data/lib/sinatra-math.rb
CHANGED
data/lib/sinatra-math/phi.rb
CHANGED
data/lib/sinatra-math/sqrt2.rb
CHANGED
data/sinatra-math.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{sinatra-math}
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.7"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Wlodek Bzyl"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-07-26}
|
10
10
|
s.description = %q{This gem contains four modular Sinatra applications:
|
11
11
|
Pi, Euler, Sqrt2, Phi (golden ratio).
|
12
12
|
|
@@ -54,12 +54,12 @@ These applications can be used to play with:
|
|
54
54
|
s.homepage = %q{http://github.com/wbzyl/sinatra-math}
|
55
55
|
s.rdoc_options = ["--charset=UTF-8"]
|
56
56
|
s.require_paths = ["lib"]
|
57
|
-
s.rubygems_version = %q{1.3.
|
57
|
+
s.rubygems_version = %q{1.3.5}
|
58
58
|
s.summary = %q{Several modular Sinatra apps to play with and iteratively construct new Rack apps.}
|
59
59
|
s.test_files = [
|
60
|
-
"examples/
|
61
|
-
"examples/
|
62
|
-
"examples/
|
60
|
+
"examples/app.rb",
|
61
|
+
"examples/mathlobster.rb",
|
62
|
+
"examples/menagerie.rb"
|
63
63
|
]
|
64
64
|
|
65
65
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wbzyl-sinatra-math
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wlodek Bzyl
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-07-26 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -108,6 +108,6 @@ signing_key:
|
|
108
108
|
specification_version: 3
|
109
109
|
summary: Several modular Sinatra apps to play with and iteratively construct new Rack apps.
|
110
110
|
test_files:
|
111
|
-
- examples/menagerie.rb
|
112
111
|
- examples/app.rb
|
113
112
|
- examples/mathlobster.rb
|
113
|
+
- examples/menagerie.rb
|