identifier 1.0.1 → 1.0.2

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.
@@ -1,3 +1,3 @@
1
1
  module Identifier
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 1
9
- version: 1.0.1
8
+ - 2
9
+ version: 1.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Kevin Sylvestre
@@ -29,7 +29,6 @@ extra_rdoc_files: []
29
29
 
30
30
  files:
31
31
  - lib/identifier/version.rb
32
- - lib/identifier.rb
33
32
  - README.rdoc
34
33
  - LICENSE
35
34
  - Gemfile
@@ -1,14 +0,0 @@
1
- module Identifier
2
-
3
- def self.generate
4
-
5
- begin
6
- `uuidgen`.strip
7
- rescue Errno::ENOENT
8
- raise "uuidgen not found"
9
- end
10
-
11
- end
12
-
13
- end
14
-