lib/vindetta.rb in vindetta-0.2.0 vs lib/vindetta.rb in vindetta-0.3.0

- old
+ new

@@ -1,14 +1,8 @@ require "vindetta/version" +require "vindetta/generator" module Vindetta - VINS = [ - "KNAFX4A67E5095888", - "1FTRX12W18KE97487", - "2HGFA1F38BH525824", - "1C4GP64L5YB667678" - ].freeze - - def self.random - VINS.sample + def self.generate(options = {}) + Generator.generate(options) end end