matholroyd-supermemo 0.1.0 → 0.1.1
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/README.rdoc +1 -1
- data/Rakefile +2 -2
- data/lib/{sm2.rb → supermemo.rb} +0 -0
- data/supermemo.gemspec +6 -6
- metadata +6 -6
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
|
@@ -2,8 +2,8 @@ require 'rubygems'
|
|
|
2
2
|
require 'rake'
|
|
3
3
|
require 'echoe'
|
|
4
4
|
|
|
5
|
-
Echoe.new('supermemo', '0.1.
|
|
6
|
-
p.description = 'The SuperMemo (version SM-2)
|
|
5
|
+
Echoe.new('supermemo', '0.1.1') do |p|
|
|
6
|
+
p.description = 'The SuperMemo algorithm (version SM-2) in ruby'
|
|
7
7
|
p.url = 'http://github.com/matholroyd/supermemo'
|
|
8
8
|
p.author = 'Mat Holroyd'
|
|
9
9
|
p.email = 'matholroyd+supermemo@gmail.com'
|
data/lib/{sm2.rb → supermemo.rb}
RENAMED
|
File without changes
|
data/supermemo.gemspec
CHANGED
|
@@ -2,22 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{supermemo}
|
|
5
|
-
s.version = "0.1.
|
|
5
|
+
s.version = "0.1.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Mat Holroyd"]
|
|
9
|
-
s.date = %q{2009-04-
|
|
10
|
-
s.description = %q{The SuperMemo (version SM-2)
|
|
9
|
+
s.date = %q{2009-04-08}
|
|
10
|
+
s.description = %q{The SuperMemo algorithm (version SM-2) in ruby}
|
|
11
11
|
s.email = %q{matholroyd+supermemo@gmail.com}
|
|
12
|
-
s.extra_rdoc_files = ["lib/
|
|
13
|
-
s.files = ["lib/
|
|
12
|
+
s.extra_rdoc_files = ["lib/supermemo.rb", "README.rdoc"]
|
|
13
|
+
s.files = ["lib/supermemo.rb", "Manifest", "Rakefile", "README.rdoc", "supermemo.gemspec"]
|
|
14
14
|
s.has_rdoc = true
|
|
15
15
|
s.homepage = %q{http://github.com/matholroyd/supermemo}
|
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Supermemo", "--main", "README.rdoc"]
|
|
17
17
|
s.require_paths = ["lib"]
|
|
18
18
|
s.rubyforge_project = %q{supermemo}
|
|
19
19
|
s.rubygems_version = %q{1.3.1}
|
|
20
|
-
s.summary = %q{The SuperMemo (version SM-2)
|
|
20
|
+
s.summary = %q{The SuperMemo algorithm (version SM-2) in ruby}
|
|
21
21
|
|
|
22
22
|
if s.respond_to? :specification_version then
|
|
23
23
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: matholroyd-supermemo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mat Holroyd
|
|
@@ -9,21 +9,21 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-04-
|
|
12
|
+
date: 2009-04-08 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
16
|
-
description: The SuperMemo (version SM-2)
|
|
16
|
+
description: The SuperMemo algorithm (version SM-2) in ruby
|
|
17
17
|
email: matholroyd+supermemo@gmail.com
|
|
18
18
|
executables: []
|
|
19
19
|
|
|
20
20
|
extensions: []
|
|
21
21
|
|
|
22
22
|
extra_rdoc_files:
|
|
23
|
-
- lib/
|
|
23
|
+
- lib/supermemo.rb
|
|
24
24
|
- README.rdoc
|
|
25
25
|
files:
|
|
26
|
-
- lib/
|
|
26
|
+
- lib/supermemo.rb
|
|
27
27
|
- Manifest
|
|
28
28
|
- Rakefile
|
|
29
29
|
- README.rdoc
|
|
@@ -58,6 +58,6 @@ rubyforge_project: supermemo
|
|
|
58
58
|
rubygems_version: 1.2.0
|
|
59
59
|
signing_key:
|
|
60
60
|
specification_version: 2
|
|
61
|
-
summary: The SuperMemo (version SM-2)
|
|
61
|
+
summary: The SuperMemo algorithm (version SM-2) in ruby
|
|
62
62
|
test_files: []
|
|
63
63
|
|