sr_uniquify 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/.gitignore +4 -0
- data/README.rdoc +1 -1
- data/lib/uniquify/version.rb +3 -0
- data/sr_uniquify-0.1.0.gem +0 -0
- data/uniquify.gemspec +6 -13
- metadata +8 -7
- data/Manifest +0 -7
data/.gitignore
ADDED
data/README.rdoc
CHANGED
|
Binary file
|
data/uniquify.gemspec
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "uniquify/version"
|
|
2
4
|
|
|
3
5
|
Gem::Specification.new do |s|
|
|
4
6
|
s.name = %q{sr_uniquify}
|
|
5
|
-
s.version =
|
|
7
|
+
s.version = Uniquify::VERSION
|
|
6
8
|
|
|
7
|
-
s.
|
|
9
|
+
s.platform = Gem::Platform::RUBY
|
|
8
10
|
s.authors = ["Spencer Roach"]
|
|
9
|
-
s.date = %q{2010-
|
|
11
|
+
s.date = %q{2010-12-22}
|
|
10
12
|
s.description = %q{Generate a unique token with Active Record}
|
|
11
13
|
s.email = %q{sroach@investormedia.com}
|
|
12
14
|
s.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "lib/uniquify.rb"]
|
|
13
|
-
s.files =
|
|
15
|
+
s.files = `git ls-files`.split("\n")
|
|
14
16
|
s.homepage = %q{http://github.com/spncrgr/uniquify}
|
|
15
17
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Uniquify", "--main", "README.rdoc"]
|
|
16
18
|
s.require_paths = ["lib"]
|
|
@@ -18,13 +20,4 @@ Gem::Specification.new do |s|
|
|
|
18
20
|
s.rubygems_version = %q{1.3.7}
|
|
19
21
|
s.summary = %q{Generate a unique token with Active Record}
|
|
20
22
|
|
|
21
|
-
if s.respond_to? :specification_version then
|
|
22
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
23
|
-
s.specification_version = 3
|
|
24
|
-
|
|
25
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
26
|
-
else
|
|
27
|
-
end
|
|
28
|
-
else
|
|
29
|
-
end
|
|
30
23
|
end
|
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
|
- Spencer Roach
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-
|
|
17
|
+
date: 2010-12-22 00:00:00 -05:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies: []
|
|
20
20
|
|
|
@@ -29,13 +29,15 @@ extra_rdoc_files:
|
|
|
29
29
|
- README.rdoc
|
|
30
30
|
- lib/uniquify.rb
|
|
31
31
|
files:
|
|
32
|
+
- .gitignore
|
|
32
33
|
- CHANGELOG
|
|
33
34
|
- README.rdoc
|
|
34
35
|
- Rakefile
|
|
35
36
|
- init.rb
|
|
36
37
|
- lib/uniquify.rb
|
|
38
|
+
- lib/uniquify/version.rb
|
|
39
|
+
- sr_uniquify-0.1.0.gem
|
|
37
40
|
- uniquify.gemspec
|
|
38
|
-
- Manifest
|
|
39
41
|
has_rdoc: true
|
|
40
42
|
homepage: http://github.com/spncrgr/uniquify
|
|
41
43
|
licenses: []
|
|
@@ -64,9 +66,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
64
66
|
- - ">="
|
|
65
67
|
- !ruby/object:Gem::Version
|
|
66
68
|
segments:
|
|
67
|
-
-
|
|
68
|
-
|
|
69
|
-
version: "1.2"
|
|
69
|
+
- 0
|
|
70
|
+
version: "0"
|
|
70
71
|
requirements: []
|
|
71
72
|
|
|
72
73
|
rubyforge_project: uniquify
|