Skip to content

Instantly share code, notes, and snippets.

@CodingAnarchy
Created August 17, 2017 21:06
Show Gist options
  • Save CodingAnarchy/c33e83860c09b8755e0838c7d1d654cc to your computer and use it in GitHub Desktop.
Save CodingAnarchy/c33e83860c09b8755e0838c7d1d654cc to your computer and use it in GitHub Desktop.
Bundle Env

Environment

Bundler   1.15.3
Rubygems  2.6.10
Ruby      2.2.6p396 (2016-11-15 revision 56800) [x86_64-darwin16]
GEM_HOME  /Users/vision/.rvm/gems/ruby-2.2.6
GEM_PATH  /Users/vision/.rvm/gems/ruby-2.2.6:/Users/vision/.rvm/gems/ruby-2.2.6@global
RVM       1.29.2 master
Git       2.14.1
Platform  x86_64-darwin-16
OpenSSL   OpenSSL 1.0.2k  26 Jan 2017
rubygems-bundler (1.4.4)

Gemfile

Gemfile

source 'https://rubygems.org'
ruby '2.2.6'

gem 'concurrent-ruby-ext'
gem 'concurrent-ruby'

gem 'activerecord-import', '~> 0.19'
gem 'active_model_serializers'
gem 'acts_as_list'
gem 'american_date'
gem 'auto_strip_attributes', '~> 2.1'
gem 'aws-sdk'
gem 'baby_squeel'
gem 'bootstrap-sass'
gem 'bootstrap-toggle-rails'
gem 'bson'
gem 'bson_ext'
gem 'carrierwave'
gem 'carrierwave-base64'
gem 'ckeditor'
gem 'coffee-rails', '~> 4.1.0'
gem 'comma', '~> 4.0.0'
gem 'connection_pool'
gem 'countries', require: 'countries/global'
gem 'country_select'
gem 'counter_culture', '~> 1.5.1'
gem 'daemons'
gem 'devise'
gem 'devise_invitable'
gem 'email_validator'
gem 'enumerize', '~> 1.1', '>= 1.1.1'
gem 'fancybox2-rails'
gem 'faye-websocket'
gem 'flag_shih_tzu'
gem 'fog'
gem 'font-awesome-rails'
gem 'geoip'
gem 'geocoder'
gem 'haml-rails'
gem 'high_voltage', '~> 3.0.0'
gem 'ice_cube', git: 'https://github.com/seejohnrun/ice_cube.git' # Needed until 0.16.2 is released
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'mini_magick'
gem 'momentjs-rails'
gem 'multi_json'
gem 'oj'
gem 'paper_trail'
gem 'paper_trail-globalid'
gem 'paranoia', '~> 2.0'
gem 'pg'
gem 'phony_rails'
gem 'prawn-rails', git: 'https://github.com/cortiz/prawn-rails.git'
gem 'prawn-table'
gem 'combine_pdf'
gem 'puma'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '4.2.1'
gem 'rails_admin', git: 'https://github.com/sferik/rails_admin.git'
gem 'rails-observers'
gem 'ransack'
gem 'react-rails'
gem 'redis'
gem 'redis-rails'
gem 'redis-session-store'
gem 'responders', '~> 2.0'
gem 'resque-scheduler'
gem 'resque-web', require: 'resque_web'
gem 'rest-client'
gem 'rinku'
gem 'rollbar', '~> 2.13.2'
gem 'roo'
gem 'rpush'
gem 'ruby-progressbar'
gem 'sass-rails', '~> 5.0.0'
gem 'scout_apm', '~> 2.1'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'select2-rails'
gem 'simple_calendar', "~> 2.0"
gem 'simple_form', '~> 3.2', '>= 3.2.1'
gem 'nested_form'
gem 'slackistrano'
gem 'spreadsheet'
gem 'therubyracer', platforms: :ruby
gem 'timecop', '~> 0.6.3'
gem 'timezone'
gem 'tinymce-rails', '~> 4.3.12'
gem 'uglifier', '>= 1.3.0'
gem 'useragent'
gem 'verbs'
gem 'whenever', require: false
gem 'where-or', git: 'https://github.com/trappist/where-or.git'
gem 'wicked'
gem 'will_paginate'
gem 'will_paginate-bootstrap'
gem 'workflow'
gem 'breadcrumbs_on_rails', git: 'https://github.com/ngelx/breadcrumbs_on_rails.git'
gem 'recurring_select', git: 'https://github.com/sahild/recurring_select'
gem "bootstrap-switch-rails", git: "https://github.com/manuelvanrijn/bootstrap-switch-rails"

group :development do
  gem 'capistrano', '~> 3.5'
  gem 'capistrano-rails', '~> 1.1.1'
  gem 'capistrano-bundler', '~> 1.1.2'
  gem 'capistrano-rvm', require: false
  gem 'capistrano3-puma', git: 'https://github.com/seuros/capistrano-puma.git'
  gem "capistrano-resque", "~> 0.2.2", require: false
  gem 'haml_lint'
  gem 'hirb'
  gem 'meta_request' # chrome console https://github.com/dejan/rails_panel
  gem 'rubocop'
  gem 'reek'
  gem 'traceroute'
  gem 'quiet_assets'
  gem 'web-console', '~> 2.0'
