├── .gitignore ├── .rspec ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── README.rdoc ├── Rakefile ├── app ├── assets │ ├── images │ │ └── rails.png │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ └── application.css ├── controllers │ ├── application_controller.rb │ └── notes_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ └── note.rb ├── repositories │ └── note_repository.rb └── views │ ├── layouts │ └── application.html.erb │ └── notes │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── riak.yml └── routes.rb ├── db ├── migrate │ └── notes │ │ └── 0001_update_description.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .gitkeep └── tasks │ └── .gitkeep ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script └── rails ├── spec ├── controllers │ └── notes_controller_spec.rb ├── migrations │ └── notes │ │ └── update_description_spec.rb └── spec_helper.rb └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile ~/.gitignore_global 6 | 7 | # Ignore bundler config 8 | /.bundle 9 | 10 | # Ignore the default SQLite database. 11 | /db/*.sqlite3 12 | 13 | # Ignore all logfiles and tempfiles. 14 | /log/*.log 15 | /tmp 16 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # This is an RVM Project .rvmrc file, used to automatically load the ruby 4 | # development environment upon cd'ing into the directory 5 | 6 | # First we specify our desired [@], the @gemset name is optional. 7 | environment_id="ruby-1.9.3@curator_rails_example" 8 | 9 | # 10 | # Uncomment following line if you want options to be set only for given project. 11 | # 12 | # PROJECT_JRUBY_OPTS=( --1.9 ) 13 | # 14 | # The variable PROJECT_JRUBY_OPTS requires the following to be run in shell: 15 | # 16 | # chmod +x ${rvm_path}/hooks/after_use_jruby_opts 17 | # 18 | 19 | # 20 | # First we attempt to load the desired environment directly from the environment 21 | # file. This is very fast and efficient compared to running through the entire 22 | # CLI and selector. If you want feedback on which environment was used then 23 | # insert the word 'use' after --create as this triggers verbose mode. 24 | # 25 | if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \ 26 | && -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]] 27 | then 28 | \. "${rvm_path:-$HOME/.rvm}/environments/$environment_id" 29 | 30 | if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]] 31 | then 32 | . "${rvm_path:-$HOME/.rvm}/hooks/after_use" 33 | fi 34 | else 35 | # If the environment file has not yet been created, use the RVM CLI to select. 36 | if ! rvm --create "$environment_id" 37 | then 38 | echo "Failed to create RVM environment '${environment_id}'." 39 | return 1 40 | fi 41 | fi 42 | 43 | # 44 | # If you use an RVM gemset file to install a list of gems (*.gems), you can have 45 | # it be automatically loaded. Uncomment the following and adjust the filename if 46 | # necessary. 47 | # 48 | # filename=".gems" 49 | # if [[ -s "$filename" ]] 50 | # then 51 | # rvm gemset import "$filename" | grep -v already | grep -v listed | grep -v complete | sed '/^$/d' 52 | # fi 53 | 54 | # If you use bundler, this might be useful to you: 55 | # if [[ -s Gemfile ]] && ! command -v bundle >/dev/null 56 | # then 57 | # printf "The rubygem 'bundler' is not installed. Installing it now.\n" 58 | # gem install bundler 59 | # fi 60 | # if [[ -s Gemfile ]] && command -v bundle 61 | # then 62 | # bundle install 63 | # fi 64 | 65 | if [[ $- == *i* ]] # check for interactive shells 66 | then 67 | echo "Using: $(tput setaf 2)$GEM_HOME$(tput sgr0)" # show the user the ruby and gemset they are using in green 68 | else 69 | echo "Using: $GEM_HOME" # don't use colors in interactive shells 70 | fi 71 | 72 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rails', '3.2.1' 4 | gem 'curator', '0.9.0' 5 | gem 'dynamic_form', '1.1.4' 6 | 7 | group :assets do 8 | gem 'sass-rails', '~> 3.2.3' 9 | gem 'coffee-rails', '~> 3.2.1' 10 | gem 'uglifier', '>= 1.0.3' 11 | end 12 | 13 | group :test, :development do 14 | gem 'rake_commit', '0.12.0' 15 | gem 'rspec-rails', '2.8.1' 16 | end 17 | 18 | gem 'jquery-rails', '2.1.3' 19 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | actionmailer (3.2.1) 5 | actionpack (= 3.2.1) 6 | mail (~> 2.4.0) 7 | actionpack (3.2.1) 8 | activemodel (= 3.2.1) 9 | activesupport (= 3.2.1) 10 | builder (~> 3.0.0) 11 | erubis (~> 2.7.0) 12 | journey (~> 1.0.1) 13 | rack (~> 1.4.0) 14 | rack-cache (~> 1.1) 15 | rack-test (~> 0.6.1) 16 | sprockets (~> 2.1.2) 17 | activemodel (3.2.1) 18 | activesupport (= 3.2.1) 19 | builder (~> 3.0.0) 20 | activerecord (3.2.1) 21 | activemodel (= 3.2.1) 22 | activesupport (= 3.2.1) 23 | arel (~> 3.0.0) 24 | tzinfo (~> 0.3.29) 25 | activeresource (3.2.1) 26 | activemodel (= 3.2.1) 27 | activesupport (= 3.2.1) 28 | activesupport (3.2.1) 29 | i18n (~> 0.6) 30 | multi_json (~> 1.0) 31 | arel (3.0.0) 32 | beefcake (0.3.7) 33 | builder (3.0.0) 34 | coffee-rails (3.2.2) 35 | coffee-script (>= 2.2.0) 36 | railties (~> 3.2.0) 37 | coffee-script (2.2.0) 38 | coffee-script-source 39 | execjs 40 | coffee-script-source (1.2.0) 41 | curator (0.9.0) 42 | activemodel (>= 3.0.0) 43 | activesupport (>= 3.0.0) 44 | json 45 | riak-client (>= 1.0.0) 46 | diff-lcs (1.1.3) 47 | dynamic_form (1.1.4) 48 | erubis (2.7.0) 49 | execjs (1.3.0) 50 | multi_json (~> 1.0) 51 | hike (1.2.1) 52 | i18n (0.6.0) 53 | journey (1.0.1) 54 | jquery-rails (2.1.3) 55 | railties (>= 3.1.0, < 5.0) 56 | thor (~> 0.14) 57 | json (1.6.5) 58 | mail (2.4.1) 59 | i18n (>= 0.4.0) 60 | mime-types (~> 1.16) 61 | treetop (~> 1.4.8) 62 | mime-types (1.17.2) 63 | multi_json (1.0.4) 64 | polyglot (0.3.3) 65 | rack (1.4.1) 66 | rack-cache (1.1) 67 | rack (>= 0.4) 68 | rack-ssl (1.3.2) 69 | rack 70 | rack-test (0.6.1) 71 | rack (>= 1.0) 72 | rails (3.2.1) 73 | actionmailer (= 3.2.1) 74 | actionpack (= 3.2.1) 75 | activerecord (= 3.2.1) 76 | activeresource (= 3.2.1) 77 | activesupport (= 3.2.1) 78 | bundler (~> 1.0) 79 | railties (= 3.2.1) 80 | railties (3.2.1) 81 | actionpack (= 3.2.1) 82 | activesupport (= 3.2.1) 83 | rack-ssl (~> 1.3.2) 84 | rake (>= 0.8.7) 85 | rdoc (~> 3.4) 86 | thor (~> 0.14.6) 87 | rake (0.9.2.2) 88 | rake_commit (0.12.0) 89 | rdoc (3.12) 90 | json (~> 1.4) 91 | riak-client (1.0.5) 92 | beefcake (~> 0.3.7) 93 | builder (>= 2.1.2) 94 | i18n (>= 0.4.0) 95 | multi_json (~> 1.0) 96 | rspec (2.8.0) 97 | rspec-core (~> 2.8.0) 98 | rspec-expectations (~> 2.8.0) 99 | rspec-mocks (~> 2.8.0) 100 | rspec-core (2.8.0) 101 | rspec-expectations (2.8.0) 102 | diff-lcs (~> 1.1.2) 103 | rspec-mocks (2.8.0) 104 | rspec-rails (2.8.1) 105 | actionpack (>= 3.0) 106 | activesupport (>= 3.0) 107 | railties (>= 3.0) 108 | rspec (~> 2.8.0) 109 | sass (3.1.15) 110 | sass-rails (3.2.4) 111 | railties (~> 3.2.0) 112 | sass (>= 3.1.10) 113 | tilt (~> 1.3) 114 | sprockets (2.1.2) 115 | hike (~> 1.2) 116 | rack (~> 1.0) 117 | tilt (~> 1.1, != 1.3.0) 118 | thor (0.14.6) 119 | tilt (1.3.3) 120 | treetop (1.4.10) 121 | polyglot 122 | polyglot (>= 0.3.1) 123 | tzinfo (0.3.31) 124 | uglifier (1.2.3) 125 | execjs (>= 0.3.0) 126 | multi_json (>= 1.0.2) 127 | 128 | PLATFORMS 129 | ruby 130 | 131 | DEPENDENCIES 132 | coffee-rails (~> 3.2.1) 133 | curator (= 0.9.0) 134 | dynamic_form (= 1.1.4) 135 | jquery-rails (= 2.1.3) 136 | rails (= 3.2.1) 137 | rake_commit (= 0.12.0) 138 | rspec-rails (= 2.8.1) 139 | sass-rails (~> 3.2.3) 140 | uglifier (>= 1.0.3) 141 | -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- 1 | == Curator Example Rails Application 2 | 3 | This is an example application for the {curator}[https://github.com/braintree/curator] model and repository framework. It shows a list of notes, and allows you to add new notes. 4 | 5 | The important bits are: 6 | 7 | 1. Adding the gem to the {Gemfile}[https://github.com/braintree/curator_rails_example/tree/master/Gemfile] 8 | 9 | 2. The {Note}[https://github.com/braintree/curator_rails_example/tree/master/app/models/note.rb] model and {NoteRepository}[https://github.com/braintree/curator_rails_example/tree/master/app/repositories/note_repository.rb] 10 | 11 | 3. The {NotesController}[https://github.com/braintree/curator_rails_example/tree/master/app/controllers/notes_controller.rb] and {view}[https://github.com/braintree/curator_rails_example/tree/master/app/views/notes/] 12 | 13 | 4. The {UpdateDescription}[https://github.com/braintree/curator_rails_example/blob/master/db/migrate/notes/0001_update_description.rb] db migration. 14 | 15 | Note: 16 | 17 | There is also a {mongodb branch}[https://github.com/braintree/curator_rails_example/tree/mongodb], which uses mongodb instead of riak. 18 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rake 2 | # Add your own tasks in files placed in lib/tasks ending in .rake, 3 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 4 | 5 | require File.expand_path('../config/application', __FILE__) 6 | 7 | CuratorRailsExample::Application.load_tasks 8 | -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | // This is a manifest file that'll be compiled into application.js, which will include all the files 2 | // listed below. 3 | // 4 | // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, 5 | // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. 6 | // 7 | // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the 8 | // the compiled file. 9 | // 10 | // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD 11 | // GO AFTER THE REQUIRES BELOW. 12 | // 13 | //= require jquery 14 | //= require jquery_ujs 15 | //= require_tree . 16 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This is a manifest file that'll be compiled into application.css, which will include all the files 3 | * listed below. 4 | * 5 | * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, 6 | * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. 7 | * 8 | * You're free to add application-wide styles to this file and they'll appear at the top of the 9 | * compiled file, but it's generally better to create a new file per style scope. 10 | * 11 | *= require_self 12 | *= require_tree . 13 | */ 14 | -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | protect_from_forgery 3 | end 4 | -------------------------------------------------------------------------------- /app/controllers/notes_controller.rb: -------------------------------------------------------------------------------- 1 | class NotesController < ActionController::Base 2 | USER_ID = 1 3 | 4 | def index 5 | @notes = NoteRepository.find_by_user_id(USER_ID) 6 | end 7 | 8 | def new 9 | @note = Note.new 10 | end 11 | 12 | def create 13 | @note = Note.new(request.POST[:note].merge(:user_id => USER_ID)) 14 | if @note.valid? 15 | NoteRepository.save(@note) 16 | redirect_to notes_path 17 | else 18 | render :new 19 | end 20 | end 21 | 22 | def show 23 | @note = NoteRepository.find_by_id(params[:id]) 24 | end 25 | end 26 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/app/mailers/.gitkeep -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/app/models/.gitkeep -------------------------------------------------------------------------------- /app/models/note.rb: -------------------------------------------------------------------------------- 1 | class Note 2 | include Curator::Model 3 | include ActiveModel::Validations 4 | attr_accessor :id, :title, :description, :user_id 5 | 6 | validates :title, :presence => true 7 | end 8 | -------------------------------------------------------------------------------- /app/repositories/note_repository.rb: -------------------------------------------------------------------------------- 1 | class NoteRepository 2 | include Curator::Repository 3 | 4 | indexed_fields :user_id 5 | end 6 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CuratorRailsExample 5 | <%= stylesheet_link_tag "application", :media => "all" %> 6 | <%= javascript_include_tag "application" %> 7 | <%= csrf_meta_tags %> 8 | 9 | 10 | 11 | <%= yield %> 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/views/notes/index.html.erb: -------------------------------------------------------------------------------- 1 |

