├── .gitignore ├── CHANGES ├── MIT-LICENSE ├── README ├── Rakefile ├── generators └── simply_versioned_migration │ ├── simply_versioned_migration_generator.rb │ └── templates │ └── migration.rb ├── init.rb ├── install.rb ├── lib ├── simply_versioned.rb └── version.rb ├── rdoc ├── classes │ ├── SoftwareHeretics.html │ └── SoftwareHeretics │ │ ├── ActiveRecord.html │ │ └── ActiveRecord │ │ ├── SimplyVersioned.html │ │ └── SimplyVersioned │ │ ├── BadOptions.html │ │ ├── ClassMethods.html │ │ ├── InstanceMethods.html │ │ └── VersionsProxyMethods.html ├── created.rid ├── files │ ├── README.html │ └── lib │ │ ├── simply_versioned_rb.html │ │ └── version_rb.html ├── fr_class_index.html ├── fr_file_index.html ├── fr_method_index.html ├── index.html └── rdoc-style.css ├── tasks └── simply_versioned_tasks.rake ├── test ├── simply_versioned_test.rb └── test_helper.rb └── uninstall.rb /.gitignore: -------------------------------------------------------------------------------- 1 | test/test.log 2 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/CHANGES -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/Rakefile -------------------------------------------------------------------------------- /generators/simply_versioned_migration/simply_versioned_migration_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/generators/simply_versioned_migration/simply_versioned_migration_generator.rb -------------------------------------------------------------------------------- /generators/simply_versioned_migration/templates/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/generators/simply_versioned_migration/templates/migration.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require 'simply_versioned' 2 | -------------------------------------------------------------------------------- /install.rb: -------------------------------------------------------------------------------- 1 | # Install hook code here 2 | -------------------------------------------------------------------------------- /lib/simply_versioned.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/lib/simply_versioned.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/lib/version.rb -------------------------------------------------------------------------------- /rdoc/classes/SoftwareHeretics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/classes/SoftwareHeretics.html -------------------------------------------------------------------------------- /rdoc/classes/SoftwareHeretics/ActiveRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/classes/SoftwareHeretics/ActiveRecord.html -------------------------------------------------------------------------------- /rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned.html -------------------------------------------------------------------------------- /rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned/BadOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned/BadOptions.html -------------------------------------------------------------------------------- /rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned/ClassMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned/ClassMethods.html -------------------------------------------------------------------------------- /rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned/InstanceMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned/InstanceMethods.html -------------------------------------------------------------------------------- /rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned/VersionsProxyMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/classes/SoftwareHeretics/ActiveRecord/SimplyVersioned/VersionsProxyMethods.html -------------------------------------------------------------------------------- /rdoc/created.rid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/created.rid -------------------------------------------------------------------------------- /rdoc/files/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/files/README.html -------------------------------------------------------------------------------- /rdoc/files/lib/simply_versioned_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/files/lib/simply_versioned_rb.html -------------------------------------------------------------------------------- /rdoc/files/lib/version_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/files/lib/version_rb.html -------------------------------------------------------------------------------- /rdoc/fr_class_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/fr_class_index.html -------------------------------------------------------------------------------- /rdoc/fr_file_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/fr_file_index.html -------------------------------------------------------------------------------- /rdoc/fr_method_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/fr_method_index.html -------------------------------------------------------------------------------- /rdoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/index.html -------------------------------------------------------------------------------- /rdoc/rdoc-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/rdoc/rdoc-style.css -------------------------------------------------------------------------------- /tasks/simply_versioned_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/tasks/simply_versioned_tasks.rake -------------------------------------------------------------------------------- /test/simply_versioned_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/test/simply_versioned_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmizerany/simply_versioned/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | --------------------------------------------------------------------------------