├── README.textile ├── Rakefile ├── init.rb ├── install.rb ├── lib ├── rails_on_pg.rb └── rails_on_pg │ ├── foreign_keys.rb │ ├── functions.rb │ └── views.rb ├── test ├── foreign_keys_test.rb ├── functions_test.rb ├── schema.rb ├── test_helper.rb └── views_test.rb └── uninstall.rb /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/README.textile -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/Rakefile -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require 'rails_on_pg' 2 | -------------------------------------------------------------------------------- /install.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/rails_on_pg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/lib/rails_on_pg.rb -------------------------------------------------------------------------------- /lib/rails_on_pg/foreign_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/lib/rails_on_pg/foreign_keys.rb -------------------------------------------------------------------------------- /lib/rails_on_pg/functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/lib/rails_on_pg/functions.rb -------------------------------------------------------------------------------- /lib/rails_on_pg/views.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/lib/rails_on_pg/views.rb -------------------------------------------------------------------------------- /test/foreign_keys_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/test/foreign_keys_test.rb -------------------------------------------------------------------------------- /test/functions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/test/functions_test.rb -------------------------------------------------------------------------------- /test/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/test/schema.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/views_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3t/rails_on_pg/HEAD/test/views_test.rb -------------------------------------------------------------------------------- /uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | --------------------------------------------------------------------------------