noid 0.0.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/.document +5 -0
- data/Gemfile +13 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/lib/noid.rb +4 -0
- data/lib/noid/minter.rb +136 -0
- data/test/helper.rb +18 -0
- data/test/test_noid.rb +109 -0
- metadata +137 -0
    
        data/.document
    ADDED
    
    
    
        data/Gemfile
    ADDED
    
    | @@ -0,0 +1,13 @@ | |
| 1 | 
            +
            source "http://rubygems.org"
         | 
| 2 | 
            +
            # Add dependencies required to use your gem here.
         | 
| 3 | 
            +
            # Example:
         | 
| 4 | 
            +
            #   gem "activesupport", ">= 2.3.5"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            # Add dependencies to develop your gem here.
         | 
| 7 | 
            +
            # Include everything needed to run rake, tests, features, etc.
         | 
| 8 | 
            +
            group :development do
         | 
| 9 | 
            +
              gem "shoulda", ">= 0"
         | 
| 10 | 
            +
              gem "bundler", "~> 1.0.0"
         | 
| 11 | 
            +
              gem "jeweler", "~> 1.5.1"
         | 
| 12 | 
            +
              gem "rcov", ">= 0"
         | 
| 13 | 
            +
            end
         | 
    
        data/LICENSE.txt
    ADDED
    
    | @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            Copyright (c) 2010 Chris Beer
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Permission is hereby granted, free of charge, to any person obtaining
         | 
| 4 | 
            +
            a copy of this software and associated documentation files (the
         | 
| 5 | 
            +
            "Software"), to deal in the Software without restriction, including
         | 
| 6 | 
            +
            without limitation the rights to use, copy, modify, merge, publish,
         | 
| 7 | 
            +
            distribute, sublicense, and/or sell copies of the Software, and to
         | 
| 8 | 
            +
            permit persons to whom the Software is furnished to do so, subject to
         | 
| 9 | 
            +
            the following conditions:
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            The above copyright notice and this permission notice shall be
         | 
| 12 | 
            +
            included in all copies or substantial portions of the Software.
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
         | 
| 15 | 
            +
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
         | 
| 16 | 
            +
            MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         | 
| 17 | 
            +
            NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
         | 
| 18 | 
            +
            LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
         | 
| 19 | 
            +
            OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
         | 
| 20 | 
            +
            WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         | 
    
        data/README.rdoc
    ADDED
    
    | @@ -0,0 +1,19 @@ | |
| 1 | 
            +
            = noid
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Ruby implementation of NOID (Nice Opaque Identifier)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            == Contributing to noid
         | 
| 6 | 
            +
             
         | 
| 7 | 
            +
            * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
         | 
| 8 | 
            +
            * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
         | 
| 9 | 
            +
            * Fork the project
         | 
| 10 | 
            +
            * Start a feature/bugfix branch
         | 
| 11 | 
            +
            * Commit and push until you are happy with your contribution
         | 
| 12 | 
            +
            * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
         | 
| 13 | 
            +
            * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            == Copyright
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            Copyright (c) 2010 Chris Beer. See LICENSE.txt for
         | 
| 18 | 
            +
            further details.
         | 
| 19 | 
            +
             | 
    
        data/Rakefile
    ADDED
    
    | @@ -0,0 +1,53 @@ | |
| 1 | 
            +
            require 'rubygems'
         | 
| 2 | 
            +
            require 'bundler'
         | 
| 3 | 
            +
            begin
         | 
| 4 | 
            +
              Bundler.setup(:default, :development)
         | 
| 5 | 
            +
            rescue Bundler::BundlerError => e
         | 
| 6 | 
            +
              $stderr.puts e.message
         | 
| 7 | 
            +
              $stderr.puts "Run `bundle install` to install missing gems"
         | 
| 8 | 
            +
              exit e.status_code
         | 
| 9 | 
            +
            end
         | 
| 10 | 
            +
            require 'rake'
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            require 'jeweler'
         | 
| 13 | 
            +
            Jeweler::Tasks.new do |gem|
         | 
| 14 | 
            +
              # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
         | 
| 15 | 
            +
              gem.name = "noid"
         | 
| 16 | 
            +
              gem.homepage = "http://github.com/cbeer/noid"
         | 
| 17 | 
            +
              gem.license = "MIT"
         | 
