Skip to content

Commit

Permalink
Merge pull request #118 from SBA-ONE/develop
Browse files Browse the repository at this point in the history
Merging Sprint 12 onto master
  • Loading branch information
solipet authored Mar 22, 2017
2 parents 71b6df6 + d4470f1 commit 3f9d582
Show file tree
Hide file tree
Showing 231 changed files with 14,414 additions and 2,303 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,27 @@

# Ignore bundler config.
/.bundle
vendor/bundle
coverage/

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
.DS_Store

# Ignore Byebug command history file.
.byebug_history

# Ignore coverage reports
coverage

# Ignore public compiled assets
public/assets/

# Ignore .env configuration
.env*

# Ignore schema
db/schema.rb
27 changes: 27 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
AllCops:
Exclude:
- 'db/schema.rb'

Metrics/LineLength:
Max: 199

Style/BlockComments:
Enabled: false

Style/EmptyMethod:
Enabled: false

Style/Encoding:
Enabled: false

Style/FrozenStringLiteralComment:
Enabled: false

Style/LeadingCommentSpace:
Enabled: false

Style/SpaceInsideBrackets:
Enabled: false

Style/StringLiterals:
Enabled: false
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.1
2.3.3
29 changes: 23 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
source 'https://rubygems.org'


gem 'coffee-rails', '~> 4.2' # Use CoffeeScript for .coffee assets and views
gem 'dotenv-rails' # Use dotenv to load environment variables
gem 'excon-rails' # Use excon rails for http requests
gem 'font-awesome-rails', '>= 4.7.0' # Use Font Awesome for CSS Icons
gem 'i18n-js', ">= 3.0.0.rc15" #extend i18n support directly into JS
gem 'jbuilder', '~> 2.5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jquery-rails' # Use jquery as the JavaScript library
gem 'pg' # Use PostgreSQL as the database for Active Record
gem 'puma', '~> 3.0' # Use Puma as the app server
gem 'rails', '~> 5.0.0', '>= 5.0.0.1' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.1' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rb-readline' # Why is this suddenly such a problem?
gem 'sass-rails', '~> 5.0' # Use SCSS for stylesheets
gem 'turbolinks', '~> 5' # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets

# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
# gem 'turbolinks', '~> 5'

# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby


# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
Expand All @@ -24,12 +29,24 @@ gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
# gem 'capistrano-rails', group: :development

group :development, :test do
gem "brakeman", require: false # code analysis (http://brakemanscanner.org)
gem 'byebug', platform: :mri # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'rspec-rails', '~> 3.5'
gem 'capybara' # allow interaction with DOM in tests
gem 'chromedriver-helper'
# gem 'chunky_png' # read png images
gem 'jasmine-rails' # JavaScript testing
gem 'jshint'
gem 'launchy'
gem 'poltergeist'
gem 'rspec-rails', '~> 3.5' # Use RSpec for tests
gem 'rubocop' # Enforce ruby code style
gem 'selenium-webdriver'
gem 'simplecov', require: false # determine code coverage of tests
gem 'teaspoon-jasmine'
end

group :development do
gem 'better_errors'
gem 'better_errors' # show a much more friendly error page with a command line REPL
gem 'binding_of_caller' # used by better_errors to provide a REPL in the error window
gem 'listen', '~> 3.0.5'
gem 'spring' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
Expand Down
Loading

0 comments on commit 3f9d582

Please sign in to comment.