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 ADDED
@@ -0,0 +1,4 @@
1
+ pkg
2
+ doc
3
+ .idea
4
+ Manifest
data/README.rdoc CHANGED
@@ -7,7 +7,7 @@ railscasts.com/episodes/135-making-a-gem
7
7
 
8
8
  == Install
9
9
 
10
- gem install spncrgr-uniquify --source http://gems.github.com
10
+ gem install sr_uniquify
11
11
 
12
12
  To install as a plugin:
13
13
 
@@ -0,0 +1,3 @@
1
+ module Uniquify
2
+ VERSION = "0.1.1"
3
+ end
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 = "0.1.0"
7
+ s.version = Uniquify::VERSION
6
8
 
7
- s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
9
+ s.platform = Gem::Platform::RUBY
8
10
  s.authors = ["Spencer Roach"]
9
- s.date = %q{2010-11-30}
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 = ["CHANGELOG", "README.rdoc", "Rakefile", "init.rb", "lib/uniquify.rb", "uniquify.gemspec", "Manifest"]
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
- - 0
9
- version: 0.1.0
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-11-30 00:00:00 -05:00
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
- - 1
68
- - 2
69
- version: "1.2"
69
+ - 0
70
+ version: "0"
70
71
  requirements: []
71
72
 
72
73
  rubyforge_project: uniquify
data/Manifest DELETED
@@ -1,7 +0,0 @@
1
- CHANGELOG
2
- README.rdoc
3
- Rakefile
4
- init.rb
5
- lib/uniquify.rb
6
- uniquify.gemspec
7
- Manifest