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
sudo sh -c "echo 'deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main' > /etc/apt/sources.list.d/pgdg.list" | |
wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install postgresql-9.5-postgis-2.2 postgresql-contrib-9.5 | |
sudo apt-get install postgresql-common | |
sudo apt-get install postgresql-9.5 libpq-dev | |
sudo apt-get install postgresql-9.5-pgrouting | |
sudo apt-get pgadmin3 |
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
* Andrew Bolt / http://en.wikipedia.org/wiki/Andrew_Bolt | |
* Catherine Deveny / http://en.wikipedia.org/wiki/Catherine_Deveny | |
* Miranda Devine / http://en.wikipedia.org/wiki/Miranda_Devine | |
* The entire ACL. But Jim Wallace in particular / http://australianchristianlobby.org.au | |
* Climate Skeptics, especially Gavin Atkins / http://asiancorrespondent.com/author/gavinatkins/ |
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 ruby | |
begin | |
require 'rubygems' | |
require 'rails' | |
rescue LoadError | |
puts "\n=== ACTION REQUIRED ===\n\n" | |
puts "Could not load Rails. This is a required dependency of Synapse." | |
puts "Please install it with `gem install rails`.\n\n" | |
exit |
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
Feature: Generate a new Synapse app | |
lorem ipsum else | |
Scenario: Generate a new synapse app | |
Given Synapse gem is installed | |
When when I generate a synapse app | |
Then I should have the generated files |