end

group :development, :test do
  gem 'awesome_print'
  gem 'byebug'
  gem 'letter_opener'
  gem 'pry-byebug'
  gem 'pry-rails'
  gem 'pry-remote'
  gem 'spring'
end

group :staging, :development, :test do
  gem 'bullet'
end

group :test do
  gem 'capybara', '~> 2.5.0'
  gem 'capybara-email'
  gem 'database_cleaner', '~> 1.5.1'
  gem 'email_spec'
  gem 'factory_girl_rails', '~> 4.8'
  gem 'faker', '~> 1.8'
  gem 'launchy', '~> 2.3.0'
  gem 'mocha', '~> 0.13.3', require: false
  gem 'pdf-inspector', require: 'pdf/inspector'
  gem 'pdf-reader', '1.1.1'
  gem 'rack-test'
  gem 'rspec-rails'
  gem 'rspec-activemodel-mocks'
  gem 'shoulda', '~> 3.5'
  gem 'simplecov', require: false
  gem 'vcr', '~> 3.0.3'
  gem 'webmock', '~> 2.1.0'
  gem 'with_model'
  gem 'zonebie'
end

Gemfile.lock

GIT
  remote: https://github.com/cortiz/prawn-rails.git
  revision: ea0a3c515975d94489662a0d87b9bd824f27b02d
  specs:
    prawn-rails (1.0.0)
      prawn
      prawn-table
      rails (>= 3.1.0)

GIT
  remote: https://github.com/manuelvanrijn/bootstrap-switch-rails
  revision: 6533e1918cb2fe75a4bf1c8e9afaad30c7ee3585
  specs:
    bootstrap-switch-rails (3.3.3)

GIT
  remote: https://github.com/ngelx/breadcrumbs_on_rails.git
  revision: 2572a65dc4aff90fbc6bd486483bc313d05c5f92
  specs:
    breadcrumbs_on_rails (2.3.0)

GIT
  remote: https://github.com/sahild/recurring_select
  revision: 08d08c0cd0fd792f4251d31dc90c1f449b83d712
  specs:
    recurring_select (2.0.0)
      coffee-rails (>= 3.1)
      ice_cube (>= 0.11)
      jquery-rails (>= 3.0)
      rails (>= 3.2)
      sass-rails (>= 4.0)

GIT
  remote: https://github.com/seejohnrun/ice_cube.git
  revision: b4e2025709713fd7e25fcccc3cfe46d2384331a6
  specs:
    ice_cube (0.16.2)

GIT
  remote: https://github.com/seuros/capistrano-puma.git
  revision: e18b30c18aceceed003e8007c268125317a17a9d
  specs:
    capistrano3-puma (2.0.0)
      capistrano (~> 3.5)
      capistrano-bundler
      puma (~> 3.4)

GIT
  remote: https://github.com/sferik/rails_admin.git
  revision: bfdcf35cb1d364641e240902d35a74aa9186b531
  specs:
    rails_admin (1.1.1)
      builder (~> 3.1)
      coffee-rails (~> 4.0)
      font-awesome-rails (>= 3.0, < 5)
      haml (~> 4.0)
      jquery-rails (>= 3.0, < 5)
      jquery-ui-rails (~> 5.0)
      kaminari (>= 0.14, < 2.0)
      nested_form (~> 0.3)
      rack-pjax (>= 0.7)
      rails (>= 4.0, < 6)
      remotipart (~> 1.3)
      sass-rails (>= 4.0, < 6)

GIT
  remote: https://github.com/trappist/where-or.git
  revision: 439296975bf8a4f2684c4b570978a9e2e33bbc19
  specs:
    where-or (0.1.5)

