acts_as_flashcard 0.1.0 → 0.2.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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{acts_as_flashcard}
8
- s.version = "0.1.0"
8
+ s.version = "0.2.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bastien Vaucher"]
12
- s.date = %q{2010-11-26}
12
+ s.date = %q{2011-01-15}
13
13
  s.description = %q{act_as_flashcard is an adaptation of the Anki space repetition algorithm for rails applications}
14
14
  s.email = %q{bastien.vaucher@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -22,17 +22,14 @@ Gem::Specification.new do |s|
22
22
  "Rakefile",
23
23
  "VERSION",
24
24
  "acts_as_flashcard.gemspec",
25
- "install.rb",
26
25
  "lib/acts_as_flashcard.rb",
27
26
  "lib/generators/flashcard/USAGE",
28
27
  "lib/generators/flashcard/flashcard_generator.rb",
29
28
  "lib/generators/flashcard/templates/add_flashcards_fields_migration.rb",
30
29
  "lib/generators/flashcard/templates/create_flashcards_migration.rb",
31
- "tasks/acts_as_flashcard_tasks.rake",
32
30
  "test/acts_as_flashcard_test.rb",
33
31
  "test/flashcards_migration_generator_test.rb",
34
- "test/test_helper.rb",
35
- "uninstall.rb"
32
+ "test/test_helper.rb"
36
33
  ]
37
34
  s.homepage = %q{http://github.com/bastien/acts_as_flashcard}
38
35
  s.licenses = ["GNU"]
@@ -54,6 +54,7 @@ module Flashcard #:nodoc:
54
54
  include Flashcard::Base::InstanceMethods
55
55
 
56
56
  def acts_as_flashcard_class
57
+ puts "::#{self.name}"
57
58
  ::#{self.name}
58
59
  end
59
60
 
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 1
7
+ - 2
8
8
  - 0
9
- version: 0.1.0
9
+ version: 0.2.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Bastien Vaucher
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-11-26 00:00:00 +01:00
17
+ date: 2011-01-15 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -88,17 +88,14 @@ files:
88
88
  - Rakefile
89
89
  - VERSION
90
90
  - acts_as_flashcard.gemspec
91
- - install.rb
92
91
  - lib/acts_as_flashcard.rb
93
92
  - lib/generators/flashcard/USAGE
94
93
  - lib/generators/flashcard/flashcard_generator.rb
95
94
  - lib/generators/flashcard/templates/add_flashcards_fields_migration.rb
96
95
  - lib/generators/flashcard/templates/create_flashcards_migration.rb
97
- - tasks/acts_as_flashcard_tasks.rake
98
96
  - test/acts_as_flashcard_test.rb
99
97
  - test/flashcards_migration_generator_test.rb
100
98
  - test/test_helper.rb
101
- - uninstall.rb
102
99
  has_rdoc: true
103
100
  homepage: http://github.com/bastien/acts_as_flashcard
104
101
  licenses:
@@ -113,7 +110,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
113
110
  requirements:
114
111
  - - ">="
115
112
  - !ruby/object:Gem::Version
116
- hash: -2038859099431234814
113
+ hash: -624501011420978794
117
114
  segments:
118
115
  - 0
119
116
  version: "0"
data/install.rb DELETED
@@ -1 +0,0 @@
1
- # Install hook code here
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :acts_as_flashcard do
3
- # # Task goes here
4
- # end
data/uninstall.rb DELETED
@@ -1 +0,0 @@
1
- # Uninstall hook code here