| 18 | 
            +
              gem.summary = %Q{Nice Opaque Identifier}
         | 
| 19 | 
            +
              gem.description = %Q{}
         | 
| 20 | 
            +
              gem.email = "chris@cbeer.info"
         | 
| 21 | 
            +
              gem.authors = ["Chris Beer"]
         | 
| 22 | 
            +
              # Include your dependencies below. Runtime dependencies are required when using your gem,
         | 
| 23 | 
            +
              # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
         | 
| 24 | 
            +
              #  gem.add_runtime_dependency 'jabber4r', '> 0.1'
         | 
| 25 | 
            +
              #  gem.add_development_dependency 'rspec', '> 1.2.3'
         | 
| 26 | 
            +
            end
         | 
| 27 | 
            +
            Jeweler::RubygemsDotOrgTasks.new
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            require 'rake/testtask'
         | 
| 30 | 
            +
            Rake::TestTask.new(:test) do |test|
         | 
| 31 | 
            +
              test.libs << 'lib' << 'test'
         | 
| 32 | 
            +
              test.pattern = 'test/**/test_*.rb'
         | 
| 33 | 
            +
              test.verbose = true
         | 
| 34 | 
            +
            end
         | 
| 35 | 
            +
             | 
| 36 | 
            +
            require 'rcov/rcovtask'
         | 
| 37 | 
            +
            Rcov::RcovTask.new do |test|
         | 
| 38 | 
            +
              test.libs << 'test'
         | 
| 39 | 
            +
              test.pattern = 'test/**/test_*.rb'
         | 
| 40 | 
            +
              test.verbose = true
         | 
| 41 | 
            +
            end
         | 
| 42 | 
            +
             | 
| 43 | 
            +
            task :default => :test
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            require 'rake/rdoctask'
         | 
| 46 | 
            +
            Rake::RDocTask.new do |rdoc|
         | 
| 47 | 
            +
              version = File.exist?('VERSION') ? File.read('VERSION') : ""
         | 
| 48 | 
            +
             | 
| 49 | 
            +
              rdoc.rdoc_dir = 'rdoc'
         | 
| 50 | 
            +
              rdoc.title = "noid #{version}"
         | 
| 51 | 
            +
              rdoc.rdoc_files.include('README*')
         | 
| 52 | 
            +
              rdoc.rdoc_files.include('lib/**/*.rb')
         | 
| 53 | 
            +
            end
         | 
    
        data/VERSION
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            0.0.1
         | 
    
        data/lib/noid.rb
    ADDED
    
    
    
        data/lib/noid/minter.rb
    ADDED
    
    | @@ -0,0 +1,136 @@ | |
| 1 | 
            +
            module Noid
         | 
| 2 | 
            +
              class Minter
         | 
| 3 | 
            +
                XDIGIT = ['0','1','2','3','4','5','6','7','8','9','b','c','d','f','g','h','j','k','l','n','p','q','r','s','t','v','w','x','z']
         | 
| 4 | 
            +
                MAX_COUNTERS = 293
         | 
| 5 | 
            +
             | 
| 6 | 
            +
                def initialize args = {}
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                  @max = nil
         | 
| 9 | 
            +
                  @min = nil
         | 
| 10 | 
            +
             | 
| 11 | 
            +
                  @prefix, @mask = args[:template].split('.')
         | 
| 12 | 
            +
                  @type, @characters = @mask.split '', 2
         | 
| 13 | 
            +
                  @characters = @characters.split ''
         | 
| 14 | 
            +
                  @check = @characters.pop and true if @characters.last == 'k'
         | 
| 15 | 
            +
                  case @type
         | 
| 16 | 
            +
                    when 's'
         | 
| 17 | 
            +
                      @s = 0
         | 
| 18 | 
            +
                    when 'z'
         | 
| 19 | 
            +
                      @s = 0
         | 
| 20 | 
            +
                    when 'r'
         | 
| 21 | 
            +
             | 
| 22 | 
            +
                      percounter = max / MAX_COUNTERS + 1
         | 
| 23 | 
            +
                      t = 0
         | 
| 24 | 
            +
                      @s = Array.new(max/percounter) do |i| 
         | 
| 25 | 
            +
                        { :value => case i
         | 
| 26 | 
            +
                          when 0 then 0
         | 
| 27 | 
            +
                          else t += percounter 
         | 
| 28 | 
            +
                          end, :max => t + percounter }
         | 
