Compare commits

...

25 Commits

Author SHA1 Message Date
Nuwan eac283222b prevent ActiveAdmin::DatabaseHitDuringLoad error in routes 2022-03-28 19:30:06 +05:30
Nuwan 7ef771eeb8 remove .ruby-version 2022-03-28 17:08:49 +05:30
Nuwan 3126e630c7 use activerecord-nulldb-adapter when asset compilation 2022-03-28 16:41:13 +05:30
Nuwan 1e281bbc47 debug asset compilation 2022-03-28 13:22:30 +05:30
Victor Barba 0e4c6b5d8e setup gcp push 2022-03-22 16:12:42 +01:00
Victor Barba e5c98cfe47 setup gcp push 2022-03-22 16:12:29 +01:00
Victor Barba d805a600ef setup gcp push 2022-03-22 16:11:58 +01:00
Victor Barba e6646200e2 setup gcp push 2022-03-22 16:06:49 +01:00
Victor Barba d6a302bd5e setup gcp push 2022-03-22 16:05:18 +01:00
Victor Barba f8faae13c6 setup gcp push 2022-03-22 16:04:07 +01:00
Victor Barba f77fe8f07b setup gcp push 2022-03-22 16:01:46 +01:00
Victor Barba fb77dc26f8 setup gcp push 2022-03-22 16:01:08 +01:00
Victor Barba 392653dc74 setup branch pipeline 2022-03-22 15:52:05 +01:00
Victor Barba 8ad9cf98fc Merge branch 'feature/VRFS-5283' of bitbucket.org:jamkazam/jam-cloud into feature/VRFS-5283 2022-03-22 15:50:39 +01:00
Victor Barba 6d872d3e31 bitbucket-pipelines.yml edited online with Bitbucket 2022-03-21 19:26:53 +00:00
Victor Barba ff3e060cbe bitbucket-pipelines.yml edited online with Bitbucket 2022-03-21 19:24:56 +00:00
Victor Barba a17e5536ee Dockerfile edited online with Bitbucket 2022-03-21 16:59:18 +00:00
Victor Barba 0dcf38787a bitbucket-pipelines.yml edited online with Bitbucket 2022-03-20 19:50:54 +00:00
Victor Barba 445db27601 bitbucket-pipelines.yml edited online with Bitbucket 2022-03-18 15:56:00 +00:00
Victor Barba 7e1ed73f73 bitbucket-pipelines.yml 2022-03-18 15:55:14 +00:00
Victor Barba 28843dc2e3 docker build 2022-03-18 16:52:42 +01:00
Victor Barba 6885df3b56 modify gemlock 2022-03-08 19:16:51 +01:00
Victor Barba 34bab5b787 admin docker build 2022-02-03 18:44:13 +01:00
Victor Barba eaabf67fdf build docker container 2022-01-27 18:44:34 +01:00
aspocecat e7d67d1444 dockerfile and changes for ubuntu 20.04 2021-12-22 17:18:14 +01:00
20 changed files with 308 additions and 531 deletions

48
Dockerfile Normal file
View File

@ -0,0 +1,48 @@
FROM ubuntu:latest
# update apt cache and install dependencies
RUN apt-get update && apt-get install git curl build-essential libssl-dev libreadline-dev zlib1g-dev sqlite3 libsqlite3-dev -y
RUN echo "deb http://security.ubuntu.com/ubuntu bionic-security main" >> /etc/apt/sources.list
RUN apt update && apt-cache policy libssl1.0-dev
RUN apt install -y libssl1.0-dev libpq-dev
# add app user
#RUN adduser --gecos '' --disabled-password app
# set user to app
#USER app
# set rbenv, ruby-build bin paths
ENV HOME /root
ENV PATH $HOME/.rbenv/shims:$HOME/.rbenv/bin:$HOME/.rbenv/plugins/ruby-build/bin:$PATH
# clone rbenv
RUN git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
# clone ruby-build
RUN git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
# set working directory to project src
WORKDIR /src
# add Gemfile, Gemfile.lock, .ruby-version to docker
# ADD Gemfile Gemfile.lock .ruby-version ./
# install ruby
RUN rbenv install 2.3.3
RUN rbenv global 2.3.3
# install bundler
RUN gem install bundler -v "< 2.0"
RUN gem install rspec
RUN gem install rack-cors -v ">=1.0.6"
WORKDIR /app
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get install -y protobuf-compiler pkg-config make g++
RUN apt-get install -y gcc libxslt-dev libxml2-dev zlib1g-dev libpq-dev
RUN apt install -y postgresql
RUN /etc/init.d/postgresql start
RUN apt install -y nodejs
ENV AWS_KEY="AAAA"
ENV AWS_SECRET="XXXX"
ADD . /app
RUN /app/build

5
Dockerfile-web Normal file
View File

@ -0,0 +1,5 @@
FROM ubuntu:latest
ADD jam-web_0.1.1_amd64.deb .
RUN mkdir -p /etc/init

View File

@ -1 +0,0 @@
2.4.1

View File

@ -2,7 +2,7 @@ source 'http://rubygems.org'
source 'https://jamjam:blueberryjam@int.jamkazam.com/gems/'
ruby_version = ENV["JAM_RUBY_VERSION"]
ruby_version = "2.3.1" if ruby_version.nil?
ruby_version = "2.3.3" if ruby_version.nil?
ruby ruby_version
@ -132,6 +132,7 @@ gem 'logging', '1.7.2'
group :production do
gem 'unicorn'
gem 'activerecord-nulldb-adapter', '~> 0.3.1'
end
group :package do

View File

@ -132,6 +132,7 @@ gem 'logging', '1.7.2'
group :production do
gem 'unicorn'
gem 'activerecord-nulldb-adapter', '~> 0.3.1'
end
group :package do

View File

@ -445,7 +445,9 @@ GEM
mini_mime (>= 0.1.1)
method_source (1.0.0)
mime-types (1.25)
mimemagic (0.3.5)
mimemagic (0.3.10)
nokogiri (~> 1)
rake (>= 0)
mini_mime (1.0.2)
mini_portile2 (2.4.0)
minitest (5.14.3)

View File

