This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { environment } = require('@rails/webpacker'); | |
| environment.loaders.get('sass').use.splice(-1, 0, { | |
| loader: 'resolve-url-loader', | |
| options: { | |
| attempts: 1, | |
| } | |
| }); | |
| module.exports = environment; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES | |
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/denisoster/.oh-my-zsh" | |
| # Set name of the theme to load --- if set to "random", it will | |
| # load a random theme each time oh-my-zsh is loaded, in which case, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TRUNCATE invoice_footers; | |
| ALTER SEQUENCE invoice_footers_id_seq RESTART WITH 1; | |
| ALTER TABLE invoice_footers | |
| ADD COLUMN page varchar; | |
| ALTER TABLE invoice_footers | |
| ADD UNIQUE (page); | |
| CREATE OR REPLACE FUNCTION my_function(input json) | |
| RETURNS json | |
| LANGUAGE plpgsql AS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # frozen_string_literal: true | |
| require 'active_support/time' | |
| require 'ap' | |
| require 'privatbank' | |
| require 'privatbank/p24' | |
| merchant_id = 'merchant_id' | |
| merchant_password = 'merchant_password' | |
| card_number = 'card_number' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # frozen_string_literal: true | |
| require 'rspec/core' | |
| engine_names = ARGV.map do |val| | |
| result = /\A.+\/apps\/([\w_]+)\/spec.*/.match(val) | |
| result = /\Aapps\/([\w_]+)\/spec.*\z/.match(val) if result.nil? | |
| result ? result[1] : nil | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Filter = { | |
| url: '/catalogs/', | |
| ajax: "/ajax_query", | |
| parent: "body", | |
| res_block: ".sort_result_cards", | |
| is_need_change_sluider: false, | |
| locale:window.location.pathname.replace(/^\/([^\/]*).*$/, '$1'), | |
| Init: function Init() { | |
| var data = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Vue from "vue"; | |
| import VueResource from "vue-resource"; | |
| import vueSlider from "vue-slider-component"; | |
| Vue.use(VueResource); | |
| var app = new Vue({ | |
| el: "#vue-app", | |
| data: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Vue from "vue"; | |
| import VueResource from "vue-resource"; | |
| import vueSlider from "vue-slider-component"; | |
| Vue.use(VueResource); | |
| var app = new Vue({ | |
| el: "#vue-app", | |
| data: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu | |
| MAINTAINER Owen Trueblood | |
| # general dependencies | |
| RUN apt-get install -y curl | |
| # install target toolchain | |
| RUN apt-get update --fix-missing | |
| RUN apt-get install -y build-essential gcc-arm-linux-gnueabihf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| current directory: /Users/denisoster/.asdf/installs/ruby/truffleruby-19.3.0/lib/gems/gems/therubyracer-0.12.3/ext/v8 | |
| /Users/denisoster/.asdf/installs/ruby/truffleruby-19.3.0/bin/truffleruby -I /Users/denisoster/.asdf/installs/ruby/truffleruby-19.3.0/lib/mri -r ./siteconf20200227-67518-189d4or.rb extconf.rb | |
| checking for -lpthread... yes | |
| checking for -lobjc... yes | |
| creating Makefile | |
| current directory: /Users/denisoster/.asdf/installs/ruby/truffleruby-19.3.0/lib/gems/gems/therubyracer-0.12.3/ext/v8 | |
| make "DESTDIR=" clean | |
| current directory: /Users/denisoster/.asdf/installs/ruby/truffleruby-19.3.0/lib/gems/gems/therubyracer-0.12.3/ext/v8 |