gentok 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/Rakefile +2 -2
- data/VERSION +1 -1
- data/gentok.gemspec +3 -4
- metadata +4 -5
data/Rakefile
CHANGED
|
@@ -5,8 +5,8 @@ begin
|
|
|
5
5
|
require "jeweler"
|
|
6
6
|
Jeweler::Tasks.new do |gemspec|
|
|
7
7
|
gemspec.name = "gentok"
|
|
8
|
-
gemspec.summary = "Generate a unique token with ActiveRecord, called in a before_create method."
|
|
9
|
-
gemspec.description = "Generate a unique token with ActiveRecord, called in a before_create method."
|
|
8
|
+
gemspec.summary = "Generate a unique token with ActiveRecord, called in a before_create method. Please note that this is a copy of Ryan Bates' uniquify gem."
|
|
9
|
+
gemspec.description = "Generate a unique token with ActiveRecord, called in a before_create method. Please note that this is a copy of Ryan Bates' uniquify gem."
|
|
10
10
|
gemspec.email = "patrick.elder@me.com"
|
|
11
11
|
gemspec.homepage = "http://github.com/patrickelder/gentok"
|
|
12
12
|
gemspec.authors = ["Patrick Elder"]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/gentok.gemspec
CHANGED
|
@@ -5,18 +5,17 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{gentok}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Patrick Elder"]
|
|
12
12
|
s.date = %q{2010-05-01}
|
|
13
|
-
s.description = %q{Generate a unique token with ActiveRecord, called in a before_create method.}
|
|
13
|
+
s.description = %q{Generate a unique token with ActiveRecord, called in a before_create method. Please note that this is a copy of Ryan Bates' uniquify gem.}
|
|
14
14
|
s.email = %q{patrick.elder@me.com}
|
|
15
15
|
s.files = [
|
|
16
16
|
".gitignore",
|
|
17
17
|
"Rakefile",
|
|
18
18
|
"VERSION",
|
|
19
|
-
"gentok-0.1.0.gem",
|
|
20
19
|
"gentok.gemspec",
|
|
21
20
|
"lib/gentok.rb"
|
|
22
21
|
]
|
|
@@ -24,7 +23,7 @@ Gem::Specification.new do |s|
|
|
|
24
23
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
25
24
|
s.require_paths = ["lib"]
|
|
26
25
|
s.rubygems_version = %q{1.3.6}
|
|
27
|
-
s.summary = %q{Generate a unique token with ActiveRecord, called in a before_create method.}
|
|
26
|
+
s.summary = %q{Generate a unique token with ActiveRecord, called in a before_create method. Please note that this is a copy of Ryan Bates' uniquify gem.}
|
|
28
27
|
|
|
29
28
|
if s.respond_to? :specification_version then
|
|
30
29
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Patrick Elder
|
|
@@ -18,7 +18,7 @@ date: 2010-05-01 00:00:00 -05:00
|
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies: []
|
|
20
20
|
|
|
21
|
-
description: Generate a unique token with ActiveRecord, called in a before_create method.
|
|
21
|
+
description: Generate a unique token with ActiveRecord, called in a before_create method. Please note that this is a copy of Ryan Bates' uniquify gem.
|
|
22
22
|
email: patrick.elder@me.com
|
|
23
23
|
executables: []
|
|
24
24
|
|
|
@@ -30,7 +30,6 @@ files:
|
|
|
30
30
|
- .gitignore
|
|
31
31
|
- Rakefile
|
|
32
32
|
- VERSION
|
|
33
|
-
- gentok-0.1.0.gem
|
|
34
33
|
- gentok.gemspec
|
|
35
34
|
- lib/gentok.rb
|
|
36
35
|
has_rdoc: true
|
|
@@ -62,6 +61,6 @@ rubyforge_project:
|
|
|
62
61
|
rubygems_version: 1.3.6
|
|
63
62
|
signing_key:
|
|
64
63
|
specification_version: 3
|
|
65
|
-
summary: Generate a unique token with ActiveRecord, called in a before_create method.
|
|
64
|
+
summary: Generate a unique token with ActiveRecord, called in a before_create method. Please note that this is a copy of Ryan Bates' uniquify gem.
|
|
66
65
|
test_files: []
|
|
67
66
|
|