@ -77,8 +77,9 @@ EOF
#bundle install --path vendor/bundle --local
# prepare production acssets
rm -rf $DIR/public/assets
bundle exec rake assets:precompile RAILS_ENV=production
echo "BEFORE ASSET COMPILATION (admin)"
bundle exec rake assets:precompile RAILS_ENV=production DB_ADAPTER=nulldb
echo "AFTER ASSET COMPILATION (admin)"
# create debian using fpm
bundle exec fpm -s dir -t deb -p target/deb/jam-admin_0.1.${BUILD_NUMBER}_${ARCH}.deb -n "jam-admin" -v "0.1.$BUILD_NUMBER" --prefix /var/lib/jam-admin --after-install $DIR/script/package/post-install.sh --before-install $DIR/script/package/pre-install.sh --before-remove $DIR/script/package/pre-uninstall.sh --after-remove $DIR/script/package/post-uninstall.sh Gemfile .bundle config Rakefile script config.ru lib public vendor app BUILD_NUMBER

View File

@ -28,7 +28,7 @@ JamAdmin::Application.routes.draw do
end
end
ActiveAdmin.routes(self)
ActiveAdmin.routes(self) rescue ActiveAdmin::DatabaseHitDuringLoad
match '/api/artifacts' => 'artifacts#update_artifacts', :via => :post
match '/api/mix/:id/enqueue' => 'admin/mixes#mix_again', :via => :post

View File

@ -1,7 +1,42 @@
image: node:14.17.1
definitions:
services:
docker:
memory: 3072
steps:
- step: &build-image
name: Build Container Image
script:
- docker build -t jam-cloud .
- docker save --output tmp-image.docker jam-cloud
services:
- docker
artifacts:
- tmp-image.docker
- step: &push-gcp
name: Push to GCP registry
image: google/cloud-sdk:alpine
script:
#- docker load --input ./tmp-image.docker
# Authenticating with the service account key file
- echo $GCLOUD_API_KEYFILE | base64 -d > ./gcloud-api-key.json
- gcloud auth activate-service-account --key-file gcloud-api-key.json
- gcloud config set project $GCLOUD_PROJECT
- cat ./gcloud-api-key.json | docker login -u _json_key --password-stdin https://gcr.io
# # Tag container & push
# - export TAG=$(echo "$BITBUCKET_TAG" | sed -e "s/v//g")
# - export SUFFIX=$([[ ! -z "$TAG" ]] && echo ":$TAG" || echo "")
# - export IMAGE_NAME=gcr.io/my-project/hello-world${SUFFIX}
# - docker tag helloworld ${IMAGE_NAME}
# # Login to google docker hub
# - cat ./gcloud-api-key.json | docker login -u _json_key --password-stdin https://gcr.io
# - docker push ${IMAGE_NAME}
pipelines:
branches:
feature/VRFS-5283:
- step: *build-image
- step: *push-gcp
develop:
- step:
name: Build Staging

112
build
View File

@ -17,6 +17,10 @@ popd > /dev/null
echo ""
service postgresql start
su postgres -c "psql -U postgres -c \"CREATE DATABASE jam\""
su postgres -c "psql -c \"ALTER USER postgres WITH PASSWORD 'postgres'\""
echo "BUILDING JAM-RUBY"
pushd ruby > /dev/null
rm -f *.gem
@ -24,10 +28,11 @@ bash -l ./jenkins
popd > /dev/null
echo ""
export SKIP_TESTS=1
echo "BUILDING WEBSOCKET GATEWAY"
pushd websocket-gateway > /dev/null
bash -l ./jenkins
PACKAGE=1 bash -l ./jenkins
popd > /dev/null
echo ""
@ -39,6 +44,9 @@ set +e
ps aux | grep -ie "jam-cloud.*rspec" | awk '{print $2}' | xargs kill -9
set -e
export AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE
export AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
PACKAGE=1 bash ./jenkins
# we do this so that the build won't fail in jenkins if no capybara error screenshot isn't there
@ -49,64 +57,64 @@ popd > /dev/null
echo ""
echo "BUILDING JAM-ADMIN"
pushd admin /dev/null
bash -l ./jenkins
pushd admin > /dev/null
PACKAGE=1 bash -l ./jenkins
popd > /dev/null
if [ ! -z "$PACKAGE" ]; then
# if [ ! -z "$PACKAGE" ]; then
source /etc/lsb-release
DEB_SERVER=https://int.jamkazam.com:9010/apt-`uname -p`/$DISTRIB_CODENAME
GEM_SERVER=http://localhost:9000/gems
# source /etc/lsb-release
# DEB_SERVER=https://int.jamkazam.com:9010/apt-`uname -p`/$DISTRIB_CODENAME
# GEM_SERVER=http://localhost:9000/gems
# if still going, then push all debs up
if [[ "$GIT_BRANCH" == *develop* || "$GIT_BRANCH" == *master* || "$GIT_BRANCH" == *release* || "$GIT_BRANCH" == *feature* || "$GIT_BRANCH" == *hotfix* ]]; then
# # if still going, then push all debs up
# if [[ "$GIT_BRANCH" == *develop* || "$GIT_BRANCH" == *master* || "$GIT_BRANCH" == *release* || "$GIT_BRANCH" == *feature* || "$GIT_BRANCH" == *hotfix* ]]; then
echo ""
echo "PUSHING WEB"
pushd web > /dev/null
echo "publishing ubuntu package (.deb)"
DEBPATH=`find target/deb -name *.deb`
DEBNAME=`basename $DEBPATH`
curl -f -T $DEBPATH $DEB_SERVER/$DEBNAME
if [ "$?" != "0" ]; then
echo "deb publish failed"
exit 1
fi
echo "done publishing deb"
popd > /dev/null
# echo ""
# echo "PUSHING WEB"
# pushd web > /dev/null
# echo "publishing ubuntu package (.deb)"
# DEBPATH=`find target/deb -name *.deb`
# DEBNAME=`basename $DEBPATH`
# curl -f -T $DEBPATH $DEB_SERVER/$DEBNAME
# if [ "$?" != "0" ]; then
# echo "deb publish failed"
# exit 1
# fi
# echo "done publishing deb"
# popd > /dev/null
echo ""
echo "PUSHING WEBSOCKET-GATEWAY"
pushd websocket-gateway > /dev/null
echo "publishing ubuntu package (.deb)"
DEBPATH=`find target/deb -name *.deb`
DEBNAME=`basename $DEBPATH`
curl -f -T $DEBPATH $DEB_SERVER/$DEBNAME
if [ "$?" != "0" ]; then
echo "deb publish failed"
exit 1
fi
echo "done publishing deb"
popd > /dev/null
# echo ""
# echo "PUSHING WEBSOCKET-GATEWAY"
# pushd websocket-gateway > /dev/null
# echo "publishing ubuntu package (.deb)"
# DEBPATH=`find target/deb -name *.deb`
# DEBNAME=`basename $DEBPATH`
# curl -f -T $DEBPATH $DEB_SERVER/$DEBNAME
# if [ "$?" != "0" ]; then
# echo "deb publish failed"
# exit 1
# fi
# echo "done publishing deb"
# popd > /dev/null
echo ""
echo "PUSHING ADMIN"
pushd admin > /dev/null
echo "publishing ubuntu package (.deb)"
DEBPATH=`find target/deb -name *.deb`
DEBNAME=`basename $DEBPATH`
curl -f -T $DEBPATH $DEB_SERVER/$DEBNAME
if [ "$?" != "0" ]; then
echo "deb publish failed"
exit 1
fi
echo "done publishing deb"
popd > /dev/null
# echo ""
# echo "PUSHING ADMIN"
# pushd admin > /dev/null
# echo "publishing ubuntu package (.deb)"
# DEBPATH=`find target/deb -name *.deb`
# DEBNAME=`basename $DEBPATH`
# curl -f -T $DEBPATH $DEB_SERVER/$DEBNAME
# if [ "$?" != "0" ]; then
# echo "deb publish failed"
# exit 1
# fi
# echo "done publishing deb"
# popd > /dev/null
else
echo "Skipping publish since branch is not master, develop, or release/*. branch is $GIT_BRANCH"
fi
# else
# echo "Skipping publish since branch is not master, develop, or release/*. branch is $GIT_BRANCH"
# fi
fi
# fi