| 29 | 
            +
                      end
         | 
| 30 | 
            +
                  end
         | 
| 31 | 
            +
                  
         | 
| 32 | 
            +
                end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
                def mint
         | 
| 35 | 
            +
                  str = @prefix
         | 
| 36 | 
            +
                  case @type
         | 
| 37 | 
            +
                    when 's'
         | 
| 38 | 
            +
                      n = @s
         | 
| 39 | 
            +
                      @s += 1
         | 
| 40 | 
            +
                      str += n2xdig(n)
         | 
| 41 | 
            +
                    when 'z'
         | 
| 42 | 
            +
                      n = @s
         | 
| 43 | 
            +
                      @s += 1
         | 
| 44 | 
            +
                      str += n2xdig(n)
         | 
| 45 | 
            +
                    when 'r'
         | 
| 46 | 
            +
                      i = rand(@s.size)
         | 
| 47 | 
            +
                      n = @s[i][:value]
         | 
| 48 | 
            +
                      @s[i][:value] += 1
         | 
| 49 | 
            +
                      @s.delete_at(i) if @s[i][:value] == @s[i][:max]
         | 
| 50 | 
            +
                      str += n2xdig(n)
         | 
| 51 | 
            +
                  end
         | 
| 52 | 
            +
             | 
| 53 | 
            +
                  str += checkdigit(str) if @check
         | 
| 54 | 
            +
             | 
| 55 | 
            +
                  str
         | 
| 56 | 
            +
                end
         | 
| 57 | 
            +
             | 
| 58 | 
            +
                def hold id
         | 
| 59 | 
            +
             | 
| 60 | 
            +
                end
         | 
| 61 | 
            +
             | 
| 62 | 
            +
                def release id
         | 
| 63 | 
            +
             | 
| 64 | 
            +
                end
         | 
| 65 | 
            +
             | 
| 66 | 
            +
                def validate id
         | 
| 67 | 
            +
             | 
| 68 | 
            +
                end
         | 
| 69 | 
            +
             | 
| 70 | 
            +
             | 
| 71 | 
            +
                private
         | 
| 72 | 
            +
             | 
| 73 | 
            +
                def s
         | 
| 74 | 
            +
                  @s
         | 
| 75 | 
            +
                end
         | 
| 76 | 
            +
             | 
| 77 | 
            +
                def checkdigit str
         | 
| 78 | 
            +
                  i = 1
         | 
| 79 | 
            +
                  XDIGIT[str.split('').map { |x|  XDIGIT.index(x).to_i }.inject { |sum, n| i+=1; sum += (n * i) } % XDIGIT.length]
         | 
| 80 | 
            +
                end
         | 
| 81 | 
            +
             | 
| 82 | 
            +
                def min
         | 
| 83 | 
            +
                  return @min if @min
         | 
| 84 | 
            +
                  @min = 0
         | 
| 85 | 
            +
                end
         | 
| 86 | 
            +
             | 
| 87 | 
            +
                def max
         | 
| 88 | 
            +
                  return @max if @max
         | 
| 89 | 
            +
                  return @max = nil if @type == 'z'
         | 
| 90 | 
            +
                  @max = @characters.inject(1) do |sum, n|
         | 
| 91 | 
            +
                    i = case n
         | 
| 92 | 
            +
                        when 'e'
         | 
| 93 | 
            +
                          XDIGIT.length
         | 
| 94 | 
            +
                        when 'd'
         | 
| 95 | 
            +
                          10
         | 
| 96 | 
            +
                        else 
         | 
| 97 | 
            +
                          1
         | 
| 98 | 
            +
                    end
         | 
| 99 | 
            +
                    sum *= i 
         | 
| 100 | 
            +
                  end  
         | 
| 101 | 
            +
                end
         | 
| 102 | 
            +
             | 
| 103 | 
            +
                def n2xdig n
         | 
| 104 | 
            +
                  xdig = @characters.reverse.map do |c|
         | 
| 105 | 
            +
                    div = case c
         | 
| 106 | 
            +
                      when 'e' then XDIGIT.length
         | 
| 107 | 
            +
                      when 'd' then 10  
         | 
| 108 | 
            +
                      end
         | 
| 109 | 
            +
                      next if div.nil?
         | 
| 110 | 
            +
             | 
