Skip to content

Commit

Permalink
Merge branch 'develop' into NC-672
Browse files Browse the repository at this point in the history
  • Loading branch information
root-beer committed Apr 28, 2017
2 parents 7ff7d22 + cb9cd79 commit 0334876
Show file tree
Hide file tree
Showing 119 changed files with 1,935 additions and 1,264 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -49,6 +49,9 @@ vendor/bower_components
/frontend/node_modules/
/frontend/typings/

# MAC system files
.DS_Store
.idea/


#emacs backup exclude during commit (clean files)
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -219,7 +219,7 @@ Style/LeadingCommentSpace:
Style/LineEndConcatenation:
Enabled: false

Style/MethodCallParentheses:
Style/MethodCallWithoutArgsParentheses:
Enabled: false

Style/MethodDefParentheses:
Expand Down
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -23,3 +23,6 @@ before_script:

script:
- bundle exec rspec

notifications:
slack: skyarch:RrGXgQVUmTe0r565gbHYMnmQ
11 changes: 8 additions & 3 deletions Gemfile
Expand Up @@ -48,6 +48,7 @@ gem "font-awesome-rails"

gem 'aws-sdk-v1'
gem 'aws-sdk', '~> 2'
gem 'awspec', require: false
gem 'ridley', '~> 4.2.0'
gem "net-ssh"
gem "net-scp"
Expand All @@ -62,6 +63,7 @@ gem 'sidekiq' # for Active Job
gem "sidekiq-cron", "~> 0.4.0" # for Scheduled Job
gem 'foreman', require: false

gem 'turnout' # for maintenance mode

# Temporarily set ruby_dep version to 1.3.1 because it requires ruby 2.2.5 that is not yet available on amazon linux
gem "ruby_dep", "~> 1.3.1"
Expand All @@ -83,7 +85,10 @@ group :development, :test do

# test
gem "rspec-rails"
gem "factory_girl_rails"

# Test seems to be failing because of this issue:
# https://github.com/thoughtbot/factory_girl/issues/981
gem "factory_girl_rails", "~> 4.7.0"
gem "database_cleaner"
gem 'guard-rspec'
gem 'coveralls', require: false
Expand Down Expand Up @@ -129,8 +134,8 @@ gem 'rqrcode'

gem 'sky_zabbix', '~> 2.2.0'

gem 'nokogiri', '>= 1.6.8'
gem 'nokogiri', '>= 1.7.1'

gem 'rails-html-sanitizer', '~> 1.0.3'

gem 'rubyzip'
gem 'rubyzip', '>= 1.2.1'

0 comments on commit 0334876

Please sign in to comment.