View File

@ -1,7 +1,7 @@
source 'http://rubygems.org'
ruby_version = ENV["JAM_RUBY_VERSION"]
ruby_version = "2.3.1" if ruby_version.nil?
ruby_version = "2.3.3" if ruby_version.nil?
ruby ruby_version

View File

@ -1,7 +1,7 @@
source 'https://rubygems.org'
ruby_version = ENV["JAM_RUBY_VERSION"]
ruby_version = "2.3.1" if ruby_version.nil?
ruby_version = "2.3.3" if ruby_version.nil?
ruby ruby_version

View File

@ -10,7 +10,7 @@ DEPENDENCIES
ruby-protocol-buffers (= 1.2.2)
RUBY VERSION
ruby 2.4.1p111
ruby 2.3.3p222
BUNDLED WITH
1.17.3

View File

@ -5,7 +5,7 @@ unless ENV["LOCAL_DEV"] == "1"
end
ruby_version = ENV["JAM_RUBY_VERSION"]
ruby_version = "2.3.1" if ruby_version.nil?
ruby_version = "2.3.3" if ruby_version.nil?
ruby ruby_version
@ -48,7 +48,7 @@ gem 'icalendar', '2.4.0' # pinned until we are on ruby 2.5; then remove
gem 'email_validator', '1.6.0' # pinned until we are on ruby 2.5, then remove
gem 'redis', '3.3.0' # pinned until we are on 2.5; then remove
gem 'redis-namespace', '1.5.2' # pinned until we are on 2.5; then remove
gem 'oj', '2.17.1' # pinned until we are on 2.5; then remove
gem 'oj', '2.18.5' # pinned until we are on 2.5; then remove
#######
gem "activerecord-import", "~> 0.4.1"
@ -68,8 +68,8 @@ gem 'carrierwave', '0.9.0'
gem 'aasm'
gem 'devise', '3.3.0' # 3.4.0 causes: uninitialized constant ActionController::Metal (NameError)
gem 'postgres-copy'
gem 'geokit'
gem 'geokit-rails'
gem 'geokit', '1.13.1'
gem 'geokit-rails', '2.3.2'
gem 'postgres_ext'
gem 'resque'
gem 'resque-retry'

View File

@ -317,7 +317,7 @@ GEM
mini_portile2 (~> 2.4.0)
nokogumbo (2.0.4)
nokogiri (~> 1.8, >= 1.8.4)
oj (2.17.1)
oj (2.18.5)
optimist (3.0.1)
orm_adapter (0.5.0)
pg (0.17.1)
@ -509,8 +509,8 @@ DEPENDENCIES
faraday (= 0.9.2)
fog
fog-brightbox (= 0.11.0)
geokit
geokit-rails
geokit (= 1.13.1)
geokit-rails (= 2.3.2)
icalendar (= 2.4.0)
iso-639
jam_ruby!
@ -519,7 +519,7 @@ DEPENDENCIES
kickbox
logging (= 1.7.2)
nokogiri (= 1.10.10)
oj (= 2.17.1)
oj (= 2.18.5)
pg (= 0.17.1)
postgres-copy
postgres_ext
@ -559,7 +559,7 @@ DEPENDENCIES
zip-codes
RUBY VERSION
ruby 2.4.1p111
ruby 2.3.3p222
BUNDLED WITH
1.17.3

View File

@ -1,6 +1,7 @@
#!/bin/bash
echo "updating dependencies"
bundle config build.nokogiri --use-system-libraries
bundle install --path vendor/bundle
if [ -z $SKIP_TESTS ]; then

View File

@ -4,7 +4,7 @@ source 'http://rubygems.org'
devenv = ENV["BUILD_NUMBER"].nil? # Jenkins sets a build number environment variable
ruby_version = ENV["JAM_RUBY_VERSION"]
ruby_version = "2.3.1" if ruby_version.nil?
ruby_version = "2.3.3" if ruby_version.nil?
ruby ruby_version

View File

@ -5,7 +5,7 @@ unless ENV['LOCAL_DEV'] == '1'
end
ruby_version = ENV["JAM_RUBY_VERSION"]
ruby_version = "2.3.1" if ruby_version.nil?
ruby_version = "2.3.3" if ruby_version.nil?
ruby ruby_version
@ -45,7 +45,7 @@ gem 'redis', '3.3.3' # pinned until we are on 2.5; then remove
gem 'redis-namespace', '1.5.3' # pinned until we are on 2.5; then remove
gem 'oj', '3.1.3' # pinned until we are on 2.5; then remove
gem 'bcrypt', '3.1.13'
gem 'mimemagic', :source => 'https://int.jamkazam.com/gems/'
gem 'mimemagic', :source => 'http://rubygems.org/'#, :source => 'https://int.jamkazam.com/gems/'
#######