GEM
  remote: https://rubygems.org/
  specs:
    Ascii85 (1.0.2)
    CFPropertyList (2.3.2)
    actionmailer (4.2.1)
      actionpack (= 4.2.1)
      actionview (= 4.2.1)
      activejob (= 4.2.1)
      mail (~> 2.5, >= 2.5.4)
      rails-dom-testing (~> 1.0, >= 1.0.5)
    actionpack (4.2.1)
      actionview (= 4.2.1)
      activesupport (= 4.2.1)
      rack (~> 1.6)
      rack-test (~> 0.6.2)
      rails-dom-testing (~> 1.0, >= 1.0.5)
      rails-html-sanitizer (~> 1.0, >= 1.0.1)
    actionview (4.2.1)
      activesupport (= 4.2.1)
      builder (~> 3.1)
      erubis (~> 2.7.0)
      rails-dom-testing (~> 1.0, >= 1.0.5)
      rails-html-sanitizer (~> 1.0, >= 1.0.1)
    active_model_serializers (0.10.2)
      actionpack (>= 4.1, < 6)
      activemodel (>= 4.1, < 6)
      jsonapi (~> 0.1.1.beta2)
      railties (>= 4.1, < 6)
    activejob (4.2.1)
      activesupport (= 4.2.1)
      globalid (>= 0.3.0)
    activemodel (4.2.1)
      activesupport (= 4.2.1)
      builder (~> 3.1)
    activerecord (4.2.1)
      activemodel (= 4.2.1)
      activesupport (= 4.2.1)
      arel (~> 6.0)
    activerecord-import (0.19.1)
      activerecord (>= 3.2)
    activesupport (4.2.1)
      i18n (~> 0.7)
      json (~> 1.7, >= 1.7.7)
      minitest (~> 5.1)
      thread_safe (~> 0.3, >= 0.3.4)
      tzinfo (~> 1.1)
    acts_as_list (0.9.5)
      activerecord (>= 3.0)
    addressable (2.4.0)
    after_commit_action (1.0.1)
      activerecord (>= 3.0.0)
      activesupport (>= 3.0.0)
    airbrussh (1.1.1)
      sshkit (>= 1.6.1, != 1.7.0)
    american_date (1.1.1)
    ansi (1.5.0)
    arel (6.0.3)
    ast (2.3.0)
    auto_strip_attributes (2.1.0)
      activerecord (>= 3.0)
    autoprefixer-rails (7.1.1)
      execjs
    awesome_print (1.7.0)
    aws-sdk (2.7.3)
      aws-sdk-resources (= 2.7.3)
    aws-sdk-core (2.7.3)
      aws-sigv4 (~> 1.0)
      jmespath (~> 1.0)
    aws-sdk-resources (2.7.3)
      aws-sdk-core (= 2.7.3)
    aws-sigv4 (1.0.0)
    axiom-types (0.1.1)
      descendants_tracker (~> 0.0.4)
      ice_nine (~> 0.11.0)
      thread_safe (~> 0.3, >= 0.3.1)
    babel-source (5.8.35)
    babel-transpiler (0.7.0)
      babel-source (>= 4.0, < 6)
      execjs (~> 2.0)
    baby_squeel (1.1.3)
      activerecord (>= 4.2.0)
      polyamorous (~> 1.3)
    bcrypt (3.1.11)
    binding_of_caller (0.7.2)
      debug_inspector (>= 0.0.1)
    bootstrap-sass (3.3.7)
      autoprefixer-rails (>= 5.2.1)
      sass (>= 3.3.4)
    bootstrap-toggle-rails (2.2.1.0)
    bson (1.12.5)
    bson_ext (1.12.5)
      bson (~> 1.12.5)
    builder (3.2.3)
    bullet (5.6.1)
      activesupport (>= 3.0.0)
      uniform_notifier (~> 1.10.0)
    byebug (9.0.5)
    callsite (0.0.11)
    capistrano (3.6.1)
      airbrussh (>= 1.0.0)
      capistrano-harrow
      i18n
      rake (>= 10.0.0)
      sshkit (>= 1.9.0)
    capistrano-bundler (1.1.4)
      capistrano (~> 3.1)
      sshkit (~> 1.2)
    capistrano-harrow (0.5.3)
    capistrano-rails (1.1.7)
      capistrano (~> 3.1)
      capistrano-bundler (~> 1.1)
    capistrano-resque (0.2.2)
      capistrano
      resque
      resque-scheduler
    capistrano-rvm (0.1.2)
      capistrano (~> 3.0)
      sshkit (~> 1.2)
    capybara (2.5.0)
      mime-types (>= 1.16)
      nokogiri (>= 1.3.3)
      rack (>= 1.0.0)
      rack-test (>= 0.5.4)
      xpath (~> 2.0)
    capybara-email (2.5.0)
      capybara (~> 2.4)
      mail
    carrierwave (0.11.2)
      activemodel (>= 3.2.0)
      activesupport (>= 3.2.0)
      json (>= 1.7)
      mime-types (>= 1.16)
      mimemagic (>= 0.3.0)
    carrierwave-base64 (2.3.1)
      carrierwave (>= 0.8.0, < 0.12.0)
    chronic (0.10.2)
    ckeditor (4.2.0)
      cocaine
      orm_adapter (~> 0.5.0)
    climate_control (0.0.3)
      activesupport (>= 3.0)
    cocaine (0.5.8)
      climate_control (>= 0.0.3, < 1.0)
    codeclimate-engine-rb (0.4.0)
      virtus (~> 1.0)
    coderay (1.1.1)
    coercible (1.0.0)
      descendants_tracker (~> 0.0.1)
    coffee-rails (4.1.1)
      coffee-script (>= 2.2.0)
      railties (>= 4.0.0, < 5.1.x)
    coffee-script (2.4.1)
      coffee-script-source
      execjs
    coffee-script-source (1.10.0)
    combine_pdf (0.2.36)
      ruby-rc4 (>= 0.1.5)
    comma (4.0.1)
      activesupport (>= 4.0.0, < 5.1)
    commonjs (0.2.7)
    concurrent-ruby (1.0.2)
    concurrent-ruby-ext (1.0.2)
      concurrent-ruby (~> 1.0.2)
    connection_pool (2.2.0)
    counter_culture (1.5.1)
      activerecord (>= 3.0.0)
      activesupport (>= 3.0.0)
      after_commit_action (~> 1.0)
    countries (1.2.5)
      currencies (~> 0.4.2)
      i18n_data (~> 0.7.0)
    country_select (2.5.2)
      countries (~> 1.2.0)
      sort_alphabetical (~> 1.0)
    crack (0.4.3)
      safe_yaml (~> 1.0.0)
    currencies (0.4.2)
    daemons (1.2.3)
    database_cleaner (1.5.3)
    debug_inspector (0.0.2)
    descendants_tracker (0.0.4)
      thread_safe (~> 0.3, >= 0.3.1)
    devise (4.2.0)
      bcrypt (~> 3.0)
      orm_adapter (~> 0.1)
      railties (>= 4.1.0, < 5.1)
      responders
      warden (~> 1.2.3)
    devise_invitable (1.6.0)
      actionmailer (>= 3.2.6)
      devise (>= 3.2.0)
    diff-lcs (1.3)
    docile (1.1.5)
    domain_name (0.5.20161129)
      unf (>= 0.0.5, < 1.0.0)
    email_spec (2.1.0)
      htmlentities (~> 4.3.3)
      launchy (~> 2.1)
      mail (~> 2.6.3)
    email_validator (1.6.0)
      activemodel
    enumerize (1.1.1)
      activesupport (>= 3.2)
    equalizer (0.0.11)
    erubis (2.7.0)
    eventmachine (1.2.3)
    excon (0.51.0)
    execjs (2.7.0)
    factory_girl (4.8.0)
      activesupport (>= 3.0.0)
    factory_girl_rails (4.8.0)
      factory_girl (~> 4.8.0)
      railties (>= 3.0.0)
    faker (1.8.4)
      i18n (~> 0.5)
    fancybox2-rails (0.2.8)
      railties (>= 3.1.0, < 5.0)
    faye-websocket (0.10.7)
      eventmachine (>= 0.12.0)
      websocket-driver (>= 0.5.1)
    fission (0.5.0)
      CFPropertyList (~> 2.2)
    flag_shih_tzu (0.3.15)
    fog (1.38.0)
      fog-aliyun (>= 0.1.0)
      fog-atmos
      fog-aws (>= 0.6.0)
      fog-brightbox (~> 0.4)
      fog-cloudatcost (~> 0.1.0)
      fog-core (~> 1.32)
      fog-dynect (~> 0.0.2)
      fog-ecloud (~> 0.1)
      fog-google (<= 0.1.0)
      fog-json
      fog-local
      fog-openstack
      fog-powerdns (>= 0.1.1)
      fog-profitbricks
      fog-rackspace
      fog-radosgw (>= 0.0.2)
      fog-riakcs
      fog-sakuracloud (>= 0.0.4)
      fog-serverlove
      fog-softlayer
      fog-storm_on_demand
      fog-terremark
      fog-vmfusion
      fog-voxel
      fog-vsphere (>= 0.4.0)
      fog-xenserver
      fog-xml (~> 0.1.1)
      ipaddress (~> 0.5)
    fog-aliyun (0.1.0)
      fog-core (~> 1.27)
      fog-json (~> 1.0)
      ipaddress (~> 0.8)
      xml-simple (~> 1.1)
    fog-atmos (0.1.0)
      fog-core
      fog-xml
    fog-aws (0.10.0)
      fog-core (~> 1.38)
      fog-json (~> 1.0)
      fog-xml (~> 0.1)
      ipaddress (~> 0.8)
    fog-brightbox (0.11.0)
      fog-core (~> 1.22)
      fog-json
      inflecto (~> 0.0.2)
    fog-cloudatcost (0.1.2)
      fog-core (~> 1.36)
      fog-json (~> 1.0)
      fog-xml (~> 0.1)
      ipaddress (~> 0.8)
    fog-core (1.42.0)
      builder
      excon (~> 0.49)
      formatador (~> 0.2)
    fog-dynect (0.0.3)
      fog-core
      fog-json
      fog-xml
    fog-ecloud (0.3.0)
      fog-core
      fog-xml
    fog-google (0.1.0)
      fog-core
      fog-json
      fog-xml
    fog-json (1.0.2)
      fog-core (~> 1.0)
      multi_json (~> 1.10)
    fog-local (0.3.0)
      fog-core (~> 1.27)
    fog-openstack (0.1.9)
      fog-core (>= 1.40)
      fog-json (>= 1.0)
      ipaddress (>= 0.8)
    fog-powerdns (0.1.1)
      fog-core (~> 1.27)
      fog-json (~> 1.0)
      fog-xml (~> 0.1)
    fog-profitbricks (0.0.5)
      fog-core
      fog-xml
      nokogiri
    fog-rackspace (0.1.1)
      fog-core (>= 1.35)
      fog-json (>= 1.0)
      fog-xml (>= 0.1)
      ipaddress (>= 0.8)
    fog-radosgw (0.0.5)
      fog-core (>= 1.21.0)
      fog-json
      fog-xml (>= 0.0.1)
    fog-riakcs (0.1.0)
      fog-core
      fog-json
      fog-xml
    fog-sakuracloud (1.7.5)
      fog-core
      fog-json
    fog-serverlove (0.1.2)
      fog-core
      fog-json
    fog-softlayer (1.1.3)
      fog-core
      fog-json
    fog-storm_on_demand (0.1.1)
      fog-core
      fog-json
    fog-terremark (0.1.0)
      fog-core
      fog-xml
    fog-vmfusion (0.1.0)
      fission
      fog-core
    fog-voxel (0.1.0)
      fog-core
      fog-xml
    fog-vsphere (1.0.0)
      fog-core
      rbvmomi (~> 1.8)
    fog-xenserver (0.2.3)
      fog-core
      fog-xml
    fog-xml (0.1.2)
      fog-core
      nokogiri (~> 1.5, >= 1.5.11)
    font-awesome-rails (4.6.3.1)
      railties (>= 3.2, < 5.1)
    formatador (0.2.5)
    geocoder (1.4.0)
    geoip (1.6.1)
    git-version-bump (0.15.1)
    globalid (0.3.7)
      activesupport (>= 4.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)
    haml_lint (0.19.0)
      haml (~> 4.0)
      rake (>= 10, < 13)
      rubocop (>= 0.36.0)
      sysexits (~> 1.1)
    hashdiff (0.3.0)
    high_voltage (3.0.0)
    hirb (0.7.3)
    html2haml (2.0.0)
      erubis (~> 2.7.0)
      haml (~> 4.0.0)
      nokogiri (~> 1.6.0)
      ruby_parser (~> 3.5)
    htmlentities (4.3.4)
    http-cookie (1.0.3)
      domain_name (~> 0.5)
    i18n (0.8.4)
    i18n_data (0.7.0)
    ice_nine (0.11.2)
    inflecto (0.0.2)
    ipaddress (0.8.3)
    jbuilder (2.6.0)
      activesupport (>= 3.0.0, < 5.1)
      multi_json (~> 1.2)
    jmespath (1.3.1)
    jquery-rails (4.1.1)
      rails-dom-testing (>= 1, < 3)
      railties (>= 4.2.0)
      thor (>= 0.14, < 2.0)
    jquery-ui-rails (5.0.5)
      railties (>= 3.2.16)
    json (1.8.6)
    jsonapi (0.1.1.beta2)
      json (~> 1.8)
    kaminari (1.0.1)
      activesupport (>= 4.1.0)
      kaminari-actionview (= 1.0.1)
      kaminari-activerecord (= 1.0.1)
      kaminari-core (= 1.0.1)
    kaminari-actionview (1.0.1)
      actionview
      kaminari-core (= 1.0.1)
    kaminari-activerecord (1.0.1)
      activerecord
      kaminari-core (= 1.0.1)
    kaminari-core (1.0.1)
    launchy (2.3.0)
      addressable (~> 2.3)
    less (2.6.0)
      commonjs (~> 0.2.7)
    less-rails (2.7.1)
      actionpack (>= 4.0)
      less (~> 2.6.0)
      sprockets (> 2, < 4)
      tilt
    letter_opener (1.4.1)
      launchy (~> 2.2)
    libv8 (3.16.14.15)
    loofah (2.0.3)
      nokogiri (>= 1.5.9)
    mail (2.6.4)
      mime-types (>= 1.16, < 4)
    meta_request (0.4.2)
      callsite (~> 0.0, >= 0.0.11)
      rack-contrib (~> 1.1)
      railties (>= 3.0.0, < 5.2.0)
    metaclass (0.0.4)
    method_source (0.8.2)
    mime-types (3.1)
      mime-types-data (~> 3.2015)
    mime-types-data (3.2016.0521)
    mimemagic (0.3.2)
    mini_magick (4.6.1)
    mini_portile2 (2.1.0)
    minitest (5.10.2)
    mocha (0.13.3)
      metaclass (~> 0.0.1)
    momentjs-rails (2.11.1)
      railties (>= 3.1)
    mono_logger (1.1.0)
    multi_json (1.12.1)
    nested_form (0.3.2)
    net-http-persistent (2.9.4)
    net-scp (1.2.1)
      net-ssh (>= 2.6.5)
    net-ssh (3.2.0)
    netrc (0.11.0)
    nokogiri (1.6.8.1)
      mini_portile2 (~> 2.1.0)
    oj (2.17.1)
    orm_adapter (0.5.0)
    paper_trail (5.2.0)
      activerecord (>= 3.0, < 6.0)
      activesupport (>= 3.0, < 6.0)
      request_store (~> 1.1)
    paper_trail-globalid (0.2.0)
      globalid
      paper_trail (>= 3.0.0)
    paranoia (2.1.5)
      activerecord (~> 4.0)
    parser (2.3.3.1)
      ast (~> 2.2)
    pdf-core (0.6.1)
    pdf-inspector (1.2.1)
      pdf-reader (~> 1.0)
    pdf-reader (1.1.1)
      Ascii85 (~> 1.0.0)
      ruby-rc4
    pg (0.18.4)
    phony (2.15.27)
    phony_rails (0.14.2)
      activesupport (>= 3.0)
      phony (~> 2.12)
    polyamorous (1.3.1)
      activerecord (>= 3.0)
    powerpack (0.1.1)
    prawn (2.1.0)
      pdf-core (~> 0.6.1)
      ttfunk (~> 1.4.0)
    prawn-table (0.2.2)
      prawn (>= 1.3.0, < 3.0.0)
    pry (0.10.4)
      coderay (~> 1.1.0)
      method_source (~> 0.8.1)
      slop (~> 3.4)
    pry-byebug (3.4.2)
      byebug (~> 9.0)
      pry (~> 0.10)
    pry-rails (0.3.4)
      pry (>= 0.9.10)
    pry-remote (0.1.8)
      pry (~> 0.9)
      slop (~> 3.0)
    puma (3.7.1)
    quiet_assets (1.1.0)
      railties (>= 3.1, < 5.0)
    rack (1.6.8)
    rack-contrib (1.4.0)
      git-version-bump (~> 0.15)
      rack (~> 1.4)
    rack-cors (0.4.0)
    rack-pjax (1.0.0)
      nokogiri (~> 1.5)
      rack (>= 1.1)
    rack-protection (1.5.3)
      rack
    rack-test (0.6.3)
      rack (>= 1.0)
    rails (4.2.1)
      actionmailer (= 4.2.1)
      actionpack (= 4.2.1)
      actionview (= 4.2.1)
      activejob (= 4.2.1)
      activemodel (= 4.2.1)
      activerecord (= 4.2.1)
      activesupport (= 4.2.1)
      bundler (>= 1.3.0, < 2.0)
      railties (= 4.2.1)
      sprockets-rails
    rails-deprecated_sanitizer (1.0.3)
      activesupport (>= 4.2.0.alpha)
    rails-dom-testing (1.0.8)
      activesupport (>= 4.2.0.beta, < 5.0)
      nokogiri (~> 1.6)
      rails-deprecated_sanitizer (>= 1.0.1)
    rails-html-sanitizer (1.0.3)
      loofah (~> 2.0)
    rails-observers (0.1.2)
      activemodel (~> 4.0)
    railties (4.2.1)
      actionpack (= 4.2.1)
      activesupport (= 4.2.1)
      rake (>= 0.8.7)
      thor (>= 0.18.1, < 2.0)
    rainbow (2.2.1)
    rake (12.0.0)
    ransack (1.8.1)
      actionpack (>= 3.0)
      activerecord (>= 3.0)
      activesupport (>= 3.0)
      i18n
      polyamorous (~> 1.3)
    rbvmomi (1.8.2)
      builder
      nokogiri (>= 1.4.1)
      trollop
    rdoc (4.2.2)
      json (~> 1.4)
    react-rails (1.8.1)
      babel-transpiler (>= 0.7.0)
      coffee-script-source (~> 1.8)
      connection_pool
      execjs
      railties (>= 3.2)
      tilt
    redis (3.3.1)
    redis-namespace (1.5.2)
      redis (~> 3.0, >= 3.0.4)
    redis-session-store (0.9.1)
      actionpack (>= 3, < 5.1)
      redis (~> 3)
    reek (4.5.3)
      codeclimate-engine-rb (~> 0.4.0)
      parser (~> 2.3.1, >= 2.3.1.2)
      rainbow (~> 2.0)
    ref (2.0.0)
    remotipart (1.3.1)
    request_store (1.3.1)
    responders (2.2.0)
      railties (>= 4.2.0, < 5.1)
    resque (1.26.0)
      mono_logger (~> 1.0)
      multi_json (~> 1.0)
      redis-namespace (~> 1.3)
      sinatra (>= 0.9.2)
      vegas (~> 0.1.2)
    resque-scheduler (4.3.0)
      mono_logger (~> 1.0)
      redis (~> 3.3)
      resque (~> 1.26)
      rufus-scheduler (~> 3.2)
    resque-web (0.0.9)
      coffee-rails
      jquery-rails
      resque
      sass-rails
      twitter-bootstrap-rails
    rest-client (2.0.0)
      http-cookie (>= 1.0.2, < 2.0)
      mime-types (>= 1.16, < 4.0)
      netrc (~> 0.8)
    rinku (2.0.2)
    rollbar (2.13.3)
      multi_json
    roo (2.4.0)
      nokogiri (~> 1)
      rubyzip (~> 1.1, < 2.0.0)
    rpush (2.7.0)
      activesupport
      ansi
      multi_json (~> 1.0)
      net-http-persistent
      railties
      thor (>= 0.18.1, < 2.0)
    rspec-activemodel-mocks (1.0.3)
      activemodel (>= 3.0)
      activesupport (>= 3.0)
      rspec-mocks (>= 2.99, < 4.0)
    rspec-core (3.6.0)
      rspec-support (~> 3.6.0)
    rspec-expectations (3.6.0)
      diff-lcs (>= 1.2.0, < 2.0)
      rspec-support (~> 3.6.0)
    rspec-mocks (3.6.0)
      diff-lcs (>= 1.2.0, < 2.0)
      rspec-support (~> 3.6.0)
    rspec-rails (3.6.0)
      actionpack (>= 3.0)
      activesupport (>= 3.0)
      railties (>= 3.0)
      rspec-core (~> 3.6.0)
      rspec-expectations (~> 3.6.0)
      rspec-mocks (~> 3.6.0)
      rspec-support (~> 3.6.0)
    rspec-support (3.6.0)
    rubocop (0.46.0)
      parser (>= 2.3.1.1, < 3.0)
      powerpack (~> 0.1)
      rainbow (>= 1.99.1, < 3.0)
      ruby-progressbar (~> 1.7)
      unicode-display_width (~> 1.0, >= 1.0.1)
    ruby-ole (1.2.12)
    ruby-progressbar (1.8.1)
    ruby-rc4 (0.1.5)
    ruby_parser (3.8.2)
      sexp_processor (~> 4.1)
    rubyzip (1.1.7)
    rufus-scheduler (3.2.1)
    safe_yaml (1.0.4)
    sass (3.4.22)
    sass-rails (5.0.6)
      railties (>= 4.0.0, < 6)
      sass (~> 3.1)
      sprockets (>= 2.8, < 4.0)
      sprockets-rails (>= 2.0, < 4.0)
      tilt (>= 1.1, < 3)
    scout_apm (2.1.24)
    sdoc (0.4.1)
      json (~> 1.7, >= 1.7.7)
      rdoc (~> 4.0)
    select2-rails (4.0.3)
      thor (~> 0.14)
    sexp_processor (4.7.0)
    shoulda (3.5.0)
      shoulda-context (~> 1.0, >= 1.0.1)
      shoulda-matchers (>= 1.4.1, < 3.0)
    shoulda-context (1.2.1)
    shoulda-matchers (2.8.0)
      activesupport (>= 3.0.0)
    simple_calendar (2.2.5)
      rails (>= 3.0)
    simple_form (3.2.1)
      actionpack (> 4, < 5.1)
      activemodel (> 4, < 5.1)
    simplecov (0.12.0)
      docile (~> 1.1.0)
      json (>= 1.8, < 3)
      simplecov-html (~> 0.10.0)
    simplecov-html (0.10.0)
    sinatra (1.4.7)
      rack (~> 1.5)
      rack-protection (~> 1.4)
      tilt (>= 1.3, < 3)
    slackistrano (3.0.1)
      capistrano (>= 3.5.0)
      json
    slop (3.6.0)
    sort_alphabetical (1.0.2)
      unicode_utils (>= 1.2.2)
    spreadsheet (1.1.2)
      ruby-ole (>= 1.0)
    spring (1.7.2)
    sprockets (3.7.0)
      concurrent-ruby (~> 1.0)
      rack (> 1, < 3)
    sprockets-rails (3.1.1)
      actionpack (>= 4.0)
      activesupport (>= 4.0)
      sprockets (>= 3.0.0)
    sshkit (1.11.2)
      net-scp (>= 1.1.2)
      net-ssh (>= 2.8.0)
    sysexits (1.2.0)
    therubyracer (0.12.2)
      libv8 (~> 3.16.14.0)
      ref
    thor (0.19.4)
    thread_safe (0.3.6)
    tilt (2.0.5)
    timecop (0.6.3)
    timezone (1.1.1)
    tinymce-rails (4.3.13)
      railties (>= 3.1.1)
    traceroute (0.5.0)
      rails (>= 3.0.0)
    trollop (2.1.2)
    ttfunk (1.4.0)
    twitter-bootstrap-rails (3.2.2)
      actionpack (>= 3.1)
      execjs (>= 2.2.2, >= 2.2)
      less-rails (>= 2.5.0)
      railties (>= 3.1)
    tzinfo (1.2.3)
      thread_safe (~> 0.1)
    uglifier (3.0.1)
      execjs (>= 0.3.0, < 3)
    unf (0.1.4)
      unf_ext
    unf_ext (0.0.7.2)
    unicode-display_width (1.1.2)
    unicode_utils (1.4.0)
    uniform_notifier (1.10.0)
    useragent (0.16.7)
    vcr (3.0.3)
    vegas (0.1.11)
      rack (>= 1.0.0)
    verbs (2.1.4)
      activesupport (>= 2.3.4)
      i18n
    virtus (1.0.5)
      axiom-types (~> 0.1)
      coercible (~> 1.0)
      descendants_tracker (~> 0.0, >= 0.0.3)
      equalizer (~> 0.0, >= 0.0.9)
    warden (1.2.6)
      rack (>= 1.0)
    web-console (2.3.0)
      activemodel (>= 4.0)
      binding_of_caller (>= 0.7.2)
      railties (>= 4.0)
      sprockets-rails (>= 2.0, < 4.0)
    webmock (2.1.0)
      addressable (>= 2.3.6)
      crack (>= 0.3.2)
      hashdiff
    websocket-driver (0.6.5)
      websocket-extensions (>= 0.1.0)
    websocket-extensions (0.1.2)
    whenever (0.9.7)
      chronic (>= 0.6.3)
    wicked (1.3.0)
      railties (>= 3.0.7)
    will_paginate (3.1.0)
    will_paginate-bootstrap (1.0.1)
      will_paginate (>= 3.0.3)
    with_model (2.0.0)
      activerecord (>= 4.2)
    workflow (1.2.0)
    xml-simple (1.1.5)
    xpath (2.0.0)
      nokogiri (~> 1.3)
    zonebie (0.6.1)

