├── .document ├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── gitmodel.gemspec ├── lib ├── gitmodel.rb └── gitmodel │ ├── errors.rb │ ├── index.rb │ ├── persistable.rb │ └── transaction.rb └── spec ├── gitmodel ├── index_spec.rb ├── persistable_spec.rb └── transaction_spec.rb ├── gitmodel_spec.rb ├── spec_helper.rb └── support └── setup.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/Rakefile -------------------------------------------------------------------------------- /gitmodel.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/gitmodel.gemspec -------------------------------------------------------------------------------- /lib/gitmodel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/lib/gitmodel.rb -------------------------------------------------------------------------------- /lib/gitmodel/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/lib/gitmodel/errors.rb -------------------------------------------------------------------------------- /lib/gitmodel/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/lib/gitmodel/index.rb -------------------------------------------------------------------------------- /lib/gitmodel/persistable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/lib/gitmodel/persistable.rb -------------------------------------------------------------------------------- /lib/gitmodel/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/lib/gitmodel/transaction.rb -------------------------------------------------------------------------------- /spec/gitmodel/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/spec/gitmodel/index_spec.rb -------------------------------------------------------------------------------- /spec/gitmodel/persistable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/spec/gitmodel/persistable_spec.rb -------------------------------------------------------------------------------- /spec/gitmodel/transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/spec/gitmodel/transaction_spec.rb -------------------------------------------------------------------------------- /spec/gitmodel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/spec/gitmodel_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pauldowman/gitmodel/HEAD/spec/support/setup.rb --------------------------------------------------------------------------------