This file contains 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
I have tested the elixir version and it works, but have not tested the erlang version of this code. |
This file contains 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
$palettes: ( | |
black: ( | |
lightest: hsl(0, 0%, 40%), | |
lighter: hsl(0, 0%, 35%), | |
light: hsl(0, 0%, 30%), | |
base: hsl(0, 0%, 25%), | |
dark: hsl(0, 0%, 20%), | |
darker: hsl(0, 0%, 15%), | |
darkest: hsl(0, 0%, 10%) | |
), |
This file contains 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
0 info it worked if it ends with ok | |
1 verbose cli [ '/usr/local/Cellar/node/8.1.0_1/bin/node', | |
1 verbose cli '/usr/local/bin/npm', | |
1 verbose cli 'install' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose npm-session 6ff218f68cdf657a | |
5 silly install runPreinstallTopLevelLifecycles | |
6 silly preinstall assets | |
7 info lifecycle @~preinstall: @ |
This file has been truncated, but you can view the full file.
This file contains 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
12006 silly decomposeActions build core-util-is@https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz | |
12007 silly decomposeActions install core-util-is@https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz | |
12008 silly decomposeActions postinstall core-util-is@https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz | |
12009 silly decomposeActions finalize core-util-is@https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz | |
12010 silly decomposeActions refresh-package-json core-util-is@https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz | |
12011 silly decomposeActions fetch create-ecdh@https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz | |
12012 silly decomposeActions extract create-ecdh@https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz | |
12013 silly decomposeActions preinstall create-ecdh@https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz | |
12014 silly decomposeActions build create-ecdh@https://registry.npmjs.org/create-ecdh/-/create-e |
This file contains 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
require("web/static/js/logging.js"); | |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | |
}); | |
;require.register("web/static/js/logging.js", function(exports, require, module) { | |
"use strict"; | |
console.log("Logs to the console"); | |
}); |
This file contains 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
require 'rails/all' | |
require 'squeel' | |
require 'active_record/connection_adapters/postgis_adapter/railtie' |
This file contains 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
belongs_to :reservation | |
belongs_to :user | |
attr_accessible :reservation_id, :user_id |
This file contains 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
WantFreight::Application.configure do | |
# Settings specified here will take precedence over those in config/application.rb | |
# In the development environment your application's code is reloaded on | |
# every request. This slows down response time but is perfect for development | |
# since you don't have to restart the web server when you make code changes. | |
config.cache_classes = false | |
# Log error messages when you accidentally call methods on nil. | |
config.whiny_nils = true |
This file contains 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
gem 'rails', '~> 3.2.6' | |
gem "pg", "~> 0.11.0" | |
gem 'devise', '~> 1.4.3' | |
gem 'devise-async' | |
gem 'geocoder' | |
gem 'bourbon' | |
gem "simple_form", "~> 2.0.1" | |
gem 'will_paginate', '> 3.0' | |
gem 'kaminari' | |
gem 'thinking-sphinx' |
NewerOlder