forked from codeforamerica/ohana-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The app was generated from a template created with the rails_apps_composer gem. Some preferences were predefined in a defaults YAML file, and the Gemfile was created via a custom recipe. My goal is to refine this template based on best practices so that future Rails apps can be created from it.
- Loading branch information
Moncef Belyamani
committed
May 29, 2013
1 parent
3920978
commit 8ff6b7b
Showing
45 changed files
with
873 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile ~/.gitignore_global | ||
|
||
# Ignore bundler config | ||
/.bundle | ||
|
||
# Ignore the default SQLite database. | ||
/db/*.sqlite3 | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
|
||
# Ignore application configuration | ||
/config/application.yml | ||
/config/config.yml | ||
/config/database.yml | ||
|
||
# Redis DB | ||
dump.rdb | ||
|
||
# Ignore test-related files | ||
/coverage.data | ||
/coverage/ | ||
.rspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ohana-api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
source 'https://rubygems.org' | ||
|
||
ruby '2.0.0' | ||
gem 'rails', '3.2.13' | ||
|
||
group :assets do | ||
gem 'sass-rails', '~> 3.2.3' | ||
gem 'coffee-rails', '~> 3.2.1' | ||
gem 'uglifier', '>= 1.0.3' | ||
end | ||
|
||
# Front end | ||
gem 'jquery-rails' | ||
gem "haml-rails", ">= 0.4" | ||
|
||
# Server for deployment | ||
gem "unicorn", ">= 4.3.1" | ||
|
||
# Test coverage | ||
gem 'coveralls', require: false | ||
|
||
# MongoDB ORM | ||
gem "mongoid", ">= 3.1.2" | ||
|
||
group :test, :development do | ||
# Testing with Rspec | ||
gem "rspec-rails", ">= 2.12.2" | ||
gem "factory_girl_rails", ">= 4.2.0" | ||
end | ||
|
||
group :test do | ||
# Testing with Rspec and Mongoid | ||
gem "database_cleaner", ">= 1.0.0.RC1" | ||
gem "mongoid-rspec", ">= 1.7.0" | ||
end | ||
|
||
group :development do | ||
# Lets you convert HTML to HAML, including ERB | ||
gem "html2haml", ">= 1.0.1" | ||
|
||
# Debugging | ||
gem "bullet" | ||
gem "quiet_assets", ">= 1.0.2" | ||
gem "better_errors", ">= 0.7.2" | ||
gem "binding_of_caller", ">= 0.7.1", :platforms => [:mri_19, :rbx] | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
actionmailer (3.2.13) | ||
actionpack (= 3.2.13) | ||
mail (~> 2.5.3) | ||
actionpack (3.2.13) | ||
activemodel (= 3.2.13) | ||
activesupport (= 3.2.13) | ||
builder (~> 3.0.0) | ||
erubis (~> 2.7.0) | ||
journey (~> 1.0.4) | ||
rack (~> 1.4.5) | ||
rack-cache (~> 1.2) | ||
rack-test (~> 0.6.1) | ||
sprockets (~> 2.2.1) | ||
activemodel (3.2.13) | ||
activesupport (= 3.2.13) | ||
builder (~> 3.0.0) | ||
activerecord (3.2.13) | ||
activemodel (= 3.2.13) | ||
activesupport (= 3.2.13) | ||
arel (~> 3.0.2) | ||
tzinfo (~> 0.3.29) | ||
activeresource (3.2.13) | ||
activemodel (= 3.2.13) | ||
activesupport (= 3.2.13) | ||
activesupport (3.2.13) | ||
i18n (= 0.6.1) | ||
multi_json (~> 1.0) | ||
arel (3.0.2) | ||
better_errors (0.9.0) | ||
coderay (>= 1.0.0) | ||
erubis (>= 2.6.6) | ||
binding_of_caller (0.7.1) | ||
debug_inspector (>= 0.0.1) | ||
builder (3.0.4) | ||
bullet (4.6.0) | ||
uniform_notifier | ||
coderay (1.0.9) | ||
coffee-rails (3.2.2) | ||
coffee-script (>= 2.2.0) | ||
railties (~> 3.2.0) | ||
coffee-script (2.2.0) | ||
coffee-script-source | ||
execjs | ||
coffee-script-source (1.6.2) | ||
colorize (0.5.8) | ||
coveralls (0.6.7) | ||
colorize | ||
multi_json (~> 1.3) | ||
rest-client | ||
simplecov (>= 0.7) | ||
thor | ||
database_cleaner (1.0.1) | ||
debug_inspector (0.0.2) | ||
diff-lcs (1.2.4) | ||
erubis (2.7.0) | ||
execjs (1.4.0) | ||
multi_json (~> 1.0) | ||
factory_girl (4.2.0) | ||
activesupport (>= 3.0.0) | ||
factory_girl_rails (4.2.1) | ||
factory_girl (~> 4.2.0) | ||
railties (>= 3.0.0) | ||
haml (4.0.3) | ||
tilt | ||
haml-rails (0.4) | ||
actionpack (>= 3.1, < 4.1) | ||
activesupport (>= 3.1, < 4.1) | ||
haml (>= 3.1, < 4.1) | ||
railties (>= 3.1, < 4.1) | ||
hike (1.2.2) | ||
hpricot (0.8.6) | ||
html2haml (1.0.1) | ||
erubis (~> 2.7.0) | ||
haml (>= 4.0.0.rc.1) | ||
hpricot (~> 0.8.6) | ||
ruby_parser (~> 3.1.1) | ||
i18n (0.6.1) | ||
journey (1.0.4) | ||
jquery-rails (2.2.1) | ||
railties (>= 3.0, < 5.0) | ||
thor (>= 0.14, < 2.0) | ||
json (1.8.0) | ||
kgio (2.8.0) | ||
mail (2.5.4) | ||
mime-types (~> 1.16) | ||
treetop (~> 1.4.8) | ||
mime-types (1.23) | ||
mongoid (3.1.4) | ||
activemodel (~> 3.2) | ||
moped (~> 1.4) | ||
origin (~> 1.0) | ||
tzinfo (~> 0.3.22) | ||
mongoid-rspec (1.8.2) | ||
mongoid (>= 3.0.1) | ||
rake | ||
rspec (>= 2.9) | ||
moped (1.5.0) | ||
multi_json (1.7.4) | ||
origin (1.1.0) | ||
polyglot (0.3.3) | ||
quiet_assets (1.0.2) | ||
railties (>= 3.1, < 5.0) | ||
rack (1.4.5) | ||
rack-cache (1.2) | ||
rack (>= 0.4) | ||
rack-ssl (1.3.3) | ||
rack | ||
rack-test (0.6.2) | ||
rack (>= 1.0) | ||
rails (3.2.13) | ||
actionmailer (= 3.2.13) | ||
actionpack (= 3.2.13) | ||
activerecord (= 3.2.13) | ||
activeresource (= 3.2.13) | ||
activesupport (= 3.2.13) | ||
bundler (~> 1.0) | ||
railties (= 3.2.13) | ||
railties (3.2.13) | ||
actionpack (= 3.2.13) | ||
activesupport (= 3.2.13) | ||
rack-ssl (~> 1.3.2) | ||
rake (>= 0.8.7) | ||
rdoc (~> 3.4) | ||
thor (>= 0.14.6, < 2.0) | ||
raindrops (0.11.0) | ||
rake (10.0.4) | ||
rdoc (3.12.2) | ||
json (~> 1.4) | ||
rest-client (1.6.7) | ||
mime-types (>= 1.16) | ||
rspec (2.13.0) | ||
rspec-core (~> 2.13.0) | ||
rspec-expectations (~> 2.13.0) | ||
rspec-mocks (~> 2.13.0) | ||
rspec-core (2.13.1) | ||
rspec-expectations (2.13.0) | ||
diff-lcs (>= 1.1.3, < 2.0) | ||
rspec-mocks (2.13.1) | ||
rspec-rails (2.13.2) | ||
actionpack (>= 3.0) | ||
activesupport (>= 3.0) | ||
railties (>= 3.0) | ||
rspec-core (~> 2.13.0) | ||
rspec-expectations (~> 2.13.0) | ||
rspec-mocks (~> 2.13.0) | ||
ruby_parser (3.1.3) | ||
sexp_processor (~> 4.1) | ||
sass (3.2.9) | ||
sass-rails (3.2.6) | ||
railties (~> 3.2.0) | ||
sass (>= 3.1.10) | ||
tilt (~> 1.3) | ||
sexp_processor (4.2.1) | ||
simplecov (0.7.1) | ||
multi_json (~> 1.0) | ||
simplecov-html (~> 0.7.1) | ||
simplecov-html (0.7.1) | ||
sprockets (2.2.2) | ||
hike (~> 1.2) | ||
multi_json (~> 1.0) | ||
rack (~> 1.0) | ||
tilt (~> 1.1, != 1.3.0) | ||
thor (0.18.1) | ||
tilt (1.4.1) | ||
treetop (1.4.12) | ||
polyglot | ||
polyglot (>= 0.3.1) | ||
tzinfo (0.3.37) | ||
uglifier (2.1.1) | ||
execjs (>= 0.3.0) | ||
multi_json (~> 1.0, >= 1.0.2) | ||
unicorn (4.6.2) | ||
kgio (~> 2.6) | ||
rack | ||
raindrops (~> 0.7) | ||
uniform_notifier (1.2.0) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
better_errors (>= 0.7.2) | ||
binding_of_caller (>= 0.7.1) | ||
bullet | ||
coffee-rails (~> 3.2.1) | ||
coveralls | ||
database_cleaner (>= 1.0.0.RC1) | ||
factory_girl_rails (>= 4.2.0) | ||
haml-rails (>= 0.4) | ||
html2haml (>= 1.0.1) | ||
jquery-rails | ||
mongoid (>= 3.1.2) | ||
mongoid-rspec (>= 1.7.0) | ||
quiet_assets (>= 1.0.2) | ||
rails (= 3.2.13) | ||
rspec-rails (>= 2.12.2) | ||
sass-rails (~> 3.2.3) | ||
uglifier (>= 1.0.3) | ||
unicorn (>= 4.3.1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env rake | ||
# Add your own tasks in files placed in lib/tasks ending in .rake, | ||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. | ||
|
||
require File.expand_path('../config/application', __FILE__) | ||
|
||
OhanaApi::Application.load_tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// This is a manifest file that'll be compiled into application.js, which will include all the files | ||
// listed below. | ||
// | ||
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, | ||
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. | ||
// | ||
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the | ||
// the compiled file. | ||
// | ||
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD | ||
// GO AFTER THE REQUIRES BELOW. | ||
// | ||
//= require jquery | ||
//= require jquery_ujs | ||
//= require_tree . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* This is a manifest file that'll be compiled into application.css, which will include all the files | ||
* listed below. | ||
* | ||
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, | ||
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. | ||
* | ||
* You're free to add application-wide styles to this file and they'll appear at the top of the | ||
* compiled file, but it's generally better to create a new file per style scope. | ||
* | ||
*= require_self | ||
*= require_tree . | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
class ApplicationController < ActionController::Base | ||
protect_from_forgery | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
module ApplicationHelper | ||
end |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>OhanaApi</title> | ||
<%= stylesheet_link_tag "application", :media => "all" %> | ||
<%= javascript_include_tag "application" %> | ||
<%= csrf_meta_tags %> | ||
</head> | ||
<body> | ||
|
||
<%= yield %> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# This file is used by Rack-based servers to start the application. | ||
|
||
require ::File.expand_path('../config/environment', __FILE__) | ||
run OhanaApi::Application |
Oops, something went wrong.