| 111 | 
            +
                      value = n % div
         | 
| 112 | 
            +
                      n = n / div
         | 
| 113 | 
            +
                      XDIGIT[value]
         | 
| 114 | 
            +
                  end.compact.join ''
         | 
| 115 | 
            +
             | 
| 116 | 
            +
                  if @type == 'z'
         | 
| 117 | 
            +
                    while n > 0
         | 
| 118 | 
            +
                      c = @characters.last
         | 
| 119 | 
            +
                      div = case c
         | 
| 120 | 
            +
                        when 'e' then XDIGIT.length
         | 
| 121 | 
            +
                        when 'd' then 10  
         | 
| 122 | 
            +
                        end
         | 
| 123 | 
            +
                        next if div.nil?
         | 
| 124 | 
            +
             | 
| 125 | 
            +
                        value = n % div
         | 
| 126 | 
            +
                        n = n / div
         | 
| 127 | 
            +
                        xdig += XDIGIT[value]
         | 
| 128 | 
            +
                    end
         | 
| 129 | 
            +
                  end
         | 
| 130 | 
            +
                  
         | 
| 131 | 
            +
                  raise Exception if n > 0
         | 
| 132 | 
            +
             | 
| 133 | 
            +
                  xdig.reverse
         | 
| 134 | 
            +
                end
         | 
| 135 | 
            +
              end
         | 
| 136 | 
            +
            end
         | 
    
        data/test/helper.rb
    ADDED
    
    | @@ -0,0 +1,18 @@ | |
| 1 | 
            +
            require 'rubygems'
         | 
| 2 | 
            +
            require 'bundler'
         | 
| 3 | 
            +
            begin
         | 
| 4 | 
            +
              Bundler.setup(:default, :development)
         | 
| 5 | 
            +
            rescue Bundler::BundlerError => e
         | 
| 6 | 
            +
              $stderr.puts e.message
         | 
| 7 | 
            +
              $stderr.puts "Run `bundle install` to install missing gems"
         | 
| 8 | 
            +
              exit e.status_code
         | 
| 9 | 
            +
            end
         | 
| 10 | 
            +
            require 'test/unit'
         | 
| 11 | 
            +
            require 'shoulda'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
         | 
| 14 | 
            +
            $LOAD_PATH.unshift(File.dirname(__FILE__))
         | 
| 15 | 
            +
            require 'noid'
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            class Test::Unit::TestCase
         | 
| 18 | 
            +
            end
         | 
    
        data/test/test_noid.rb
    ADDED
    
    | @@ -0,0 +1,109 @@ | |
| 1 | 
            +
            require 'helper'
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            class TestNoid < Test::Unit::TestCase
         | 
| 4 | 
            +
              context "Noid" do
         | 
| 5 | 
            +
                should "generate checkdigits correctly" do
         | 
| 6 | 
            +
                  n = Noid::Minter.new :template => 's.zd'
         | 
| 7 | 
            +
                  assert_equal('q', n.send(:checkdigit, '13030/xf93gt2'))
         | 
| 8 | 
            +
                end
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                should "generate max sequence for type 'r'" do
         | 
| 11 | 
            +
                  n = Noid::Minter.new :template => 's.rd'
         | 
| 12 | 
            +
                  assert_equal(0, n.send(:min))
         | 
| 13 | 
            +
                  assert_equal(10, n.send(:max))
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                  n = Noid::Minter.new :template => 's.rdd'
         | 
| 16 | 
            +
                  assert_equal(0, n.send(:min))
         | 
| 17 | 
            +
                  assert_equal(100, n.send(:max))
         | 
| 18 | 
            +
                end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
                should "generate quasi-random counters for type 'r'" do
         | 
| 21 | 
            +
                  n = Noid::Minter.new :template => 's.rd'
         | 
| 22 | 
            +
                  assert_equal((0..9).map { |x| {:value => x, :max => (x + 1)} }, n.send(:s))
         | 
| 23 | 
            +
             | 
| 24 | 
            +
                  n = Noid::Minter.new :template => 's.rdde'
         | 
| 25 | 
            +
                  s = n.send(:s)
         | 
| 26 | 
            +
                  assert_contains(s, {:value => 2890, :max => 2900})
         | 
| 27 | 
            +
                end
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                should "generate random sequence for type 'r'" do
         | 
