Initial commit
authorWard Vandewege <ward@clinicalfuture.com>
Fri, 4 Jan 2013 01:18:03 +0000 (20:18 -0500)
committerWard Vandewege <ward@clinicalfuture.com>
Fri, 4 Jan 2013 01:19:35 +0000 (20:19 -0500)
commit155848c15844554a5d5fd50f9577aa2e19767d9e
tree6ba9e324ca58ed925a480a95589a1a97a43ff01a
Initial commit
71 files changed:
.gitignore [new file with mode: 0644]
Capfile [new file with mode: 0644]
Gemfile [new file with mode: 0644]
Gemfile.lock [new file with mode: 0644]
README [new file with mode: 0644]
Rakefile [new file with mode: 0644]
app/assets/images/rails.png [new file with mode: 0644]
app/assets/javascripts/application.js [new file with mode: 0644]
app/assets/javascripts/collections.js.coffee [new file with mode: 0644]
app/assets/stylesheets/application.css [new file with mode: 0644]
app/assets/stylesheets/collections.css.scss [new file with mode: 0644]
app/assets/stylesheets/scaffolds.css.scss [new file with mode: 0644]
app/controllers/application_controller.rb [new file with mode: 0644]
app/controllers/orvos/v1/collections_controller.rb [new file with mode: 0644]
app/helpers/application_helper.rb [new file with mode: 0644]
app/helpers/collections_helper.rb [new file with mode: 0644]
app/mailers/.gitkeep [new file with mode: 0644]
app/models/.gitkeep [new file with mode: 0644]
app/models/collection.rb [new file with mode: 0644]
app/views/layouts/application.html.erb [new file with mode: 0644]
app/views/orvos/v1/collections/_form.html.erb [new file with mode: 0644]
app/views/orvos/v1/collections/edit.html.erb [new file with mode: 0644]
app/views/orvos/v1/collections/index.html.erb [new file with mode: 0644]
app/views/orvos/v1/collections/new.html.erb [new file with mode: 0644]
app/views/orvos/v1/collections/show.html.erb [new file with mode: 0644]
config.ru [new file with mode: 0644]
config/application.rb [new file with mode: 0644]
config/boot.rb [new file with mode: 0644]
config/database.yml.sample [new file with mode: 0644]
config/deploy.common.rb [new file with mode: 0644]
config/deploy.rb [new file with mode: 0644]
config/environment.rb [new file with mode: 0644]
config/environments/development.rb [new file with mode: 0644]
config/environments/production.rb [new file with mode: 0644]
config/environments/test.rb [new file with mode: 0644]
config/initializers/backtrace_silencers.rb [new file with mode: 0644]
config/initializers/inflections.rb [new file with mode: 0644]
config/initializers/mime_types.rb [new file with mode: 0644]
config/initializers/secret_token.rb [new file with mode: 0644]
config/initializers/session_store.rb [new file with mode: 0644]
config/initializers/wrap_parameters.rb [new file with mode: 0644]
config/locales/en.yml [new file with mode: 0644]
config/routes.rb [new file with mode: 0644]
db/migrate/20121016005009_create_collections.rb [new file with mode: 0644]
db/schema.rb [new file with mode: 0644]
db/seeds.rb [new file with mode: 0644]
doc/README_FOR_APP [new file with mode: 0644]
lib/assets/.gitkeep [new file with mode: 0644]
lib/tasks/.gitkeep [new file with mode: 0644]
log/.gitkeep [new file with mode: 0644]
public/404.html [new file with mode: 0644]
public/422.html [new file with mode: 0644]
public/500.html [new file with mode: 0644]
public/discovery/v1/apis/orvos/v1/rest [new file with mode: 0644]
public/discovery/v1/apis/orvos/v1/rest.new [new file with mode: 0644]
public/favicon.ico [new file with mode: 0644]
public/index.html [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
script/rails [new file with mode: 0755]
test/fixtures/.gitkeep [new file with mode: 0644]
test/fixtures/collections.yml [new file with mode: 0644]
test/functional/.gitkeep [new file with mode: 0644]
test/functional/collections_controller_test.rb [new file with mode: 0644]
test/integration/.gitkeep [new file with mode: 0644]
test/performance/browsing_test.rb [new file with mode: 0644]
test/test_helper.rb [new file with mode: 0644]
test/unit/.gitkeep [new file with mode: 0644]
test/unit/collection_test.rb [new file with mode: 0644]
test/unit/helpers/collections_helper_test.rb [new file with mode: 0644]
vendor/assets/stylesheets/.gitkeep [new file with mode: 0644]
vendor/plugins/.gitkeep [new file with mode: 0644]