Sha256: a484041de2261574f4dbf7e5d8c34226673c2a050fe131f5c0106e3e9b5a5f81
Contents?: true
Size: 728 Bytes
Versions: 3
Compression:
Stored size: 728 Bytes
Contents
# Upgrading # Upgrading from 0.5.1 to 0.6.0 * relation need to have a foreign_key and dir_model related need to have a regex with the foreign_key in params # Upgrading from 0.4.0 to 0.5.0 * Ensure you have only one definition of `file:` by dir_model # Upgrading from 0.2.0 to 0.3.0 * Model is now a module you have to change include from `include DirModel` to `include DirModel::Model` # Upgrading from 0.1.0 to 0.2.0 You have to change ``` def _generate mk_chdir "level1" do mk_chdir "level2" do copy_file :zone_image end end end ``` for a DirModel ``` class BasicDirModel include DirModel file :image, path: -> { "#{dir}/#{sub_dir}" }, name: -> { "#{image_name}.png" } end ``` see the README
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dir_model-0.6.2 | UPGRADE.md |
dir_model-0.6.1 | UPGRADE.md |
dir_model-0.6.0 | UPGRADE.md |