activerecord-hackery--ransack/spec/console.rb

26 lines
705 B
Ruby
Raw Permalink Normal View History

2011-03-31 00:31:39 +00:00
Bundler.setup
require 'machinist/active_record'
require 'sham'
require 'faker'
2011-04-18 15:28:19 +00:00
require 'ransack'
2011-03-31 00:31:39 +00:00
2013-12-10 09:52:46 +00:00
Dir[File.expand_path('../../spec/{helpers,support,blueprints}/*.rb', __FILE__)]
.each do |f|
2011-03-31 00:31:39 +00:00
require f
end
Sham.define do
name { Faker::Name.name }
title { Faker::Lorem.sentence }
body { Faker::Lorem.paragraph }
2013-12-10 09:52:46 +00:00
salary { |index| 30000 + (index * 1000) }
tag_name { Faker::Lorem.words(number: 3).join(' ') }
note { Faker::Lorem.words(number: 7).join(' ') }
only_admin { Faker::Lorem.words(number: 3).join(' ') }
only_search { Faker::Lorem.words(number: 3).join(' ') }
only_sort { Faker::Lorem.words(number: 3).join(' ') }
notable_id { |id| id }
2011-03-31 00:31:39 +00:00
end
Schema.create