This plug-in aim to resolve many problems, durling rails developping about fixtures. Basic commands is simple. Each commands load or dump fixtures.
rake db:flextures:load
rake db:flextures:dump
Major different point is four.
- Fixture file prefered CSV to YAML.
- Even if, not match column's structure, loading don't stop and auto padding data.
- Fixture file name can change, if file name is not equal table name.
- Fixture data can translate to use filter, like factory girl.
- ruby2.3 higher
This program is implemented Rails Plug-in. If You want to install this plug-in. Please use bundler.
In Gemfile
gem "flextures"
And execute below commands.
bundle install
bundle exec rails generate flextures:initializer
(Development emnvoriment must be ruby2.1 higer and rails3 higher)
load command input fixtures file under "spec/fixtures/". (Loading directory can change configuration file)
rake db:flextures:load
rake db:flextures:dump
rake command can set options. For example, this option set dump file name. (Option dump only "users.csv")
rake db:flextures:dump TABLE=users
Other options...
option | description |
---|---|
TABLE | set table name |
MODEL | set model name |
DIR | set directory name |
FILE | set fixture file name |
FORMAT | change dump file format(csv or yml) |
OPTION | other options |
T | alias TABLE option |
D | alias DIR option |
F | alias FIXTURES option |
if you change table colum information next comannd regenerate (load fixture and dump) fixtures
rake db:flextures:generate T=users
Other information please see wiki ...
Fixture load function implemented for Unittes Tools (for example, RSpec, Shoulda).
describe ItemShopController do
flextures :users, :items
end
flexture function can write like a "fixture" function, implemented in RSpec. But, "flexture" function ignore columns change.
Flextures function can change load file name.
describe ItemShopController do
flextures :items, :users => :users_for_itemshop # load "users_for_itemshop.csv"
end
Other option information Please see wiki ...
In config/flextures.factory.rb
Factory filter translate fixture data and set database.
For example, this code set current time to last_login_date column.
Flextures::Factory.define :users do |f|
f.last_login_date = DateTime.now
end
This sample, generate name and sex automatically, and other tables data generate
require 'faker'
Flextures::Factory.define :users do |f|
f.name= Faker::Name.name if !f.name # gemerate name
f.sex= [0,1].shuffle.first if !f.sex # generate sex
# factory filter can generate data, use has_many association
f.items<< [ Item.new( master_item_id: 1, count: 5 ), Item.new( master_item_id: 2, count: 3 ) ]
end
if you need to convert table data into other data format, you use dump filter. (dump filter is same file as load filter)
dump filter has hash arguments, it is formatted colum name key and convert method, proc, lambda value
file is config/flextures.factory.rb
Flextures::DumpFilter.define :users, {
:encrypted_password => lambda { |v| Base64.encode64(v) }
}
Other options please see wiki ...
In config/initializers/flextures.rb
, configuration file can change load and dump directory
Flextures::Configuration.configure do |config|
# Load and dump directory change "spec/fixtures/" to "test/fixtures/"
config.load_directory = "test/fixtures/"
config.dump_directory = "test/fixtures/"
end
Other options please see wiki ...
https://github.com/baban/flextures/graphs/contributors
This software is released under the MIT Licence.