Skip to content

Commit

Permalink
Merge pull request #373 from skyarch-networks/dev-marketplace
Browse files Browse the repository at this point in the history
Marketplace 2017.06
  • Loading branch information
Joeper214 authored Jun 21, 2017
2 parents deef05c + 61a69be commit b022b44
Show file tree
Hide file tree
Showing 341 changed files with 2,579 additions and 1,655 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
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
4 changes: 2 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Style/ConstantName:
Style/DefWithParentheses:
Enabled: false

Style/DeprecatedHashMethods:
Style/PreferredHashMethods:
Enabled: false

Style/Documentation:
Expand Down 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
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ before_script:

script:
- bundle exec rspec

notifications:
slack: skyarch:RrGXgQVUmTe0r565gbHYMnmQ
13 changes: 9 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ gem "font-awesome-rails"

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

gem "introjs-rails"
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 @@ -84,7 +86,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 @@ -130,8 +135,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'
Loading

0 comments on commit b022b44

Please sign in to comment.