View File

@ -8,14 +8,10 @@ PATH
specs:
jam_ruby (0.1.1)
PATH
remote: ../websocket-gateway
specs:
jam_websockets (0.1.1)
GEM
remote: http://rubygems.org/
remote: https://rails-assets.org/
remote: https://jamjam:blueberryjam@int.jamkazam.com/gems/
remote: https://int.jamkazam.com/gems/
specs:
CFPropertyList (2.3.6)
aasm (5.1.1)
@ -49,104 +45,85 @@ GEM
activemodel (= 4.2.8)
activesupport (= 4.2.8)
arel (~> 6.0)
activerecord-import (0.4.1)
activerecord (>= 3.0)
activesupport (4.2.8)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
aes_key_wrap (1.1.0)
aliyun-sdk (0.8.0)
nokogiri (~> 1.6)
rest-client (~> 2.0)
amq-client (0.9.12)
amq-protocol (>= 1.2.0)
eventmachine
amq-protocol (2.3.2)
amqp (0.9.8)
amq-client (~> 0.9.5)
amq-protocol (>= 0.9.4)
amqp (1.8.0)
amq-protocol (>= 2.2.0)
eventmachine
arel (6.0.4)
arr-pm (0.0.10)
cabin (> 0)
attr_required (1.0.1)
auto_strip_attributes (2.6.0)
activerecord (>= 4.0)
autoparse (0.3.3)
addressable (>= 2.3.1)
extlib (>= 0.9.15)
multi_json (>= 1.0.0)
aws-sdk (1.67.0)
aws-sdk-v1 (= 1.67.0)
aws-sdk-v1 (1.67.0)
json (~> 1.4)
nokogiri (~> 1)
babel-source (5.8.35)
babel-transpiler (0.7.0)
babel-source (>= 4.0, < 6)
execjs (~> 2.0)
backports (3.20.2)
bcrypt (3.1.13)
bindata (2.4.8)
bootstrap-will_paginate (0.0.6)
will_paginate
bower-rails (0.9.2)
buftok (0.2.0)
bugsnag (5.3.2)
builder (3.2.4)
byebug (11.0.1)
cabin (0.9.0)
capybara (3.15.1)
addressable
mini_mime (>= 0.1.3)
nokogiri (~> 1.8)
rack (>= 1.6.0)
rack-test (>= 0.6.3)
regexp_parser (~> 1.2)
xpath (~> 3.2)
capybara-screenshot (1.0.25)
capybara (>= 1.0, < 4)
launchy
carmen (1.1.3)
activesupport (>= 3.0.0)
carrierwave (0.11.2)
activemodel (>= 3.2.0)
activesupport (>= 3.2.0)
json (>= 1.7)
mime-types (>= 1.16)
mimemagic (>= 0.3.0)
carrierwave_direct (1.0.0)
carrierwave (~> 0.11)
fog-aws
cause (0.1)
childprocess (0.9.0)
ffi (~> 1.0, >= 1.0.11)
clamp (1.0.1)
coderay (1.1.3)
coffee-rails (4.2.2)
coffee-script (>= 2.2.0)
railties (>= 4.0.0)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.12.2)
concurrent-ruby (1.1.8)
connection_pool (2.2.3)
crack (0.4.5)
rexml
crass (1.0.6)
database_cleaner (1.3.0)
cucumber (4.1.0)
builder (~> 3.2, >= 3.2.3)
cucumber-core (~> 7.1, >= 7.1.0)
cucumber-create-meta (~> 1.0.0, >= 1.0.0)
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
cucumber-gherkin (~> 14.0, >= 14.0.1)
cucumber-html-formatter (~> 7.0, >= 7.0.0)
cucumber-messages (~> 12.2, >= 12.2.0)
cucumber-wire (~> 3.1, >= 3.1.0)
diff-lcs (~> 1.3, >= 1.3, < 1.4)
multi_test (~> 0.1, >= 0.1.2)
sys-uname (~> 1.0, >= 1.0.2)
cucumber-core (7.1.0)
cucumber-gherkin (~> 14.0, >= 14.0.1)
cucumber-messages (~> 12.2, >= 12.2.0)
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
cucumber-create-meta (1.0.0)
cucumber-messages (~> 12.2, >= 12.2.0)
sys-uname (~> 1.2, >= 1.2.1)
cucumber-cucumber-expressions (10.3.0)
cucumber-gherkin (14.2.0)
cucumber-messages (~> 12.4, >= 12.4.0)
cucumber-html-formatter (7.2.0)
cucumber-messages (~> 12.4, >= 12.4.0)
cucumber-messages (12.4.0)
protobuf-cucumber (~> 3.10, >= 3.10.8)
cucumber-tag-expressions (2.0.4)
cucumber-wire (3.1.0)
cucumber-core (~> 7.1, >= 7.1.0)
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
cucumber-messages (~> 12.2, >= 12.2.0)
database_cleaner (1.99.0)
devise (3.3.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
thread_safe (~> 0.1)
warden (~> 1.2.3)
diff-lcs (1.4.4)
diff-lcs (1.3)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
dotenv (2.7.6)
@ -163,35 +140,17 @@ GEM
http_parser.rb (~> 0.6.0)
email_validator (1.6.0)
activemodel
equalizer (0.0.11)
erubis (2.7.0)
et-orbi (1.2.4)
tzinfo
eventmachine (1.2.3)
evented-spec (0.9.0)
eventmachine (1.2.7)
excon (0.79.0)
execjs (2.6.0)
extlib (0.9.16)
factory_girl (4.9.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.9.0)
factory_girl (~> 4.9.0)
railties (>= 3.0.0)
faker (1.3.0)
i18n (~> 0.5)
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
fb_graph (2.5.9)
httpclient (>= 2.2.0.2)
json
rack-oauth2 (>= 0.14.4)
tzinfo
ffi (1.12.2)
ffi-compiler (1.0.1)
ffi (>= 1.0.0)
rake
filepicker-rails (0.1)
multi_json (~> 1.6)
railties (>= 3.1.0, < 5.0)
fission (0.5.0)
CFPropertyList (~> 2.2)
fog (1.41.0)
@ -365,86 +324,25 @@ GEM
rchardet (~> 1.8)
globalid (0.4.2)
activesupport (>= 4.2.0)
god (0.13.7)
gon (4.1.1)
actionpack (>= 2.3.0)
json
google-api-client (0.7.1)
addressable (>= 2.3.2)
autoparse (>= 0.3.3)
extlib (>= 0.9.15)
faraday (>= 0.9.0)
jwt (>= 0.1.5)
launchy (>= 2.1.1)
multi_json (>= 1.0.0)
retriable (>= 1.4)
signet (>= 0.5.0)
uuidtools (>= 2.1.0)
haml (4.0.7)
tilt
haml-rails (0.9.0)
actionpack (>= 4.0.1)
activesupport (>= 4.0.1)
haml (>= 4.0.6, < 5.0)
html2haml (>= 1.0.1)
railties (>= 4.0.1)
hashdiff (1.0.1)
hashie (4.1.0)
html2haml (2.2.0)
erubis (~> 2.7.0)
haml (>= 4.0, < 6)
nokogiri (>= 1.6.0)
ruby_parser (~> 3.5)
htmlentities (4.3.4)
http (4.4.1)
addressable (~> 2.3)
http-cookie (~> 1.0)
http-form_data (~> 2.2)
http-parser (~> 1.2.0)
http-accept (1.7.0)
http-cookie (1.0.3)
domain_name (~> 0.5)
http-form_data (2.3.0)
http-parser (1.2.3)
ffi-compiler (>= 1.0, < 2.0)
http_parser.rb (0.6.0)
httparty (0.18.1)
mime-types (~> 3.0)
httparty (0.16.2)
multi_xml (>= 0.5.2)
httpclient (2.8.3)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
icalendar (2.4.0)
inflecto (0.0.2)
influxdb (0.3.14)
cause
json
influxdb-rails (0.1.12)
influxdb (~> 0.3.0)
railties
insist (1.0.0)
io-like (0.3.1)
ipaddress (0.8.3)
iso-639 (0.3.5)
jquery-rails (4.4.0)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
jquery-ui-rails (4.2.1)
railties (>= 3.2.16)
json (1.8.6)
json-jwt (1.12.0)
activesupport (>= 4.2)
aes_key_wrap
bindata
jwt (2.2.2)
kgio (2.11.3)
kickbox (2.0.4)
faraday (~> 0.9)
json (>= 1.8)
language_list (1.2.1)
launchy (2.1.1)
addressable (~> 2.3)
little-plugger (1.1.4)
logging (1.7.2)
little-plugger (>= 1.1.3)
@ -453,70 +351,29 @@ GEM
nokogiri (>= 1.5.9)
mail (2.7.1)
mini_mime (>= 0.1.1)
memoizable (0.4.2)
thread_safe (~> 0.3, >= 0.3.1)
method_source (1.0.0)
mime-types (3.3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2021.0212)
middleware (0.1.0)
mime-types (1.25.1)
mimemagic (0.3.5)
mini_mime (1.0.2)
mini_portile2 (2.4.0)
minitest (5.14.3)
mono_logger (1.1.0)
multi_json (1.15.0)
multi_test (0.1.2)
multi_xml (0.6.0)
multipart-post (2.1.1)
mustache (0.99.8)
naught (1.1.0)
netaddr (1.5.1)
netrc (0.11.0)
newrelic_rpm (6.15.0)
nio4r (2.5.2)
nokogiri (1.10.10)
mini_portile2 (~> 2.4.0)
nokogumbo (2.0.4)
nokogiri (~> 1.8, >= 1.8.4)
non-stupid-digest-assets (1.0.9)
sprockets (>= 2.0)
oauth (0.5.5)
oauth2 (1.4.4)
faraday (>= 0.8, < 2.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
oj (3.1.3)
omniauth (1.9.1)
hashie (>= 3.4.6)
rack (>= 1.6.2, < 3)
omniauth-facebook (8.0.0)
omniauth-oauth2 (~> 1.2)
omniauth-google-oauth2 (0.8.1)
jwt (>= 2.0)
oauth2 (~> 1.1)
omniauth (>= 1.1.1)
omniauth-oauth2 (>= 1.6)
omniauth-oauth (1.2.0)
oauth
omniauth (>= 1.0, < 3)
omniauth-oauth2 (1.7.1)
oauth2 (~> 1.4)
omniauth (>= 1.9, < 3)
omniauth-stripe-connect (2.10.1)
omniauth (~> 1.3)
omniauth-oauth2 (~> 1.4)
omniauth-twitter (1.4.0)
omniauth-oauth (~> 1.1)
rack
optimist (3.0.1)
orm_adapter (0.5.0)
paypal-sdk-core (0.3.4)
multi_json (~> 1.0)
xml-simple
paypal-sdk-merchant-jk (1.118.1)
paypal-sdk-core (~> 0.3.0)
pdf-core (0.7.0)
pg (0.17.1)
pg_array_parser (0.0.9)
pleaserun (0.0.31)
@ -534,32 +391,18 @@ GEM
activerecord (~> 4.0)
arel (>= 4.0.1)
pg_array_parser (~> 0.0.9)
power_assert (2.0.0)
prawn (2.2.2)
pdf-core (~> 0.7.0)
ttfunk (~> 1.5)
prawn-table (0.2.2)
prawn (>= 1.3.0, < 3.0.0)
protected_attributes (1.1.4)
activemodel (>= 4.0.1, < 5.0)
protobuf-cucumber (3.10.8)
activesupport (>= 3.2)
middleware
thor
thread_safe
pry (0.13.1)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (4.0.6)
puma (5.2.0)
nio4r (~> 2.0)
quiet_assets (1.1.0)
railties (>= 3.1, < 5.0)
raabro (1.4.0)
rabl (0.13.1)
activesupport (>= 2.3.14)
rack (1.6.13)
rack-oauth2 (1.12.0)
activesupport
attr_required
httpclient
json-jwt (>= 1.11.0)
rack (< 2.1)
rack-protection (1.5.5)
rack
rack-test (0.6.3)
@ -575,13 +418,6 @@ GEM
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.8)
sprockets-rails
rails-assets-bluebird (3.5.4)
rails-assets-classnames (1.2.2)
rails-assets-react-input-autosize (0.4.5)
rails-assets-react-select (0.6.7)
rails-assets-classnames (>= 1.2.2, < 2)
rails-assets-react-input-autosize (>= 0.4.3, < 0.5)
rails-assets-reflux (0.3.0)
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.9)
@ -597,29 +433,17 @@ GEM
activesupport (= 4.2.8)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
raindrops (0.19.1)
rake (13.0.3)
rb-fsevent (0.10.4)
rb-inotify (0.10.1)
ffi (~> 1.0)
rb-readline (0.5.5)
rbvmomi (2.4.1)
builder (~> 3.0)
json (>= 1.8)
nokogiri (~> 1.5)
optimist (~> 3.0)
rchardet (1.8.0)
react-rails (1.3.3)
babel-transpiler (>= 0.7.0)
coffee-script-source (~> 1.8)
connection_pool
execjs
rails (>= 3.2)
tilt
recurly (2.18.16)
redis (3.3.3)
redis-namespace (1.5.3)
redis (~> 3.0, >= 3.0.4)
regexp_parser (1.8.2)
responders (2.4.1)
actionpack (>= 4.2.0, < 6.0)
railties (>= 4.2.0, < 6.0)
@ -629,60 +453,38 @@ GEM
redis-namespace (~> 1.3)
sinatra (>= 0.9.2)
vegas (~> 0.1.2)
resque-dynamic-queues (0.8.1)
resque (~> 1.10)
resque-failed-job-mailer (0.0.3)
resque-lonely_job (1.0.2)
resque (>= 1.2)
resque-retry (1.7.4)
resque (>= 1.25, < 3.0)
resque-scheduler (~> 4.0)
resque-scheduler (4.3.0)
resque-scheduler (4.4.0)
mono_logger (~> 1.0)
redis (~> 3.3)
resque (~> 1.26)
redis (>= 3.3)
resque (>= 1.26)
rufus-scheduler (~> 3.2)
resque_mailer (2.4.3)
actionmailer (>= 3.0)
activesupport (>= 3.0)
resque_spec (0.18.1)
resque (>= 1.26.0)
rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0)
rspec-mocks (>= 3.0.0)
rest-client (2.1.0)
http-accept (>= 1.7.0, < 2.0)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
retriable (3.0.1)
rexml (3.2.5)
rspec-collection_matchers (1.2.0)
rspec-expectations (>= 2.99.0.beta1)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-rails (4.0.2)
actionpack (>= 4.2)
activesupport (>= 4.2)
railties (>= 4.2)
rspec-core (~> 3.10)
rspec-expectations (~> 3.10)
rspec-mocks (~> 3.10)
rspec-support (~> 3.10)
rspec-support (3.10.2)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
rspec-core (2.14.8)
rspec-expectations (2.14.5)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.6)
ruby-prof (0.15.9)
ruby-protocol-buffers (1.2.2)
ruby-xz (0.2.3)
ffi (~> 1.9)
io-like (~> 0.3)
ruby_parser (3.15.1)
sexp_processor (~> 4.9)
rubyzip (1.2.1)
rufus-scheduler (3.7.0)
fugit (~> 1.1, >= 1.1.6)
@ -690,33 +492,10 @@ GEM
crass (~> 1.0.2)
nokogiri (>= 1.8.0)
nokogumbo (~> 2.0)
sass (3.5.5)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
sass-rails (5.0.7)
railties (>= 4.0.0, < 6)
sass (~> 3.1)
sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3)
selenium-webdriver (3.14.0)
childprocess (~> 0.5)
rubyzip (~> 1.2)
sendgrid (1.2.0)
sendgrid (1.2.4)
json
sendgrid_toolkit (1.4.0)
httparty (>= 0.7.6)
sexp_processor (4.15.2)
show_me_the_cookies (5.0.1)
capybara (>= 2, < 4)
signet (0.5.0)
addressable (>= 2.2.3)
faraday (>= 0.9.0.rc5)
jwt (>= 0.1.5)
multi_json (>= 1.0.0)
simple_oauth (0.3.1)
simplecov (0.7.1)
multi_json (~> 1.0)
simplecov-html (~> 0.7.1)
@ -727,72 +506,33 @@ GEM
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
sitemap_generator (6.1.2)
builder (~> 3.0)
slim (4.1.0)
temple (>= 0.7.6, < 0.9)
tilt (>= 2.0.6, < 2.1)
spork (0.9.0)
sprockets (3.6.3)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-es6 (0.9.2)
babel-source (>= 5.8.11)
babel-transpiler
sprockets-rails (3.2.2)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
sprockets-rails (2.3.2)
actionpack (>= 3.0)
activesupport (>= 3.0)
sprockets (>= 2.8, < 4.0)
stripe (5.29.0)
stud (0.0.23)
temple (0.8.2)
test-unit (3.4.0)
power_assert
sys-uname (1.2.2)
ffi (~> 1.1)
thor (1.1.0)
thread_safe (0.3.6)
tilt (2.0.10)
timecop (0.9.2)
ttfunk (1.5.1)
twitter (7.0.0)
addressable (~> 2.3)
buftok (~> 0.2.0)
equalizer (~> 0.0.11)
http (~> 4.0)
http-form_data (~> 2.0)
http_parser.rb (~> 0.6.0)
memoizable (~> 0.4.0)
multipart-post (~> 2.0)
naught (~> 1.0)
simple_oauth (~> 0.3.0)
tzinfo (1.2.9)
thread_safe (~> 0.1)
uglifier (4.2.0)
execjs (>= 0.3.0, < 3)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.7)
unicorn (5.8.0)
kgio (~> 2.6)
raindrops (~> 0.7)
uuidtools (2.1.2)
vegas (0.1.11)
rack (>= 1.0.0)
warden (1.2.7)
rack (>= 1.0)
webdrivers (4.1.2)
nokogiri (~> 1.6)
rubyzip (~> 1.0)
selenium-webdriver (>= 3.0, < 4.0)
webmock (3.12.2)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
will_paginate (3.3.0)
xml-simple (1.1.8)
xmlrpc (0.3.1)
xpath (3.2.0)
nokogiri (~> 1.8)
zip-codes (0.2.1)
PLATFORMS
@ -800,138 +540,76 @@ PLATFORMS
DEPENDENCIES
aasm
activerecord-import (~> 0.4.1)
amqp (= 0.9.8)
actionmailer (= 4.2.8)
actionpack (= 4.2.8)
activerecord (= 4.2.8)
amqp
auto_strip_attributes (= 2.6.0)
aws-sdk (~> 1)
bcrypt (= 3.1.13)
bootstrap-will_paginate (= 0.0.6)
bower-rails (~> 0.9.2)
bugsnag (= 5.3.2)
builder
byebug
capybara
capybara-screenshot (= 1.0.25)
carmen
carrierwave (= 0.11.2)
carrierwave_direct
cause
coffee-rails
coffee-script-source (= 1.12.2)
database_cleaner (= 1.3.0)
cucumber
database_cleaner
devise (= 3.3.0)
elasticsearch
em-websocket (>= 0.4.0)
email_validator (= 1.6.0)
eventmachine (= 1.2.3)
execjs (= 2.6.0)
factory_girl_rails
faker (= 1.3.0)
evented-spec
factory_girl
faraday (= 0.9.2)
fb_graph (= 2.5.9)
filepicker-rails (= 0.1.0)
fog
fog-brightbox (= 0.11.0)
fpm
geokit
geokit-rails
god
gon (~> 4.1.0)
google-api-client
haml-rails (= 0.9.0)
htmlentities
icalendar (= 2.4.0)
influxdb (= 0.3.14)
influxdb-rails (= 0.1.12)
iso-639
jam_ruby!
jam_websockets!
jampb!
jquery-rails
jquery-ui-rails (= 4.2.1)
kickbox
language_list
launchy (= 2.1.1)
logging (= 1.7.2)
multi_json
logging
mime-types (= 1.25.1)
mimemagic!
netaddr (= 1.5.1)
newrelic_rpm
nokogiri (= 1.10.10)
non-stupid-digest-assets
oj (= 3.1.3)
omniauth
omniauth-facebook
omniauth-google-oauth2
omniauth-stripe-connect
omniauth-twitter
paypal-sdk-merchant-jk (= 1.118.1)
pg (= 0.17.1)
postgres-copy
postgres_ext
prawn-table
protected_attributes
pry
puma
quiet_assets
rabl (= 0.13.1)
rack-test
rails (= 4.2.8)
rails-assets-bluebird!
rails-assets-classnames!
rails-assets-react-select (= 0.6.7)!
rails-assets-reflux (= 0.3.0)!
rails-observers
railties (= 4.2.8)
react-rails (= 1.3.3)
rb-readline
recurly (= 2.18.16)
redis (= 3.3.3)
redis-namespace (= 1.5.3)
responders (~> 2.0)
resque
resque-dynamic-queues
resque-failed-job-mailer
resque-lonely_job (~> 1.0.0)
resque-retry
resque-scheduler (= 4.3.0)
resque_mailer
resque_spec
rest-client
retriable (= 3.0.1)
rspec-collection_matchers
rspec-rails
rspec (= 2.14.1)
ruby-prof (= 0.15.9)
ruby-protocol-buffers (= 1.2.2)
rubyzip (= 1.2.1)
sanitize
sass (= 3.5.5)
sass-rails (= 5.0.7)
selenium-webdriver
sendgrid (= 1.2.0)
sendgrid
sendgrid_toolkit (>= 1.1.1)
show_me_the_cookies
signet (= 0.5.0)
simplecov (~> 0.7.1)
simplecov-rcov
sitemap_generator
slim
spork (= 0.9.0)
sprockets (= 3.6.3)
sprockets-es6
sprockets-rails (= 2.3.2)
stripe
test-unit
timecop
twitter
uglifier
unf
unicorn
uuidtools (= 2.1.2)
webdrivers (~> 4.0)
webmock (~> 3.11, >= 3.11.2)
will_paginate
zip-codes
RUBY VERSION
ruby 2.4.1p111
ruby 2.3.3p222
BUNDLED WITH
1.17.3