Notes

2 | 3 | 8 | 9 | <%= link_to "New Note", new_note_path %> 10 | -------------------------------------------------------------------------------- /app/views/notes/new.html.erb: -------------------------------------------------------------------------------- 1 |

New Note

2 | <%= form_for @note do |f| %> 3 | <%= f.error_messages %> 4 |
5 |
<%= f.label :title %>
6 |
<%= f.text_field :title %>
7 |
<%= f.label :description %>
8 |
<%= f.text_area :description, :size => "60x12" %>
9 |

If you create the note at version 0, it will run through migration 1 the next time it is read. If you create it at version 1, no migrations will run.

10 |
<%= f.label :version %>
11 |
<%= f.select :version, :options => [0, 1] %>
12 |
13 | <%= f.submit "Create" %> 14 | <% end %> 15 | -------------------------------------------------------------------------------- /app/views/notes/show.html.erb: -------------------------------------------------------------------------------- 1 |

Note

2 | 3 |
Id: <%= @note.id %>
4 |
Title: <%= @note.title %>
5 |
Description: <%= @note.description %>
6 | 7 | <%= link_to "Back to index", notes_path %> 8 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require ::File.expand_path('../config/environment', __FILE__) 4 | run CuratorRailsExample::Application 5 | -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path('../boot', __FILE__) 2 | 3 | require "action_controller/railtie" 4 | require "action_mailer/railtie" 5 | require "active_resource/railtie" 6 | require "rails/test_unit/railtie" 7 | require "sprockets/railtie" 8 | 9 | 10 | if defined?(Bundler) 11 | # If you precompile assets before deploying to production, use this line 12 | Bundler.require(*Rails.groups(:assets => %w(development test))) 13 | # If you want your assets lazily compiled in production, use this line 14 | # Bundler.require(:default, :assets, Rails.env) 15 | end 16 | 17 | module CuratorRailsExample 18 | class Application < Rails::Application 19 | # Settings in config/environments/* take precedence over those specified here. 20 | # Application configuration should go into files in config/initializers 21 | # -- all .rb files in that directory are automatically loaded. 22 | 23 | # Custom directories with classes and modules you want to be autoloadable. 24 | # config.autoload_paths += %W(#{config.root}/extras) 25 | 26 | # Only load the plugins named here, in the order given (default is alphabetical). 27 | # :all can be used as a placeholder for all plugins not explicitly named. 28 | # config.plugins = [ :exception_notification, :ssl_requirement, :all ] 29 | 30 | # Activate observers that should always be running. 31 | # config.active_record.observers = :cacher, :garbage_collector, :forum_observer 32 | 33 | # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. 34 | # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. 35 | # config.time_zone = 'Central Time (US & Canada)' 36 | 37 | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. 38 | # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] 39 | # config.i18n.default_locale = :de 40 | 41 | # Configure the default encoding used in templates for Ruby 1.9. 42 | config.encoding = "utf-8" 43 | 44 | # Configure sensitive parameters which will be filtered from the log file. 45 | config.filter_parameters += [:password] 46 | 47 | # Use SQL instead of Active Record's schema dumper when creating the database. 48 | # This is necessary if your schema can't be completely dumped by the schema dumper, 49 | # like if you have constraints or database-specific column types 50 | # config.active_record.schema_format = :sql 51 | 52 | # Enforce whitelist mode for mass assignment. 53 | # This will create an empty whitelist of attributes available for mass-assignment for all models 54 | # in your app. As such, your models will need to explicitly whitelist or blacklist accessible 55 | # parameters by using an attr_accessible or attr_protected declaration. 56 | # config.active_record.whitelist_attributes = true 57 | 58 | # Enable the asset pipeline 59 | config.assets.enabled = true 60 | 61 | # Version of your assets, change this if you want to expire all your assets 62 | config.assets.version = '1.0' 63 | end 64 | end 65 | -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | 3 | # Set up gems listed in the Gemfile. 4 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 5 | 6 | require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE']) 7 | -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- 1 | # SQLite version 3.x 2 | # gem install sqlite3 3 | # 4 | # Ensure the SQLite 3 gem is defined in your Gemfile 5 | # gem 'sqlite3' 6 | development: 7 | adapter: sqlite3 8 | database: db/development.sqlite3 9 | pool: 5 10 | timeout: 5000 11 | 12 | # Warning: The database defined as "test" will be erased and 13 | # re-generated from your development database when you run "rake". 14 | # Do not set this db to the same as development or production. 15 | test: 16 | adapter: sqlite3 17 | database: db/test.sqlite3 18 | pool: 5 19 | timeout: 5000 20 | 21 | production: 22 | adapter: sqlite3 23 | database: db/production.sqlite3 24 | pool: 5 25 | timeout: 5000 26 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the rails application 2 | require File.expand_path('../application', __FILE__) 3 | 4 | # Initialize the rails application 5 | CuratorRailsExample::Application.initialize! 6 | -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- 1 | CuratorRailsExample::Application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb 3 | 4 | # In the development environment your application's code is reloaded on 5 | # every request. This slows down response time but is perfect for development 6 | # since you don't have to restart the web server when you make code changes. 7 | config.cache_classes = false 8 | 9 | # Log error messages when you accidentally call methods on nil. 10 | config.whiny_nils = true 11 | 12 | # Show full error reports and disable caching 13 | config.consider_all_requests_local = true 14 | config.action_controller.perform_caching = false 15 | 16 | # Don't care if the mailer can't send 17 | config.action_mailer.raise_delivery_errors = false 18 | 19 | # Print deprecation notices to the Rails logger 20 | config.active_support.deprecation = :log 21 | 22 | # Only use best-standards-support built into browsers 23 | config.action_dispatch.best_standards_support = :builtin 24 | 25 | # Raise exception on mass assignment protection for Active Record models 26 | # config.active_record.mass_assignment_sanitizer = :strict 27 | 28 | # Log the query plan for queries taking more than this (works 29 | # with SQLite, MySQL, and PostgreSQL) 30 | # config.active_record.auto_explain_threshold_in_seconds = 0.5 31 | 32 | # Do not compress assets 33 | config.assets.compress = false 34 | 35 | # Expands the lines which load the assets 36 | config.assets.debug = true 37 | end 38 | -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- 1 | CuratorRailsExample::Application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb 3 | 4 | # Code is not reloaded between requests 5 | config.cache_classes = true 6 | 7 | # Full error reports are disabled and caching is turned on 8 | config.consider_all_requests_local = false 9 | config.action_controller.perform_caching = true 10 | 11 | # Disable Rails's static asset server (Apache or nginx will already do this) 12 | config.serve_static_assets = false 13 | 14 | # Compress JavaScripts and CSS 15 | config.assets.compress = true 16 | 17 | # Don't fallback to assets pipeline if a precompiled asset is missed 18 | config.assets.compile = false 19 | 20 | # Generate digests for assets URLs 21 | config.assets.digest = true 22 | 23 | # Defaults to Rails.root.join("public/assets") 24 | # config.assets.manifest = YOUR_PATH 25 | 26 | # Specifies the header that your server uses for sending files 27 | # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache 28 | # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx 29 | 30 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 31 | # config.force_ssl = true 32 | 33 | # See everything in the log (default is :info) 34 | # config.log_level = :debug 35 | 36 | # Prepend all log lines with the following tags 37 | # config.log_tags = [ :subdomain, :uuid ] 38 | 39 | # Use a different logger for distributed setups 40 | # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) 41 | 42 | # Use a different cache store in production 43 | # config.cache_store = :mem_cache_store 44 | 45 | # Enable serving of images, stylesheets, and JavaScripts from an asset server 46 | # config.action_controller.asset_host = "http://assets.example.com" 47 | 48 | # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added) 49 | # config.assets.precompile += %w( search.js ) 50 | 51 | # Disable delivery errors, bad email addresses will be ignored 52 | # config.action_mailer.raise_delivery_errors = false 53 | 54 | # Enable threaded mode 55 | # config.threadsafe! 56 | 57 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 58 | # the I18n.default_locale when a translation can not be found) 59 | config.i18n.fallbacks = true 60 | 61 | # Send deprecation notices to registered listeners 62 | config.active_support.deprecation = :notify 63 | 64 | # Log the query plan for queries taking more than this (works 65 | # with SQLite, MySQL, and PostgreSQL) 66 | # config.active_record.auto_explain_threshold_in_seconds = 0.5 67 | end 68 | -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- 1 | CuratorRailsExample::Application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb 3 | 4 | # The test environment is used exclusively to run your application's 5 | # test suite. You never need to work with it otherwise. Remember that 6 | # your test database is "scratch space" for the test suite and is wiped 7 | # and recreated between test runs. Don't rely on the data there! 8 | config.cache_classes = true 9 | 10 | # Configure static asset server for tests with Cache-Control for performance 11 | config.serve_static_assets = true 12 | config.static_cache_control = "public, max-age=3600" 13 | 14 | # Log error messages when you accidentally call methods on nil 15 | config.whiny_nils = true 16 | 17 | # Show full error reports and disable caching 18 | config.consider_all_requests_local = true 19 | config.action_controller.perform_caching = false 20 | 21 | # Raise exceptions instead of rendering exception templates 22 | config.action_dispatch.show_exceptions = false 23 | 24 | # Disable request forgery protection in test environment 25 | config.action_controller.allow_forgery_protection = false 26 | 27 | # Tell Action Mailer not to deliver emails to the real world. 28 | # The :test delivery method accumulates sent emails in the 29 | # ActionMailer::Base.deliveries array. 30 | config.action_mailer.delivery_method = :test 31 | 32 | # Raise exception on mass assignment protection for Active Record models 33 | # config.active_record.mass_assignment_sanitizer = :strict 34 | 35 | # Print deprecation notices to the stderr 36 | config.active_support.deprecation = :stderr 37 | end 38 | -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format 4 | # (all these examples are active by default): 5 | # ActiveSupport::Inflector.inflections do |inflect| 6 | # inflect.plural /^(ox)$/i, '\1en' 7 | # inflect.singular /^(ox)en/i, '\1' 8 | # inflect.irregular 'person', 'people' 9 | # inflect.uncountable %w( fish sheep ) 10 | # end 11 | # 12 | # These inflection rules are supported but not enabled by default: 13 | # ActiveSupport::Inflector.inflections do |inflect| 14 | # inflect.acronym 'RESTful' 15 | # end 16 | -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | # Mime::Type.register_alias "text/html", :iphone 6 | -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Your secret key for verifying the integrity of signed cookies. 4 | # If you change this key, all old signed cookies will become invalid! 5 | # Make sure the secret is at least 30 characters and all random, 6 | # no regular words or you'll be exposed to dictionary attacks. 7 | CuratorRailsExample::Application.config.secret_token = 'c60cdd6add94d45ee44ee08a0d46ddf82424caa23afb272c213a5dc87e8502610f46bfbe691c9402b9070e7fc405aec62857eb5f9d7740bcbf284183a5fb2c1d' 8 | -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | CuratorRailsExample::Application.config.session_store :cookie_store, key: '_curator_rails_example_session' 4 | 5 | # Use the database for sessions instead of the cookie-based default, 6 | # which shouldn't be used to store highly confidential information 7 | # (create the session table with "rails generate session_migration") 8 | # CuratorRailsExample::Application.config.session_store :active_record_store 9 | -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | # 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] 9 | end 10 | 11 | # Disable root element in JSON by default. 12 | ActiveSupport.on_load(:active_record) do 13 | self.include_root_in_json = false 14 | end 15 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Sample localization file for English. Add more files in this directory for other locales. 2 | # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. 3 | 4 | en: 5 | hello: "Hello world" 6 | -------------------------------------------------------------------------------- /config/riak.yml: -------------------------------------------------------------------------------- 1 | development: 2 | :http_port: 8098 3 | :host: localhost 4 | test: 5 | :http_port: 8098 6 | :host: localhost 7 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | CuratorRailsExample::Application.routes.draw do 2 | resources :notes 3 | root :to => 'notes#index' 4 | 5 | # The priority is based upon order of creation: 6 | # first created -> highest priority. 7 | 8 | # Sample of regular route: 9 | # match 'products/:id' => 'catalog#view' 10 | # Keep in mind you can assign values other than :controller and :action 11 | 12 | # Sample of named route: 13 | # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase 14 | # This route can be invoked with purchase_url(:id => product.id) 15 | 16 | # Sample resource route (maps HTTP verbs to controller actions automatically): 17 | # resources :products 18 | 19 | # Sample resource route with options: 20 | # resources :products do 21 | # member do 22 | # get 'short' 23 | # post 'toggle' 24 | # end 25 | # 26 | # collection do 27 | # get 'sold' 28 | # end 29 | # end 30 | 31 | # Sample resource route with sub-resources: 32 | # resources :products do 33 | # resources :comments, :sales 34 | # resource :seller 35 | # end 36 | 37 | # Sample resource route with more complex sub-resources 38 | # resources :products do 39 | # resources :comments 40 | # resources :sales do 41 | # get 'recent', :on => :collection 42 | # end 43 | # end 44 | 45 | # Sample resource route within a namespace: 46 | # namespace :admin do 47 | # # Directs /admin/products/* to Admin::ProductsController 48 | # # (app/controllers/admin/products_controller.rb) 49 | # resources :products 50 | # end 51 | 52 | # You can have the root of your site routed with "root" 53 | # just remember to delete public/index.html. 54 | # root :to => 'welcome#index' 55 | 56 | # See how all your routes lay out with "rake routes" 57 | 58 | # This is a legacy wild controller route that's not recommended for RESTful applications. 59 | # Note: This route will make all actions in every controller accessible via GET requests. 60 | # match ':controller(/:action(/:id))(.:format)' 61 | end 62 | -------------------------------------------------------------------------------- /db/migrate/notes/0001_update_description.rb: -------------------------------------------------------------------------------- 1 | class UpdateDescription < Curator::Migration 2 | def migrate(attributes) 3 | attributes.merge(:description => attributes[:description].to_s + " -- Passed through migration 1") 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | # This file should contain all the record creation needed to seed the database with its default values. 2 | # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). 3 | # 4 | # Examples: 5 | # 6 | # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) 7 | # Mayor.create(name: 'Emanuel', city: cities.first) 8 | -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- 1 | Use this README file to introduce your application and point to useful places in the API for learning more. 2 | Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries. 3 | -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/lib/assets/.gitkeep -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/lib/tasks/.gitkeep -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/log/.gitkeep -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

