Loxodrome/rhumb lines
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
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
raise e | |
end | |
gemfile(true) do | |
source "https://rubygems.org" | |
gem "rails", github: "rails/rails" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
2.2.4 |
I hereby claim:
- I am md5 on github.
- I am mrdillon (https://keybase.io/mrdillon) on keybase.
- I have a public key whose fingerprint is 394C A189 DF91 2FF8 A152 90F6 37F1 72E8 EC6F 732C
To claim this, I am signing this object:
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
begin | |
require 'bundler/inline' | |
rescue LoadError => e | |
$stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
raise e | |
end | |
gemfile(true) do | |
source 'https://rubygems.org' | |
if ENV['RAILS_VERSION'] |
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
/*.env |
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 php | |
RUN docker-php-ext-install sockets | |
COPY test.php / | |
CMD ["php", "/test.php"] |
This helper script can be sourced at the top of another Bash script to ensure that
it runs under Bash 4 with GNU grep
, readline
, sed
, and zcat
.
It should be sourced in your script like this, before the part of the script that uses Bash 4 features or expects GNU tools:
source .ensure-bash4+gnu-tools.bash "$BASH_SOURCE" "$@"
NewerOlder