This file has been truncated, but you can view the full file.
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
Initializing repository, done. | |
-----> Fetching custom git buildpack... done | |
-----> Lineman app detected | |
-----> Resolving engine versions | |
Using Node.js version: 0.10.21 | |
Using npm version: 1.3.11 | |
-----> Fetching Node.js binaries | |
-----> Vendoring node into slug | |
-----> Installing dependencies with npm |
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<document type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="3.0" toolsVersion="5056" systemVersion="13D65" targetRuntime="iOS.CocoaTouch.iPad" propertyAccessControl="none" useAutolayout="YES"> | |
<dependencies> | |
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3733"/> | |
</dependencies> | |
<objects> | |
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="GBManualAddViewController"> | |
<connections> | |
<outlet property="textField" destination="zqa-Bs-Usq" id="eae-hX-SN5"/> | |
<outlet property="view" destination="i5M-Pr-FkT" id="Vku-k9-AKj"/> |
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
{ | |
"prices": [ | |
{ | |
"amount": 1999, | |
"currency": "USD" | |
} | |
] | |
} |
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
class App.SalesSummaryReportController extends Ember.ObjectController | |
currentInterval: null | |
+observer interval | |
intervalChanged: -> | |
return if @interval == @currentInterval | |
@transitionToRoute 'sales_summary_report', interval: @interval |
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
{ | |
"companies": [ | |
{ | |
"id": 1, | |
"name": "420...", | |
"street": "420 Kush St.", | |
"city": "Seattle", | |
"state": "WA", | |
"zip_code": "12345" | |
} |
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
Waiting for sshd | |
done | |
Connecting to 74.207.242.176 | |
Get:1 http://mirrors.linode.com lucid Release.gpg [189B] | |
Ign http://mirrors.linode.com/ubuntu/ lucid/main Translation-en_US | |
Ign http://mirrors.linode.com/ubuntu/ lucid/restricted Translation-en_US | |
Ign http://mirrors.linode.com/ubuntu/ lucid/universe Translation-en_US | |
Ign http://mirrors.linode.com/ubuntu/ lucid/multiverse Translation-en_US | |
Get:2 http://mirrors.linode.com lucid-updates Release.gpg [198B] | |
Ign http://mirrors.linode.com/ubuntu/ lucid-updates/main Translation-en_US |
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
#!/usr/bin/env bash | |
# Run this with `git bisect start BAD_SHA GOOD_SHA ; git bisect run ~/git-bisect.sh` | |
# Run migrations, bundle, etc to make sure the app updates through time, and ensure there is a clean git tree | |
bundle install | |
git checkout Gemfile.lock | |
# Run the test, the exec is important so it returns the proper status code | |
exec rspec spec/models/tasks/inventory_clone_spec.rb |
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
name: Compile Mermaid Diagrams | |
on: [push] | |
jobs: | |
build: | |
name: Compile Mermaid | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: |
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
ruby '2.7.1' | |
gem 'rails', github: 'rails/rails' | |
gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
# Action Text | |
gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
gem 'okra', github: 'basecamp/okra' | |
# Drivers |
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 | |
module EncryptedAttribute | |
extend ActiveSupport::Concern | |
class_methods do | |
def attr_encrypted(attr) | |
define_method(attr) do | |
value = instance_variable_get("@#{attr}") | |
return value if value |