View _form.html.erb
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
<%= form_for @account do |f| %> | |
<%= render "shared/form_errors", :object => @account %> | |
# ... Other form view code here ...</span> |
View Reachability.h
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
#import <netinet/in.h> |
View set_build_number.sh
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
if [[ ${CONFIGURATION} == "Ad Hoc" && -f /var/xcode_ci_scripts/bump_and_tag.sh ]]; then | |
/var/xcode_ci_scripts/bump_and_tag.sh | |
else | |
echo "Skipping version bump" | |
fi |
View bump_and_tag.sh
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
#!/bin/sh | |
PLIST_PATH="${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}" | |
# Get the current version and extract the version/build from there | |
LATEST_TAG=`xcrun git describe --tags --abbrev=0` | |
TAG_BUILD_NUM=${LATEST_TAG#*-} | |
TAG_VERSION=${LATEST_TAG%-*} | |
NEW_BUILD_NUM=$(expr $TAG_BUILD_NUM + 1) |
View scenecheck-initial.dump
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
-- | |
-- PostgreSQL database dump | |
-- | |
-- Dumped from database version 9.6.5 | |
-- Dumped by pg_dump version 9.6.5 | |
SET statement_timeout = 0; | |
SET lock_timeout = 0; | |
SET idle_in_transaction_session_timeout = 0; |