Sha256: 7fe076c63f9b41a1853a05378df72254f826508c3307bd1c2e76dfdbf22ab9d9
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true require 'discourse_dev' require 'rails' require 'faker' module DiscourseDev class Record DEFAULT_COUNT = 30.freeze attr_reader :model, :type def initialize(model, count = DEFAULT_COUNT) @@initialized ||= begin Faker::Discourse.unique.clear RateLimiter.disable true end @model = model @type = model.to_s @count = count @index = nil end def create! record = model.create!(data) yield(record) if block_given? end def populate! if current_count >= @count puts "Already have #{@count}+ #{type.downcase} records." Rake.application.top_level_tasks.each do |task_name| Rake::Task[task_name].reenable end Rake::Task['dev:repopulate'].invoke return end puts "Creating #{@count} sample #{type.downcase} records" @count.times do |i| @index = i create! putc "." end puts end def index @index end def current_count model.count end def self.populate! self.new.populate! end def self.random(model) offset = Faker::Number.between(from: 0, to: model.count - 1) model.offset(offset).first end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
discourse_dev-0.2.0 | lib/discourse_dev/record.rb |