├── .gitignore ├── .rspec ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── javascripts │ │ ├── application.js │ │ ├── bootstrap.js.coffee │ │ ├── contacts.js.coffee │ │ ├── sessions.js.coffee │ │ └── users.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bootstrap_and_overrides.css │ │ ├── contacts.css.scss │ │ ├── sessions.css.scss │ │ └── users.css.scss ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── contacts_controller.rb │ ├── news_releases_controller.rb │ ├── sessions_controller.rb │ └── users_controller.rb ├── helpers │ ├── application_helper.rb │ ├── contacts_helper.rb │ ├── sessions_helper.rb │ └── users_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── concerns │ │ └── .keep │ ├── contact.rb │ ├── news_release.rb │ ├── phone.rb │ └── user.rb └── views │ ├── contacts │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── layouts │ └── application.html.erb │ ├── news_releases │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── sessions │ └── new.html.erb │ └── users │ ├── index.html.erb │ └── new.html.erb ├── bin ├── bundle ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── en.bootstrap.yml │ └── en.yml └── routes.rb ├── db ├── migrate │ ├── 20130531105637_create_contacts.rb │ ├── 20130602215408_create_phones.rb │ ├── 20130604024251_create_users.rb │ ├── 20130604031547_add_admin_to_users.rb │ └── 20130729093458_create_news_releases.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── spec ├── controllers │ ├── contacts_controller_spec.rb │ ├── news_releases_controller_spec.rb │ └── users_controller_spec.rb ├── factories │ ├── contacts.rb │ ├── news_releases.rb │ ├── phones.rb │ └── users.rb ├── features │ ├── about_us_spec.rb │ ├── news_releases_spec.rb │ └── users_spec.rb ├── models │ ├── contact_spec.rb │ ├── news_release_spec.rb │ └── phone_spec.rb ├── spec_helper.rb └── support │ ├── login_macros.rb │ ├── matchers │ └── require_login.rb │ └── shared_db_connection.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/contacts.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/javascripts/contacts.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/sessions.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/javascripts/sessions.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/users.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/javascripts/users.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css -------------------------------------------------------------------------------- /app/assets/stylesheets/contacts.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/stylesheets/contacts.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sessions.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/stylesheets/sessions.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/assets/stylesheets/users.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/contacts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/controllers/contacts_controller.rb -------------------------------------------------------------------------------- /app/controllers/news_releases_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/controllers/news_releases_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module SessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/models/contact.rb -------------------------------------------------------------------------------- /app/models/news_release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/models/news_release.rb -------------------------------------------------------------------------------- /app/models/phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/models/phone.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/contacts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/contacts/_form.html.erb -------------------------------------------------------------------------------- /app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 |

Editing contact

2 | 3 | <%= render 'form' %> 4 | -------------------------------------------------------------------------------- /app/views/contacts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/contacts/index.html.erb -------------------------------------------------------------------------------- /app/views/contacts/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/contacts/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 |

New contact

2 | 3 | <%= render 'form' %> 4 | -------------------------------------------------------------------------------- /app/views/contacts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/contacts/show.html.erb -------------------------------------------------------------------------------- /app/views/contacts/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/contacts/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/news_releases/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/news_releases/_form.html.erb -------------------------------------------------------------------------------- /app/views/news_releases/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/news_releases/edit.html.erb -------------------------------------------------------------------------------- /app/views/news_releases/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/news_releases/index.html.erb -------------------------------------------------------------------------------- /app/views/news_releases/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/news_releases/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/news_releases/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/news_releases/new.html.erb -------------------------------------------------------------------------------- /app/views/news_releases/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/news_releases/show.html.erb -------------------------------------------------------------------------------- /app/views/news_releases/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/news_releases/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20130531105637_create_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/db/migrate/20130531105637_create_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20130602215408_create_phones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/db/migrate/20130602215408_create_phones.rb -------------------------------------------------------------------------------- /db/migrate/20130604024251_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/db/migrate/20130604024251_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20130604031547_add_admin_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/db/migrate/20130604031547_add_admin_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130729093458_create_news_releases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/db/migrate/20130729093458_create_news_releases.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/controllers/contacts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/controllers/contacts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/news_releases_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/controllers/news_releases_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/factories/contacts.rb -------------------------------------------------------------------------------- /spec/factories/news_releases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/factories/news_releases.rb -------------------------------------------------------------------------------- /spec/factories/phones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/factories/phones.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/about_us_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/features/about_us_spec.rb -------------------------------------------------------------------------------- /spec/features/news_releases_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/features/news_releases_spec.rb -------------------------------------------------------------------------------- /spec/features/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/features/users_spec.rb -------------------------------------------------------------------------------- /spec/models/contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/models/contact_spec.rb -------------------------------------------------------------------------------- /spec/models/news_release_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/models/news_release_spec.rb -------------------------------------------------------------------------------- /spec/models/phone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/models/phone_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/login_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/support/login_macros.rb -------------------------------------------------------------------------------- /spec/support/matchers/require_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/support/matchers/require_login.rb -------------------------------------------------------------------------------- /spec/support/shared_db_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydayrails/rspec_rails_4/HEAD/spec/support/shared_db_connection.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------