The page you were looking for doesn't exist.

23 |

You may have mistyped the address or the page may have moved.

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

The change you wanted was rejected.

23 |

Maybe you tried to change something you didn't have access to.

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

We're sorry, but something went wrong.

23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file 2 | # 3 | # To ban all spiders from the entire site uncomment the next two lines: 4 | # User-Agent: * 5 | # Disallow: / 6 | -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application. 3 | 4 | APP_PATH = File.expand_path('../../config/application', __FILE__) 5 | require File.expand_path('../../config/boot', __FILE__) 6 | require 'rails/commands' 7 | -------------------------------------------------------------------------------- /spec/controllers/notes_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe NotesController do 4 | describe "index" do 5 | it "assigns all notes" do 6 | note1 = Note.new(:title => "one", :user_id => NotesController::USER_ID) 7 | note2 = Note.new(:title => "two", :user_id => NotesController::USER_ID) 8 | 9 | NoteRepository.save(note1) 10 | NoteRepository.save(note2) 11 | 12 | get :index 13 | 14 | assigns(:notes).sort_by(&:id).should == [note1, note2].sort_by(&:id) 15 | end 16 | end 17 | 18 | describe "create" do 19 | it "creates a note" do 20 | post :create, :note => {:title => "some_name", :description => "blah blah", :version => 1} 21 | 22 | notes = NoteRepository.find_by_user_id(NotesController::USER_ID) 23 | notes.size.should == 1 24 | 25 | notes.first.title.should == "some_name" 26 | notes.first.description.should == "blah blah" 27 | end 28 | end 29 | end 30 | -------------------------------------------------------------------------------- /spec/migrations/notes/update_description_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | require Rails.root.join('db/migrate/notes/0001_update_description') 3 | 4 | describe UpdateDescription do 5 | describe "migrate" do 6 | it "ammends the description" do 7 | hash = {:description => "blah"} 8 | UpdateDescription.new(1).migrate(hash)[:description].should == "blah -- Passed through migration 1" 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | # This file is copied to spec/ when you run 'rails generate rspec:install' 2 | ENV["RAILS_ENV"] ||= 'test' 3 | require File.expand_path("../../config/environment", __FILE__) 4 | require 'rspec/rails' 5 | require 'rspec/autorun' 6 | 7 | # Requires supporting ruby files with custom matchers and macros, etc, 8 | # in spec/support/ and its subdirectories. 9 | Dir[Rails.root.join('spec/support/**/*.rb')].each {|f| require f} 10 | 11 | Curator.configure(:resettable_riak) do |config| 12 | config.bucket_prefix = 'curator_rails_example' 13 | config.environment = 'test' 14 | config.migrations_path = Rails.root.join('db/migrate') 15 | config.riak_config_file = Rails.root.join('config/riak.yml') 16 | end 17 | 18 | RSpec.configure do |config| 19 | config.before(:suite) do 20 | Curator.data_store.remove_all_keys 21 | end 22 | 23 | config.after(:each) do 24 | Curator.data_store.reset! 25 | end 26 | 27 | config.infer_base_class_for_anonymous_controllers = false 28 | end 29 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/vendor/assets/javascripts/.gitkeep -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/vendor/assets/stylesheets/.gitkeep -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/curator_rails_example/5f9a5ea08f7bfbe05af3cc1bed7c6597d8490d61/vendor/plugins/.gitkeep --------------------------------------------------------------------------------