| 30 | 
            +
                  n = Noid::Minter.new :template => 's.rd' 
         | 
| 31 | 
            +
                  a = 10.times.map { |i| n.mint }
         | 
| 32 | 
            +
             | 
| 33 | 
            +
                  10.times do |i|
         | 
| 34 | 
            +
                    assert_contains(a, "s#{i}")
         | 
| 35 | 
            +
                  end
         | 
| 36 | 
            +
             | 
| 37 | 
            +
                end
         | 
| 38 | 
            +
             | 
| 39 | 
            +
                should "generate numeric sequence for type 's'" do
         | 
| 40 | 
            +
                  n = Noid::Minter.new :template => 's.sd'
         | 
| 41 | 
            +
                  10.times do |i|
         | 
| 42 | 
            +
                    assert_equal("s#{i}", n.mint)
         | 
| 43 | 
            +
                  end
         | 
| 44 | 
            +
                end
         | 
| 45 | 
            +
             | 
| 46 | 
            +
                should "generate extended sequence for type 's'" do
         | 
| 47 | 
            +
                  n = Noid::Minter.new :template => 's.se'
         | 
| 48 | 
            +
                  10.times do |i|
         | 
| 49 | 
            +
                    assert_equal("s#{i}", n.mint)
         | 
| 50 | 
            +
                  end
         | 
| 51 | 
            +
                    assert_equal("sb", n.mint)
         | 
| 52 | 
            +
                  10.times { n.mint }  
         | 
| 53 | 
            +
                    assert_equal("sq", n.mint)
         | 
| 54 | 
            +
             | 
| 55 | 
            +
                end
         | 
| 56 | 
            +
             | 
| 57 | 
            +
                should "raise an exception when overflowing sequence" do
         | 
| 58 | 
            +
                  n = Noid::Minter.new :template => 's.sd'
         | 
| 59 | 
            +
                  10.times do |i|
         | 
| 60 | 
            +
                    assert_equal("s#{i}", n.mint)
         | 
| 61 | 
            +
                  end
         | 
| 62 | 
            +
             | 
| 63 | 
            +
                  assert_raise Exception do
         | 
| 64 | 
            +
                    n.mint
         | 
| 65 | 
            +
                  end
         | 
| 66 | 
            +
                end
         | 
| 67 | 
            +
             | 
| 68 | 
            +
                should "generate sequence for type 's' with checkdigit" do
         | 
| 69 | 
            +
                  n = Noid::Minter.new :template => 's.sdk'
         | 
| 70 | 
            +
                  assert_equal('s0s', n.mint)
         | 
| 71 | 
            +
                  assert_equal('s1v', n.mint)
         | 
| 72 | 
            +
                  assert_equal('s2x', n.mint)
         | 
| 73 | 
            +
                end
         | 
| 74 | 
            +
             | 
| 75 | 
            +
                should "generate sequence for type 'z' with checkdigit" do
         | 
| 76 | 
            +
                  n = Noid::Minter.new :template => 'z.zdk'
         | 
| 77 | 
            +
                  assert_equal('z0z', n.mint)
         | 
| 78 | 
            +
                  assert_equal('z11', n.mint)
         | 
| 79 | 
            +
                  assert_equal('z23', n.mint)
         | 
| 80 | 
            +
                end
         | 
| 81 | 
            +
                should "generate sequence for type 'z', adding new digits as needed" do
         | 
| 82 | 
            +
                  n = Noid::Minter.new :template => 'z.zdk'
         | 
| 83 | 
            +
                  assert_equal('z0z', n.mint)
         | 
| 84 | 
            +
                  assert_equal('z11', n.mint)
         | 
| 85 | 
            +
                  assert_equal('z23', n.mint)
         | 
| 86 | 
            +
                  10.times { n.mint }
         | 
| 87 | 
            +
                  assert_equal('z13b', n.mint)
         | 
| 88 | 
            +
                end
         | 
| 89 | 
            +
             | 
| 90 | 
            +
                should "generate sequence for type 'z', adding new xdigits as needed" do
         | 
| 91 | 
            +
                  n = Noid::Minter.new :template => 'z.zdek'
         | 
| 92 | 
            +
                  assert_equal('z00z', n.mint)
         | 
| 93 | 
            +
                  assert_equal('z012', n.mint)
         | 
| 94 | 
            +
                  assert_equal('z025', n.mint)
         | 