PLATFORMS
  ruby

DEPENDENCIES
  active_model_serializers
  activerecord-import (~> 0.19)
  acts_as_list
  american_date
  auto_strip_attributes (~> 2.1)
  awesome_print
  aws-sdk
  baby_squeel
  bootstrap-sass
  bootstrap-switch-rails!
  bootstrap-toggle-rails
  breadcrumbs_on_rails!
  bson
  bson_ext
  bullet
  byebug
  capistrano (~> 3.5)
  capistrano-bundler (~> 1.1.2)
  capistrano-rails (~> 1.1.1)
  capistrano-resque (~> 0.2.2)
  capistrano-rvm
  capistrano3-puma!
  capybara (~> 2.5.0)
  capybara-email
  carrierwave
  carrierwave-base64
  ckeditor
  coffee-rails (~> 4.1.0)
  combine_pdf
  comma (~> 4.0.0)
  concurrent-ruby
  concurrent-ruby-ext
  connection_pool
  counter_culture (~> 1.5.1)
  countries
  country_select
  daemons
  database_cleaner (~> 1.5.1)
  devise
  devise_invitable
  email_spec
  email_validator
  enumerize (~> 1.1, >= 1.1.1)
  factory_girl_rails (~> 4.8)
  faker (~> 1.8)
  fancybox2-rails
  faye-websocket
  flag_shih_tzu
  fog
  font-awesome-rails
  geocoder
  geoip
  haml-rails
  haml_lint
  high_voltage (~> 3.0.0)
  hirb
  ice_cube!
  jbuilder (~> 2.0)
  jquery-rails
  jquery-ui-rails
  launchy (~> 2.3.0)
  letter_opener
  meta_request
  mini_magick
  mocha (~> 0.13.3)
  momentjs-rails
  multi_json
  nested_form
  oj
  paper_trail
  paper_trail-globalid
  paranoia (~> 2.0)
  pdf-inspector
  pdf-reader (= 1.1.1)
  pg
  phony_rails
  prawn-rails!
  prawn-table
  pry-byebug
  pry-rails
  pry-remote
  puma
  quiet_assets
  rack-cors
  rack-test
  rails (= 4.2.1)
  rails-observers
  rails_admin!
  ransack
  react-rails
  recurring_select!
  redis
  redis-session-store
  reek
  responders (~> 2.0)
  resque-scheduler
  resque-web
  rest-client
  rinku
  rollbar (~> 2.13.2)
  roo
  rpush
  rspec-activemodel-mocks
  rspec-rails
  rubocop
  ruby-progressbar
  sass-rails (~> 5.0.0)
  scout_apm (~> 2.1)
  sdoc (~> 0.4.0)
  select2-rails
  shoulda (~> 3.5)
  simple_calendar (~> 2.0)
  simple_form (~> 3.2, >= 3.2.1)
  simplecov
  slackistrano
  spreadsheet
  spring
  therubyracer
  timecop (~> 0.6.3)
  timezone
  tinymce-rails (~> 4.3.12)
  traceroute
  uglifier (>= 1.3.0)
  useragent
  vcr (~> 3.0.3)
  verbs
  web-console (~> 2.0)
  webmock (~> 2.1.0)
  whenever
  where-or!
  wicked
  will_paginate
  will_paginate-bootstrap
  with_model
  workflow
  zonebie

RUBY VERSION
   ruby 2.2.6p396

BUNDLED WITH
   1.15.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment