Skip to content

Commit

Permalink
Brought up-to-date with master.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aquaj committed Aug 28, 2017
2 parents 1832771 + d39e212 commit 20c0a98
Show file tree
Hide file tree
Showing 200 changed files with 2,398 additions and 512 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Expand Up @@ -3,14 +3,9 @@ bundler_args: "--full-index --without development"
cache: bundler
rvm:
- 2.2.7
env:
- TEST_SUITE=libs
- TEST_SUITE=models
- TEST_SUITE=controllers
#- TEST_SUITE=frontend
before_install: test/ci/before_install
before_script: test/ci/before_script
script: xvfb-run bundle exec rake test:$TEST_SUITE DRIVER=webkit
script: xvfb-run bundle exec rake test:models test:libs test:controllers DRIVER=webkit
services:
- redis-server
notifications:
Expand Down
5 changes: 4 additions & 1 deletion Gemfile
Expand Up @@ -132,6 +132,9 @@ gem 'humanize'
gem 'i18n-complements', '>= 0.0.14'
gem 'i18n-js', '>= 3.0.0.rc12'

# Dates management
gem 'time_diff'

# XML Parsing/Writing, HTML extraction
gem 'nokogiri', '~> 1.7.1'

Expand Down Expand Up @@ -189,7 +192,7 @@ gem 'luhn'
gem 'bootstrap-slider-rails'

group :development do
gem 'bullet', '~> 5.5.0'
gem 'bullet', '< 5.6.0'

gem 'quiet_assets'
# gem 'rack-mini-profiler'
Expand Down
6 changes: 5 additions & 1 deletion Gemfile.lock
Expand Up @@ -519,6 +519,9 @@ GEM
thor (0.19.4)
thread_safe (0.3.6)
tilt (2.0.8)
time_diff (0.3.0)
activesupport
i18n
timecop (0.9.1)
timeliness (0.3.8)
tins (1.15.0)
Expand Down Expand Up @@ -586,7 +589,7 @@ DEPENDENCIES
bootstrap-slider-rails
bootstrap3-datetimepicker-rails
browser
bullet (~> 5.5.0)
bullet (< 5.6.0)
capybara
capybara-webkit
charlock_holmes
Expand Down Expand Up @@ -674,6 +677,7 @@ DEPENDENCIES
teaspoon-jasmine
therubyracer
thin
time_diff
timecop
treetop
turbolinks (~> 2.0)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.49.1
2.50.0
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
90 changes: 90 additions & 0 deletions app/assets/images/intervention_participations/action-travel.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions app/assets/javascripts/backend/bank_statements.js.coffee
Expand Up @@ -392,7 +392,7 @@
bankLines = lines.filter(":not(.lettered)[data-type=bank_statement_item]")
bankIds = bankLines.get().map (line) =>
@_idForLine line
url = window.location.pathname.split('/').slice(0, -3).join('/') + '/bank_reconciliation/letters'
url = '/backend/bank-reconciliation/letters'
$.ajax url,
type: 'POST'
dataType: 'JSON'
Expand All @@ -413,7 +413,7 @@
return false

_unletterItems: (letter) ->
# url = window.location.pathname.split('/').slice(0, -3).join('/') + '/bank_reconciliation/letters/' + letter
# url = '/backend/bank-reconciliation/letters/' + letter
url = $(event.target).closest('#clear').attr('href')
$.ajax url,
type: 'DELETE'
Expand All @@ -431,7 +431,7 @@
return false

_deleteLine: (line) ->
url = window.location.pathname.split('/').slice(0, -3).join('/') + '/bank-statement-items/' + line.data('id')
url = '/backend/bank-statement-items/' + line.data('id')
$.ajax url,
type: 'DELETE'
dataType: 'JSON'
Expand Down

0 comments on commit 20c0a98

Please sign in to comment.