├── .document ├── .gitignore ├── .rspec ├── Gemfile ├── History.md ├── LICENSE.txt ├── README.md ├── Rakefile ├── VERSION ├── bricks.gemspec ├── lib ├── bricks.rb └── bricks │ ├── adapters │ └── active_record.rb │ ├── builder.rb │ ├── builder_set.rb │ └── dsl.rb ├── rails └── init.rb └── spec ├── bricks ├── adapters │ └── active_record_spec.rb └── builder_spec.rb ├── bricks_spec.rb ├── spec_helper.rb └── support └── active_record.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/Gemfile -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6.0 -------------------------------------------------------------------------------- /bricks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/bricks.gemspec -------------------------------------------------------------------------------- /lib/bricks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/lib/bricks.rb -------------------------------------------------------------------------------- /lib/bricks/adapters/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/lib/bricks/adapters/active_record.rb -------------------------------------------------------------------------------- /lib/bricks/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/lib/bricks/builder.rb -------------------------------------------------------------------------------- /lib/bricks/builder_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/lib/bricks/builder_set.rb -------------------------------------------------------------------------------- /lib/bricks/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/lib/bricks/dsl.rb -------------------------------------------------------------------------------- /rails/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/rails/init.rb -------------------------------------------------------------------------------- /spec/bricks/adapters/active_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/spec/bricks/adapters/active_record_spec.rb -------------------------------------------------------------------------------- /spec/bricks/builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/spec/bricks/builder_spec.rb -------------------------------------------------------------------------------- /spec/bricks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/spec/bricks_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojotech/bricks/HEAD/spec/support/active_record.rb --------------------------------------------------------------------------------