equivalent/primal_instinct

View on GitHub
lib/primal_instinct/generator/ruby_prime.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'prime'
module PrimalInstinct
  module Generator
    class RubyPrime
      attr_reader :length

      def initialize(length)
        @length = length
      end

      def call
        Prime.first(length)
      end
    end
  end
end