View File

@ -9,12 +9,11 @@ PATH
jam_ruby (0.1.1)
GEM
remote: http://rubygems.org/
remote: https://jamjam:blueberryjam@int.jamkazam.com/gems/
remote: https://int.jamkazam.com/gems/
remote: http://rubygems.org/
specs:
CFPropertyList (2.3.6)
aasm (5.1.1)
aasm (5.2.0)
concurrent-ruby (~> 1.0)
actionmailer (4.2.8)
actionpack (= 4.2.8)
@ -58,7 +57,7 @@ GEM
amq-protocol (>= 2.2.0)
eventmachine
arel (6.0.4)
arr-pm (0.0.10)
arr-pm (0.0.11)
cabin (> 0)
auto_strip_attributes (2.6.0)
activerecord (>= 4.0)
@ -67,7 +66,7 @@ GEM
aws-sdk-v1 (1.67.0)
json (~> 1.4)
nokogiri (~> 1)
backports (3.20.2)
backports (3.21.0)
bcrypt (3.1.13)
bugsnag (5.3.2)
builder (3.2.4)
@ -79,11 +78,9 @@ GEM
mime-types (>= 1.16)
mimemagic (>= 0.3.0)
cause (0.1)
childprocess (0.9.0)
ffi (~> 1.0, >= 1.0.11)
clamp (1.0.1)
coderay (1.1.3)
concurrent-ruby (1.1.8)
concurrent-ruby (1.1.9)
crass (1.0.6)
cucumber (4.1.0)
builder (~> 3.2, >= 3.2.3)
@ -135,22 +132,22 @@ GEM
elasticsearch-transport (7.4.0)
faraday
multi_json
em-websocket (0.5.2)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
http_parser.rb (~> 0)
email_validator (1.6.0)
activemodel
erubis (2.7.0)
et-orbi (1.2.4)
et-orbi (1.2.6)
tzinfo
evented-spec (0.9.0)
eventmachine (1.2.7)
excon (0.79.0)
excon (0.89.0)
factory_girl (4.9.0)
activesupport (>= 3.0.0)
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
ffi (1.12.2)
ffi (1.15.4)
fission (0.5.0)
CFPropertyList (~> 2.2)
fog (1.41.0)
@ -243,7 +240,7 @@ GEM
fog-json (1.2.0)
fog-core
multi_json (~> 1.10)
fog-local (0.6.0)
fog-local (0.7.0)
fog-core (>= 1.27, < 3.0)
fog-openstack (0.3.10)
fog-core (>= 1.45, <= 2.1.0)
@ -297,37 +294,35 @@ GEM
fog-core
fog-xml
xmlrpc
fog-xml (0.1.3)
fog-xml (0.1.4)
fog-core
nokogiri (>= 1.5.11, < 2.0.0)
formatador (0.2.5)
fpm (1.12.0)
arr-pm (~> 0.0.10)
formatador (0.3.0)
fpm (1.14.1)
arr-pm (~> 0.0.11)
backports (>= 2.6.2)
cabin (>= 0.6.0)
childprocess (< 1.0.0)
clamp (~> 1.0.0)
ffi (~> 1.12.0)
git (>= 1.3.0, < 2.0)
json (>= 1.7.7, < 3.0)
pleaserun (~> 0.0.29)
ruby-xz (~> 0.2.3)
rexml
stud
fugit (1.4.2)
fugit (1.5.2)
et-orbi (~> 1.1, >= 1.1.8)
raabro (~> 1.4)
geokit (1.13.1)
geokit-rails (2.3.2)
geokit (~> 1.5)
rails (>= 3.0)
git (1.8.1)
git (1.10.0)
rchardet (~> 1.8)
globalid (0.4.2)
activesupport (>= 4.2.0)
http-accept (1.7.0)
http-cookie (1.0.3)
http-cookie (1.0.4)
domain_name (~> 0.5)
http_parser.rb (0.6.0)
http_parser.rb (0.8.0)
httparty (0.16.2)
multi_xml (>= 0.5.2)
i18n (0.9.5)
@ -335,7 +330,6 @@ GEM
icalendar (2.4.0)
inflecto (0.0.2)
insist (1.0.0)
io-like (0.3.1)
ipaddress (0.8.3)
iso-639 (0.3.5)
json (1.8.6)
@ -344,9 +338,10 @@ GEM
json (>= 1.8)
language_list (1.2.1)
little-plugger (1.1.4)
logging (1.7.2)
little-plugger (>= 1.1.3)
loofah (2.9.0)
logging (2.3.0)
little-plugger (~> 1.1)
multi_json (~> 1.14)
loofah (2.13.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
@ -354,11 +349,13 @@ GEM
method_source (1.0.0)
middleware (0.1.0)
mime-types (1.25.1)
mimemagic (0.3.5)
mini_mime (1.0.2)
mimemagic (0.4.3)
nokogiri (~> 1)
rake
mini_mime (1.1.2)
mini_portile2 (2.4.0)
minitest (5.14.3)
mono_logger (1.1.0)
minitest (5.15.0)
mono_logger (1.1.1)
multi_json (1.15.0)
multi_test (0.1.2)
multi_xml (0.6.0)
@ -366,17 +363,17 @@ GEM
mustache (0.99.8)
netaddr (1.5.1)
netrc (0.11.0)
newrelic_rpm (6.15.0)
newrelic_rpm (8.2.0)
nokogiri (1.10.10)
mini_portile2 (~> 2.4.0)
nokogumbo (2.0.4)
nokogumbo (2.0.5)
nokogiri (~> 1.8, >= 1.8.4)
oj (3.1.3)
optimist (3.0.1)
orm_adapter (0.5.0)
pg (0.17.1)
pg_array_parser (0.0.9)
pleaserun (0.0.31)
pleaserun (0.0.32)
cabin (> 0)
clamp
dotenv
@ -398,7 +395,7 @@ GEM
middleware
thor
thread_safe
pry (0.13.1)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
raabro (1.4.0)
@ -418,13 +415,13 @@ GEM
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.8)
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
rails-deprecated_sanitizer (1.0.4)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.9)
activesupport (>= 4.2.0, < 5.0)
nokogiri (~> 1.6)
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.3.0)
rails-html-sanitizer (1.4.2)
loofah (~> 2.3)
rails-observers (0.1.5)
activemodel (>= 4.0)
@ -433,7 +430,7 @@ GEM
activesupport (= 4.2.8)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (13.0.3)
rake (13.0.6)
rb-readline (0.5.5)
rbvmomi (2.4.1)
builder (~> 3.0)
@ -457,14 +454,14 @@ GEM
resque-failed-job-mailer (0.0.3)
resque-lonely_job (1.0.2)
resque (>= 1.2)
resque-retry (1.7.4)
resque-retry (1.7.6)
resque (>= 1.25, < 3.0)
resque-scheduler (~> 4.0)
resque-scheduler (4.4.0)
resque-scheduler (4.5.0)
mono_logger (~> 1.0)
redis (>= 3.3)
resque (>= 1.26)
rufus-scheduler (~> 3.2)
resque (>= 1.27)
rufus-scheduler (~> 3.2, < 3.7)
resque_mailer (2.4.3)
actionmailer (>= 3.0)
activesupport (>= 3.0)
@ -473,6 +470,7 @@ GEM
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
rexml (3.2.5)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
@ -483,11 +481,8 @@ GEM
rspec-mocks (2.14.6)
ruby-prof (0.15.9)
ruby-protocol-buffers (1.2.2)
ruby-xz (0.2.3)
ffi (~> 1.9)
io-like (~> 0.3)
rubyzip (1.2.1)
rufus-scheduler (3.7.0)
rufus-scheduler (3.6.0)
fugit (~> 1.1, >= 1.1.6)
sanitize (5.2.3)
crass (~> 1.0.2)
@ -514,7 +509,7 @@ GEM
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
stripe (5.29.0)
stripe (5.42.0)
stud (0.0.23)
sys-uname (1.2.2)
ffi (~> 1.1)
@ -525,15 +520,18 @@ GEM
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.7)
unf_ext (0.0.8)
uuidtools (2.1.2)
vegas (0.1.11)
rack (>= 1.0.0)
warden (1.2.7)
rack (>= 1.0)
will_paginate (3.3.0)
xml-simple (1.1.8)
xmlrpc (0.3.1)
webrick (1.7.0)
will_paginate (3.3.1)
xml-simple (1.1.9)
rexml
xmlrpc (0.3.2)
webrick
zip-codes (0.2.1)
PLATFORMS
@ -610,7 +608,7 @@ DEPENDENCIES
zip-codes
RUBY VERSION
ruby 2.4.1p111
ruby 2.3.3p222
BUNDLED WITH
1.17.3