| 95 | 
            +
                  10.times { 
         | 
| 96 | 
            +
                    assert_match(/^z[0-9]/, n.mint) 
         | 
| 97 | 
            +
                  }
         | 
| 98 | 
            +
                  assert_equal('z0f9', n.mint)
         | 
| 99 | 
            +
                  100.times { 
         | 
| 100 | 
            +
                    assert_match(/^z[0-9]/, n.mint) 
         | 
| 101 | 
            +
                  }
         | 
| 102 | 
            +
                  assert_equal('z3xz', n.mint)
         | 
| 103 | 
            +
                  1000.times { 
         | 
| 104 | 
            +
                    assert_match(/^z[0-9]/, n.mint) 
         | 
| 105 | 
            +
                  }
         | 
| 106 | 
            +
                  assert_equal('z38fs', n.mint)
         | 
| 107 | 
            +
                end
         | 
| 108 | 
            +
              end
         | 
| 109 | 
            +
            end
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,137 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification 
         | 
| 2 | 
            +
            name: noid
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            +
              hash: 29
         | 
| 5 | 
            +
              prerelease: false
         | 
| 6 | 
            +
              segments: 
         | 
| 7 | 
            +
              - 0
         | 
| 8 | 
            +
              - 0
         | 
| 9 | 
            +
              - 1
         | 
| 10 | 
            +
              version: 0.0.1
         | 
| 11 | 
            +
            platform: ruby
         | 
| 12 | 
            +
            authors: 
         | 
| 13 | 
            +
            - Chris Beer
         | 
| 14 | 
            +
            autorequire: 
         | 
| 15 | 
            +
            bindir: bin
         | 
| 16 | 
            +
            cert_chain: []
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            date: 2010-12-12 00:00:00 -05:00
         | 
| 19 | 
            +
            default_executable: 
         | 
| 20 | 
            +
            dependencies: 
         | 
| 21 | 
            +
            - !ruby/object:Gem::Dependency 
         | 
| 22 | 
            +
              type: :development
         | 
| 23 | 
            +
              prerelease: false
         | 
| 24 | 
            +
              name: shoulda
         | 
| 25 | 
            +
              version_requirements: &id001 !ruby/object:Gem::Requirement 
         | 
| 26 | 
            +
                none: false
         | 
| 27 | 
            +
                requirements: 
         | 
| 28 | 
            +
                - - ">="
         | 
| 29 | 
            +
                  - !ruby/object:Gem::Version 
         | 
| 30 | 
            +
                    hash: 3
         | 
| 31 | 
            +
                    segments: 
         | 
| 32 | 
            +
                    - 0
         | 
| 33 | 
            +
                    version: "0"
         | 
| 34 | 
            +
              requirement: *id001
         | 
| 35 | 
            +
            - !ruby/object:Gem::Dependency 
         | 
| 36 | 
            +
              type: :development
         | 
| 37 | 
            +
              prerelease: false
         | 
| 38 | 
            +
              name: bundler
         | 
| 39 | 
            +
              version_requirements: &id002 !ruby/object:Gem::Requirement 
         | 
| 40 | 
            +
                none: false
         | 
| 41 | 
            +
                requirements: 
         | 
| 42 | 
            +
                - - ~>
         | 
| 43 | 
            +
                  - !ruby/object:Gem::Version 
         | 
| 44 | 
            +
                    hash: 23
         | 
| 45 | 
            +
                    segments: 
         | 
| 46 | 
            +
                    - 1
         | 
| 47 | 
            +
                    - 0
         | 
| 48 | 
            +
                    - 0
         | 
| 49 | 
            +
                    version: 1.0.0
         | 
| 50 | 
            +
              requirement: *id002
         | 
| 51 | 
            +
            - !ruby/object:Gem::Dependency 
         | 
| 52 | 
            +
              type: :development
         | 
| 53 | 
            +
              prerelease: false
         | 
| 54 | 
            +
              name: jeweler
         | 
| 55 | 
            +
              version_requirements: &id003 !ruby/object:Gem::Requirement 
         | 
| 56 | 
            +
                none: false
         | 
| 57 | 
            +
                requirements: 
         | 
| 58 | 
            +
                - - ~>
         | 
| 59 | 
            +
                  - !ruby/object:Gem::Version 
         | 
| 60 | 
            +
                    hash: 1
         | 
