Use rails helpers for the font paths in fontawesome SCSS, instead of hardcode...
The paths used by default by fontawesome do not exist in a rails app, the asset pipeline creates different paths. Using rails helpers is a must to find out the actual asset path for each font. There...
View ArticleFixed macro used in acceptance tests.
The latest Hopscotch update has changed the close button: it no longer is an <a> element but a <button>, and the CSS selector used in the macro failed. The selector has been changed to...
View ArticleAdded bundler-audit gem to the build.
It will be used in CI environment to automatically check for vulnerabilities in gems in the bundle.
View ArticleFetch gems from github with https:// instead of git://
This ensures safe connection with github (no MITM that could tamper the gem), and fixes an error returned by bundler-audit.
View ArticleRemoved fastclick.js from the project.
I think some issues with touch-click events firing twice are related to having both ng-touch and fastclick in the app. Fastclick should be redundant, ng-touch supposedly removes the 300ms delay on...
View ArticleReplaced #default_wait_time with #default_max_wait_time in the rails rspec co...
The option is the same but the changed name supposedly better reflects its actual meaning. This removes a deprecation warning when running tests.
View ArticleAdded sidekiq-statistic gem to the bundle.
Better visualization for sidekiq should be nice.
View ArticleFixed Sidekiq version to 3.4.2
The latest Sidekiq 3.5.0 version depends on Celluloid 0.17.0. However Sidetiq (which we use for recurring jobs) is incompatible with this Celluloid version, for more details see:...
View Article