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
./configure --prefix=/rbx | |
------------------------- WARNING ----------------------- | |
The specified prefix '/rbx' already exists. | |
Installing Rubinius into an existing directory may | |
overwrite existing unrelated files or cause conflicts | |
between different versions of Rubinius files. | |
--------------------------------------------------------- | |
Checking gcc: found | |
Checking g++: found | |
Checking bison: found |
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
FROM ubuntu:13.10 | |
MAINTAINER Robert Reiz <[email protected]> | |
RUN apt-get update | |
RUN apt-get upgrade -y -q | |
RUN apt-get install -y -q wget tree links2 gcc g++ make autoconf automake libssl-dev libcurl4-openssl-dev | |
RUN echo LC_ALL=en_US.UTF-8 >> /etc/environment | |
RUN export LC_ALL=en_US.UTF-8 |
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
FROM ubuntu:13.10 | |
MAINTAINER Robert Reiz <[email protected]> | |
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
RUN echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | tee /etc/apt/sources.list.d/10gen.list | |
RUN apt-get update | |
RUN apt-get install -y --force-yes -q apt-utils | |
RUN apt-get install -y --force-yes -q adduser | |
RUN apt-get install -y --force-yes -q mongodb-org-server=2.6.3 | |
RUN apt-get install -y --force-yes -q mongodb-org=2.6.3 |
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
FROM ubuntu:13.10 | |
MAINTAINER Robert Reiz <[email protected]> | |
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
RUN echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | tee /etc/apt/sources.list.d/10gen.list | |
RUN apt-get update | |
RUN apt-get install -y --force-yes -q apt-utils | |
RUN apt-get install -y --force-yes -q adduser | |
RUN apt-get install -y --force-yes -q mongodb-org-server=2.6.2 | |
RUN apt-get install -y --force-yes -q mongodb-org=2.6.2 |
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
A_EU = { | |
"AT" => "Austria", | |
"BE" => "Belgium", | |
"BG" => "Bulgaria", | |
"HR" => "Croatia", | |
"CY" => "Cyprus", | |
"CZ" => "Czech Republic", | |
"DK" => "Denmark", | |
"EE" => "Estonia", | |
"FI" => "Finland", |
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
countries = { | |
"AF" => "Afghanistan", | |
"AX" => "Åland Islands", | |
"AL" => "Albania", | |
"DZ" => "Algeria", | |
"AS" => "American Samoa", | |
"AD" => "Andorra", | |
"AO" => "Angola", | |
"AI" => "Anguilla", | |
"AQ" => "Antarctica", |
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
countries = { | |
"004" => { "alpha-3-code" => "AFG", "alpha-2-code" => "AF", "name" => "Afghanistan" }, | |
"248" => { "alpha-3-code" => "ALA", "alpha-2-code" => "AX", "name" => "Åland Islands" }, | |
"008" => { "alpha-3-code" => "ALB", "alpha-2-code" => "AL", "name" => "Albania" }, | |
"012" => { "alpha-3-code" => "DZA", "alpha-2-code" => "DZ", "name" => "Algeria" }, | |
"016" => { "alpha-3-code" => "ASM", "alpha-2-code" => "AS", "name" => "American Samoa" }, | |
"020" => { "alpha-3-code" => "AND", "alpha-2-code" => "AD", "name" => "Andorra" }, | |
"024" => { "alpha-3-code" => "AGO", "alpha-2-code" => "AO", "name" => "Angola" }, | |
"660" => { "alpha-3-code" => "AIA", "alpha-2-code" => "AI", "name" => "Anguilla" }, | |
"010" => { "alpha-3-code" => "ATA", "alpha-2-code" => "AQ", "name" => "Antarctica" }, |
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
def self.create_index_with_mappings | |
Tire.index Settings.elasticsearch_product_index do | |
create :settings => { | |
:number_of_shards => 1, | |
:number_of_replicas => 1, | |
:analysis => { | |
:filter => { | |
:name_ngrams => { | |
:side => 'front', | |
:type => 'edgeNGram', |
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
protected MavenProject buildProjectModel(ArtifactInfo artifactInfo) throws Exception { | |
try { | |
ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest(); | |
configuration.setLocalRepository( localRepository ); | |
configuration.setValidationLevel( ModelBuildingRequest.VALIDATION_LEVEL_MINIMAL ); | |
configuration.setProcessPlugins( false ); | |
configuration.setRepositoryMerging( ProjectBuildingRequest.RepositoryMerging.REQUEST_DOMINANT ); | |
Properties properties = new Properties( ); | |
for ( String key : session.getSystemProperties( ).keySet() ){ | |
properties.put( key, session.getSystemProperties().get(key) ); |
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
def self.create_from_gemfile_url ( url ) | |
return nil if url.nil? | |
if url.match(/^https:\/\/github.com\//) | |
url = url.gsub("https://github.com", "https://raw.github.com") | |
url = url.gsub("/blob/", "/") | |
end | |
uri = URI.parse( url ) | |
http = Net::HTTP.new(uri.host, uri.port) | |
if uri.port == 443 | |
http.use_ssl = true |
NewerOlder