| 61 | 
            +
                    segments: 
         | 
| 62 | 
            +
                    - 1
         | 
| 63 | 
            +
                    - 5
         | 
| 64 | 
            +
                    - 1
         | 
| 65 | 
            +
                    version: 1.5.1
         | 
| 66 | 
            +
              requirement: *id003
         | 
| 67 | 
            +
            - !ruby/object:Gem::Dependency 
         | 
| 68 | 
            +
              type: :development
         | 
| 69 | 
            +
              prerelease: false
         | 
| 70 | 
            +
              name: rcov
         | 
| 71 | 
            +
              version_requirements: &id004 !ruby/object:Gem::Requirement 
         | 
| 72 | 
            +
                none: false
         | 
| 73 | 
            +
                requirements: 
         | 
| 74 | 
            +
                - - ">="
         | 
| 75 | 
            +
                  - !ruby/object:Gem::Version 
         | 
| 76 | 
            +
                    hash: 3
         | 
| 77 | 
            +
                    segments: 
         | 
| 78 | 
            +
                    - 0
         | 
| 79 | 
            +
                    version: "0"
         | 
| 80 | 
            +
              requirement: *id004
         | 
| 81 | 
            +
            description: ""
         | 
| 82 | 
            +
            email: chris@cbeer.info
         | 
| 83 | 
            +
            executables: []
         | 
| 84 | 
            +
             | 
| 85 | 
            +
            extensions: []
         | 
| 86 | 
            +
             | 
| 87 | 
            +
            extra_rdoc_files: 
         | 
| 88 | 
            +
            - LICENSE.txt
         | 
| 89 | 
            +
            - README.rdoc
         | 
| 90 | 
            +
            files: 
         | 
| 91 | 
            +
            - .document
         | 
| 92 | 
            +
            - Gemfile
         | 
| 93 | 
            +
            - LICENSE.txt
         | 
| 94 | 
            +
            - README.rdoc
         | 
| 95 | 
            +
            - Rakefile
         | 
| 96 | 
            +
            - VERSION
         | 
| 97 | 
            +
            - lib/noid.rb
         | 
| 98 | 
            +
            - lib/noid/minter.rb
         | 
| 99 | 
            +
            - test/helper.rb
         | 
| 100 | 
            +
            - test/test_noid.rb
         | 
| 101 | 
            +
            has_rdoc: true
         | 
| 102 | 
            +
            homepage: http://github.com/cbeer/noid
         | 
| 103 | 
            +
            licenses: 
         | 
| 104 | 
            +
            - MIT
         | 
| 105 | 
            +
            post_install_message: 
         | 
| 106 | 
            +
            rdoc_options: []
         | 
| 107 | 
            +
             | 
| 108 | 
            +
            require_paths: 
         | 
| 109 | 
            +
            - lib
         | 
| 110 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         | 
| 111 | 
            +
              none: false
         | 
| 112 | 
            +
              requirements: 
         | 
| 113 | 
            +
              - - ">="
         | 
| 114 | 
            +
                - !ruby/object:Gem::Version 
         | 
| 115 | 
            +
                  hash: 3
         | 
| 116 | 
            +
                  segments: 
         | 
| 117 | 
            +
                  - 0
         | 
| 118 | 
            +
                  version: "0"
         | 
| 119 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         | 
| 120 | 
            +
              none: false
         | 
| 121 | 
            +
              requirements: 
         | 
| 122 | 
            +
              - - ">="
         | 
| 123 | 
            +
                - !ruby/object:Gem::Version 
         | 
| 124 | 
            +
                  hash: 3
         | 
| 125 | 
            +
                  segments: 
         | 
| 126 | 
            +
                  - 0
         | 
| 127 | 
            +
                  version: "0"
         | 
| 128 | 
            +
            requirements: []
         | 
| 129 | 
            +
             | 
| 130 | 
            +
            rubyforge_project: 
         | 
| 131 | 
            +
            rubygems_version: 1.3.7
         | 
| 132 | 
            +
            signing_key: 
         | 
| 133 | 
            +
            specification_version: 3
         | 
| 134 | 
            +
            summary: Nice Opaque Identifier
         | 
| 135 | 
            +
            test_files: 
         | 
| 136 | 
            +
            - test/helper.rb
         | 
| 137 | 
            +
            - test/test_noid.rb
         |