├── .gitignore ├── LICENSE ├── README.markdown ├── Rakefile ├── extras └── samples.rake ├── lib └── spawn.rb ├── rails └── init.rb ├── spawn.gemspec ├── spawn.gemspec.erb └── test ├── active_record_test.rb ├── all_test.rb ├── ohm_test.rb └── sequel_test.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/Rakefile -------------------------------------------------------------------------------- /extras/samples.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/extras/samples.rake -------------------------------------------------------------------------------- /lib/spawn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/lib/spawn.rb -------------------------------------------------------------------------------- /rails/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/rails/init.rb -------------------------------------------------------------------------------- /spawn.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/spawn.gemspec -------------------------------------------------------------------------------- /spawn.gemspec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/spawn.gemspec.erb -------------------------------------------------------------------------------- /test/active_record_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/test/active_record_test.rb -------------------------------------------------------------------------------- /test/all_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/test/all_test.rb -------------------------------------------------------------------------------- /test/ohm_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/test/ohm_test.rb -------------------------------------------------------------------------------- /test/sequel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soveran/spawn/HEAD/test/sequel_test.rb --------------------------------------------------------------------------------