Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #9 from simplybusiness/keep_it_fresh
Browse files Browse the repository at this point in the history
Keep it fresh
  • Loading branch information
Joshua Fleck authored Dec 29, 2016
2 parents e5a521c + bd4c4af commit e7c3780
Show file tree
Hide file tree
Showing 40 changed files with 399 additions and 793 deletions.
22 changes: 18 additions & 4 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# TODO: finish porting rules from .rubocop_todo.yml to this file

inherit_from: .rubocop_todo.yml

AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
Expand All @@ -13,3 +9,21 @@ Lint/UnusedMethodArgument:
Exclude:
- 'lib/flip_fab/persistence.rb'

Metrics/AbcSize:
Exclude:
- 'spec/support/test_app.rb'

Metrics/LineLength:
Enabled: false

Metrics/ModuleLength:
Exclude:
- 'spec/lib/flip_fab/contextual_feature_spec.rb'

Style/ClassAndModuleChildren:
Exclude:
- 'example/rails_app/test/test_helper.rb'

Style/Documentation:
Enabled: false

292 changes: 0 additions & 292 deletions .rubocop_todo.yml

This file was deleted.

21 changes: 2 additions & 19 deletions example/rails_app/Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2'
gem 'rails', '~> 5.0'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
Expand All @@ -10,27 +10,10 @@ gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development

# Use unicorn as the app server
gem 'unicorn'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

gem 'flip_fab', path: '../../'

gem 'rails-controller-testing', group: :test
gem 'rspec-rails', group: :test
Loading

0 comments on commit e7c3780

Please sign in to comment.