Skip to content

Instantly share code, notes, and snippets.

@indirect

indirect/Gemfile Secret

Last active August 29, 2015 14:25
Show Gist options
  • Save indirect/77c0953e6900d44f658b to your computer and use it in GitHub Desktop.
Save indirect/77c0953e6900d44f658b to your computer and use it in GitHub Desktop.
raise "Ruby versions less than 2.0 are unsupported!" if RUBY_VERSION < "2.0.0"
source 'https://rubygems.org'
# rails-assets requires bundler >= 1.8.4, see: https://rails-assets.org/
gem "bundler", ">= 1.8.4"
gem "rake", "~>10.1"
gem "iniparse"
RAILS_VERSION = "~>4.2.3"
gem "activesupport", :github => 'rails/rails'
# ActiveRecord is used by appliance_console
gem "activerecord", :github => 'rails/rails'
# Not locally modified and not required
gem "awesome_spawn", "~> 1.3", :require => false
gem "binary_struct", "~> 2.0", :require => false
gem "excon", "~>0.40", :require => false
gem "ezcrypto", "=0.7", :require => false
gem "facade", "~>1.0.5", :require => false # Used by util/pathname2.rb
gem "ffi", "~>1.9.3", :require => false
gem "ffi-vix_disk_lib", "~>1.0.1", :require => false # used by lib/VixDiskLib
gem "fog", "~>1.30.0", :require => false
gem "fog-core", "!=1.31.1", :require => false
gem "httpclient", "~>2.5.3", :require => false
gem "linux_admin", ">=0.10.1", "<1", :require => false
gem "log4r", "=1.1.8", :require => false
gem "memoist", "~>0.11.0", :require => false
gem "memory_buffer", ">=0.1.0", :require => false
gem "more_core_extensions", "~>1.2.0", :require => false
gem "nokogiri", "~>1.6.0", :require => false
gem "ovirt", "~>0.4.2", :require => false
gem "kubeclient", "=0.1.17", :require => false
gem "openshift_client", "=0.0.8", :require => false
gem "rest-client", :require => false, :git => "git://github.com/rest-client/rest-client.git", :ref => "08480eb86aef1e"
gem "parallel", "~>0.5.21", :require => false
gem "Platform", "=0.4.0", :require => false
gem "rubyzip", "=0.9.5", :require => false # TODO: Review 0.9.7 breaking log collection in FB14646
gem "rufus-lru", "~>1.0.3", :require => false
gem "uuidtools", "~>2.1.3", :require => false
gem "trollop", "~>2.0", :require => false
gem "psych", "~>2.0.12"
gem "apipie-bindings", "~>0.0.12", :require => false
# Linux-only section
if RbConfig::CONFIG["host_os"].include?("linux")
gem "linux_block_device", ">=0.1.0", :require => false
if RbConfig::CONFIG["host_cpu"] == "x86" # 32 bit Linux.
gem "large_file_linux", "~>0.1.0", :require => false
end
end
# qpid group is needed to gate the inclusion of qpid_messaging gem on platforms
# where the qpid-cpp-client-devel package is not available. This includes
# OSX, Windows, and CruiseControl machines.
group :qpid do
gem "qpid_messaging", "~>0.20.0", :require => false
end
# Grouping this mainly to stay consistent with qpid--the other amqp library. In
# a production build, the qpid and rabbit groups should be included
group :rabbit do
gem "bunny", "~>1.0.4", :require => false
end
group :appliance do
gem "highline", "~> 1.6.21", :require => false # Needed for the appliance_console
#gem "minitest", "< 5", :require => false # HACK to run test suite on SCL ruby
gem "rdoc", :require => false # HACK to run test suite on SCL ruby
end
# Locally modified but not required
gem "handsoap", "~>0.2.5", :require => false, :git => "git://github.com/ManageIQ/handsoap.git", :tag => "v0.2.5-2"
gem "rubywbem", :require => false, :git => "git://github.com/ManageIQ/rubywbem.git", :branch => "rubywbem_0_1_0"
# Windows only. Do not put in Gemfile.lock on other platforms.
if Gem.win_platform?
gem "win32-process", "~>0.8.0", :require => false, :platforms => [:mswin, :mingw]
end
### Start of gems excluded from the appliances.
# The gems listed below do not need to be packaged until we find it necessary or useful.
# Only add gems here that we do not need on an appliance.
#
unless ENV['APPLIANCE']
group :test do
gem "test-unit", :require => false
gem "camcorder", :require => false
gem "jasmine", :require => false, :git => "git://github.com/jasmine/jasmine-gem.git", :ref => "c726fe1"
gem "rspec", "~>2.14.0", :require => false
gem "rspec-fire", "~>1.3.0", :require => false
gem "timecop", "~>0.7.3", :require => false
gem "xml-simple", "=1.0.12", :require => false # Used by test/xml/tc_xmlhash_methods.rb
gem "vcr", "~>2.6", :require => false # Used by manageiq-foreman
gem "webmock", :require => false # Used by vcr / manageiq-foreman
end
end
#
# VMDB specific gems
#
gem "rails", :github => 'rails/rails'
gem "arel", :github => 'rails/arel'
gem "activerecord-deprecated_finders", "~>1.0.4", :require => "active_record/deprecated_finders"
# Client-side dependencies
gem "jquery-rjs", "=0.1.1", :git => 'https://github.com/amatsuda/jquery-rjs.git'
gem 'angularjs-rails', '~>1.3.15'
gem 'angular-ui-bootstrap-rails', '~> 0.13.0'
gem 'momentjs-rails', '~> 2.10.3'
gem 'jquery-rails', :github => 'rails/jquery-rails'
gem 'jquery-hotkeys-rails'
gem 'codemirror-rails', "=4.2"
gem 'lodash-rails', '~> 3.10.0'
# On MS Windows run "bundle config --local build.libv8 --with-system-v8" first
gem 'sass-rails'
gem 'patternfly-sass', "~>1.3.1"
# Vendored and required
gem "ruport", "=1.7.0", :git => "git://github.com/ManageIQ/ruport.git", :tag => "v1.7.0-2"
# Vendored but not required
gem "net-ldap", "~>0.7.0", :require => false
gem "rubyrep", "=1.2.0", :require => false, :git => "git://github.com/ManageIQ/rubyrep.git", :branch => "rails4"
gem "simple-rss", "~>1.3.1", :require => false
gem "winrm", "=1.1.3", :require => false, :git => "git://github.com/ManageIQ/WinRM.git", :tag => "v1.1.3-1"
gem "ziya", "=2.3.0", :require => false, :git => "git://github.com/ManageIQ/ziya.git", :tag => "v2.3.0-2"
# Not vendored, but required
gem "acts_as_list", "~>0.1.4"
gem "acts_as_tree", "~>2.1.0" # acts_as_tree needs to be required so that it loads before ancestry
# In 1.9.3: Time.parse uses british version dd/mm/yyyy instead of american version mm/dd/yyyy
# american_date fixes this to be compatible with 1.8.7 until all callers can be converted to the 1.9.3 format prior to parsing.
# See miq_expression_spec Date/Time Support examples.
# https://github.com/jeremyevans/ruby-american_date
gem "american_date"
gem "default_value_for", :github => 'tenderlove/default_value_for'
gem "thin", "~>1.3.1" # Used by rails server through rack
gem "bcrypt", "3.1.10"
gem 'outfielding-jqplot-rails', "= 1.0.8"
gem "responders", "~> 2.0"
gem 'secure_headers'
gem 'mime-types'
# Needed by the REST API
gem "jbuilder", "~>2.0.7"
gem "gettext_i18n_rails"
gem 'rails-i18n', github: 'tenderlove/rails-i18n', branch: 'master'
gem 'acts_as_tenant', "~>0.3.9"
gem 'paperclip', "~>4.3.0"
# Not vendored and not required
gem "ancestry", "~>2.1.0", :require => false
gem "aws-sdk", "~>1.56.0", :require => false
gem 'dalli', "~>2.7.4", :require => false
gem "elif", "=0.1.0", :require => false
gem "haml", "~>4.0.5", :require => false
gem 'haml-rails', "~> 0.4", :require => false
gem "inifile", "~>3.0", :require => false
gem "logging", "~>1.6.1", :require => false # Ziya depends on this
gem "net_app_manageability", ">=0.1.0", :require => false
gem "net-ping", "~>1.7.4", :require => false
gem "net-sftp", "~>2.0.5", :require => false
gem "net-ssh", "~>2.9.1", :require => false
gem "open4", "~>1.3.0", :require => false
#gem "ovirt_metrics", "~>1.0.1", :require => false
gem "pg", "~>0.18.2", :require => false
gem 'ruby_parser', "~>3.7", :require => false
gem "ruby-progressbar", "~>0.0.10", :require => false
gem "rufus-scheduler", "~>2.0.19", :require => false
gem "savon", "~>2.2.0", :require => false # Automate uses this for simple SOAP Integration
gem "snmp", "~>1.1.0", :require => false
gem "uglifier", "~>2.7.1", :require => false
gem "novnc-rails", "~>0.2"
gem 'spice-html5-rails'
### Start of gems excluded from the appliances.
# The gems listed below do not need to be packaged until we find it necessary or useful.
# Only add gems here that we do not need on an appliance.
#
unless ENV['APPLIANCE']
group :development do
gem "ruby-prof", :require => false
gem "ruby-graphviz", :require => false # Used by state_machine:draw Rake Task
# used for finding translations
gem "gettext", "3.1.4", :require => false
end
group :test do
gem "brakeman", "~>3.0", :require => false
gem "shoulda-matchers", "~>1.0.0", :require => false
gem "factory_girl", "~>4.5.0", :require => false
gem "capybara", "~>2.1.0", :require => false
end
group :development, :test, :metric_fu do
gem "rspec-rails", "~>2.14.0"
end
group :metric_fu do
gem "metric_fu", :require => false, :git => "git://github.com/ManageIQ/metric_fu.git", :tag => "v3.0.0-3"
gem "simplecov-rcov-text", ">= 0.0.3", :require => false
end
end
# Assets from rails-assets.org
source 'https://rails-assets.org' do
gem 'rails-assets-c3', '~> 0.4.10'
gem 'rails-assets-bootstrap-select', '~> 1.5.4'
end
#
# Custom Gemfile modifications
#
# Load developer specific Gemfile
# Developers can create a file called Gemfile.dev.rb containing any gems for
# their local development. This can be any gem under evaluation that other
# developers may not need or may not easily install, such as rails-dev-boost,
# any git based gem, and compiled gems like rbtrace or memprof.
dev_gemfile = File.expand_path("Gemfile.dev.rb", __dir__)
eval_gemfile(dev_gemfile) if File.exist?(dev_gemfile)
# Load other additional Gemfiles
Dir.glob("bundler.d/*.rb").each { |f| eval_gemfile(File.expand_path(f, __dir__)) }
$ DEBUG_RESOLVER=1 bundle install --path vendor
Updating git://github.com/rails/rails.git
Updating git://github.com/rest-client/rest-client.git
Updating git://github.com/ManageIQ/handsoap.git
Updating git://github.com/ManageIQ/rubywbem.git
Updating git://github.com/jasmine/jasmine-gem.git
Updating git://github.com/rails/arel.git
Updating https://github.com/amatsuda/jquery-rjs.git
Updating git://github.com/rails/jquery-rails.git
Updating git://github.com/ManageIQ/ruport.git
Updating git://github.com/ManageIQ/rubyrep.git
Updating git://github.com/ManageIQ/WinRM.git
Updating git://github.com/ManageIQ/ziya.git
Updating git://github.com/tenderlove/default_value_for.git
Updating git://github.com/tenderlove/rails-i18n.git
Updating git://github.com/ManageIQ/metric_fu.git
Fetching gem metadata from https://rails-assets.org/...
Fetching version metadata from https://rails-assets.org/..
Fetching gem metadata from https://rubygems.org/........
Fetching version metadata from https://rubygems.org/...
Fetching dependency metadata from https://rubygems.org/..
Starting resolution (2015-07-20 21:32:50 -0700)
Resolving dependencies...Creating possibility state for bundler (>= 1.8.4) ruby (1 remaining)
Attempting to activate bundler (1.10.5)
Activated bundler at bundler (1.10.5)
Requiring nested dependencies ()
Creating possibility state for arel (>= 0) ruby (1 remaining)
Attempting to activate arel (7.0.0.alpha)
Activated arel at arel (7.0.0.alpha)
Requiring nested dependencies ()
Creating possibility state for metric_fu (>= 0) ruby (1 remaining)
Attempting to activate metric_fu (2.1.2)
Activated metric_fu at metric_fu (2.1.2)
Requiring nested dependencies (flay (= 2.0.1) ruby, flog (= 3.2.3) ruby, simplecov-rcov (>= 0.2.3) ruby, reek (>= 1.2.6) ruby, roodi (>= 2.1.0) ruby, rails_best_practices (>= 0.6.4) ruby, chronic (~> 0.6.2) ruby, churn (>= 0.0.7) ruby, japgolly-Saikuro (>= 1.1.1.0) ruby, activesupport (>= 2.0.0) ruby, fattr (>= 2.2.0) ruby, arrayfields (>= 4.7.4) ruby, map (>= 4.3.0) ruby, syntax (>= 1.0.0) ruby)
. Creating possibility state for activesupport (>= 0) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Activated activesupport at activesupport (5.0.0.alpha)
Requiring nested dependencies (i18n (~> 0.7) ruby, json (>= 1.7.7, ~> 1.7) ruby, tzinfo (~> 1.1) ruby, minitest (~> 5.1) ruby, thread_safe (>= 0.3.4, ~> 0.3) ruby, concurrent-ruby (~> 0.9.0) ruby)
Creating possibility state for activesupport (>= 2.0.0) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
Creating possibility state for ziya (= 2.3.0) ruby (1 remaining)
Attempting to activate ziya (2.3.0)
Activated ziya at ziya (2.3.0)
Requiring nested dependencies ()
Creating possibility state for jquery-rails (>= 0) ruby (1 remaining)
Attempting to activate jquery-rails (4.0.4)
Activated jquery-rails at jquery-rails (4.0.4)
Requiring nested dependencies (railties (>= 4.2.0) ruby, thor (< 2.0, >= 0.14) ruby, rails-dom-testing (~> 1.0) ruby)
. Creating possibility state for jasmine (>= 0) ruby (1 remaining)
Attempting to activate jasmine (2.2.0)
Activated jasmine at jasmine (2.2.0)
Requiring nested dependencies (jasmine-core (~> 2.2) ruby, rack (>= 1.2.1) ruby, rake (>= 0) ruby, phantomjs (>= 0) ruby)
Creating possibility state for ruport (= 1.7.0) ruby (1 remaining)
Attempting to activate ruport (1.7.0)
Activated ruport at ruport (1.7.0)
Requiring nested dependencies (pdf-writer (= 1.1.8) ruby)
Creating possibility state for rubywbem (>= 0) ruby (1 remaining)
Attempting to activate rubywbem (0.1.0)
Activated rubywbem at rubywbem (0.1.0)
Requiring nested dependencies (nokogiri (~> 1.5) ruby)
Creating possibility state for handsoap (~> 0.2.5) ruby (1 remaining)
Attempting to activate handsoap (0.2.5)
Activated handsoap at handsoap (0.2.5)
Requiring nested dependencies (nokogiri (>= 1.2.3) ruby)
. Creating possibility state for rubyrep (= 1.2.0) ruby (1 remaining)
Attempting to activate rubyrep (1.2.0)
Activated rubyrep at rubyrep (1.2.0)
Requiring nested dependencies ()
Creating possibility state for winrm (= 1.1.3) ruby (1 remaining)
Attempting to activate winrm (1.1.3)
Activated winrm at winrm (1.1.3)
Requiring nested dependencies (gssapi (~> 1.0) ruby, httpclient (>= 2.2.0.2, ~> 2.2) ruby, nokogiri (~> 1.5) ruby, rubyntlm (~> 0.1) ruby, uuidtools (~> 2.1.2) ruby, logging (>= 1.6.1, ~> 1.6) ruby, nori (~> 2.0) ruby, gyoku (~> 1.0) ruby, builder (>= 2.1.2) ruby)
Creating possibility state for jquery-rjs (= 0.1.1) ruby (1 remaining)
Attempting to activate jquery-rjs (0.1.1)
Activated jquery-rjs at jquery-rjs (0.1.1)
Requiring nested dependencies (rails (>= 3.2) ruby, jquery-rails (>= 0) ruby)
Creating possibility state for jquery-rails (>= 0) ruby (1 remaining)
Attempting to activate jquery-rails (4.0.4)
Found existing spec (jquery-rails (4.0.4))
. Creating possibility state for rails (>= 0) ruby (1 remaining)
Attempting to activate rails (5.0.0.alpha)
Activated rails at rails (5.0.0.alpha)
Requiring nested dependencies (activesupport (= 5.0.0.alpha) ruby, actionpack (= 5.0.0.alpha) ruby, actionview (= 5.0.0.alpha) ruby, activemodel (= 5.0.0.alpha) ruby, activerecord (= 5.0.0.alpha) ruby, actionmailer (= 5.0.0.alpha) ruby, activejob (= 5.0.0.alpha) ruby, railties (= 5.0.0.alpha) ruby, bundler (< 2.0, >= 1.3.0) ruby, sprockets-rails (>= 0) ruby)
Creating possibility state for activesupport (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
Creating possibility state for bundler (< 2.0, >= 1.3.0) ruby (1 remaining)
Attempting to activate bundler (1.10.5)
Found existing spec (bundler (1.10.5))
Creating possibility state for rails (>= 3.2) ruby (1 remaining)
Attempting to activate rails (5.0.0.alpha)
Found existing spec (rails (5.0.0.alpha))
. Creating possibility state for elif (= 0.1.0) ruby (1 remaining)
Attempting to activate elif (0.1.0)
Activated elif at elif (0.1.0)
Requiring nested dependencies ()
Creating possibility state for rest-client (>= 0) ruby (1 remaining)
Attempting to activate rest-client (2.0.0.alpha)
Activated rest-client at rest-client (2.0.0.alpha)
Requiring nested dependencies (mime-types (< 3.0, >= 1.16) ruby, netrc (~> 0.7) ruby)
Creating possibility state for activerecord (>= 0) ruby (1 remaining)
Attempting to activate activerecord (5.0.0.alpha)
Activated activerecord at activerecord (5.0.0.alpha)
Requiring nested dependencies (activesupport (= 5.0.0.alpha) ruby, activemodel (= 5.0.0.alpha) ruby, arel (= 7.0.0.alpha) ruby)
Creating possibility state for arel (= 7.0.0.alpha) ruby (1 remaining)
Attempting to activate arel (7.0.0.alpha)
Found existing spec (arel (7.0.0.alpha))
. Creating possibility state for activerecord (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate activerecord (5.0.0.alpha)
Found existing spec (activerecord (5.0.0.alpha))
Creating possibility state for activesupport (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
Creating possibility state for default_value_for (>= 0) ruby (1 remaining)
Attempting to activate default_value_for (3.0.1)
Activated default_value_for at default_value_for (3.0.1)
Requiring nested dependencies (activerecord (>= 3.2.0) ruby)
Creating possibility state for activerecord (>= 3.2.0) ruby (1 remaining)
Attempting to activate activerecord (5.0.0.alpha)
Found existing spec (activerecord (5.0.0.alpha))
. Creating possibility state for net_app_manageability (>= 0.1.0) ruby (1 remaining)
Attempting to activate net_app_manageability (0.1.0)
Activated net_app_manageability at net_app_manageability (0.1.0)
Requiring nested dependencies ()
Creating possibility state for japgolly-Saikuro (>= 1.1.1.0) ruby (1 remaining)
Attempting to activate japgolly-Saikuro (1.1.1.0)
Activated japgolly-Saikuro at japgolly-Saikuro (1.1.1.0)
Requiring nested dependencies ()
Creating possibility state for memory_buffer (>= 0.1.0) ruby (1 remaining)
Attempting to activate memory_buffer (0.1.0)
Activated memory_buffer at memory_buffer (0.1.0)
Requiring nested dependencies ()
Creating possibility state for rails-i18n (>= 0) ruby (1 remaining)
Attempting to activate rails-i18n (4.0.4)
Activated rails-i18n at rails-i18n (4.0.4)
Requiring nested dependencies (i18n (~> 0.6) ruby, railties (~> 5.0) ruby)
. Creating possibility state for actionpack (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate actionpack (5.0.0.alpha)
Activated actionpack at actionpack (5.0.0.alpha)
Requiring nested dependencies (activesupport (= 5.0.0.alpha) ruby, rack (~> 1.6) ruby, rack-test (~> 0.6.3) ruby, rails-html-sanitizer (>= 1.0.2, ~> 1.0) ruby, rails-dom-testing (>= 1.0.5, ~> 1.0) ruby, actionview (= 5.0.0.alpha) ruby)
Creating possibility state for activesupport (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
Creating possibility state for actionmailer (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate actionmailer (5.0.0.alpha)
Activated actionmailer at actionmailer (5.0.0.alpha)
Requiring nested dependencies (actionpack (= 5.0.0.alpha) ruby, actionview (= 5.0.0.alpha) ruby, activejob (= 5.0.0.alpha) ruby, mail (>= 2.5.4, ~> 2.5) ruby, rails-dom-testing (>= 1.0.5, ~> 1.0) ruby)
Creating possibility state for actionpack (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate actionpack (5.0.0.alpha)
Found existing spec (actionpack (5.0.0.alpha))
. Creating possibility state for fog (~> 1.30.0) ruby (1 remaining)
Attempting to activate fog (1.30.0)
Activated fog at fog (1.30.0)
Requiring nested dependencies (fog-voxel (>= 0) ruby, fog-vmfusion (>= 0) ruby, fog-terremark (>= 0) ruby, fog-storm_on_demand (>= 0) ruby, fog-softlayer (>= 0) ruby, fog-serverlove (>= 0) ruby, fog-sakuracloud (>= 0.0.4) ruby, fog-riakcs (>= 0) ruby, fog-radosgw (>= 0.0.2) ruby, fog-profitbricks (>= 0) ruby, fog-powerdns (>= 0.1.1) ruby, fog-local (>= 0) ruby, fog-google (>= 0.0.2) ruby, fog-ecloud (>= 0) ruby, fog-brightbox (~> 0.4) ruby, fog-aws (~> 0.0) ruby, fog-atmos (>= 0) ruby, nokogiri (>= 1.5.11, ~> 1.5) ruby, ipaddress (~> 0.5) ruby, fog-xml (~> 0.1.1) ruby, fog-json (>= 0) ruby, fog-core (>= 1.27.4, ~> 1.27) ruby)
Creating possibility state for aws-sdk (~> 1.56.0) ruby (1 remaining)
Attempting to activate aws-sdk (1.56.0)
Activated aws-sdk at aws-sdk (1.56.0)
Requiring nested dependencies (aws-sdk-v1 (= 1.56.0) ruby)
Creating possibility state for activemodel (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate activemodel (5.0.0.alpha)
Activated activemodel at activemodel (5.0.0.alpha)
Requiring nested dependencies (activesupport (= 5.0.0.alpha) ruby, builder (~> 3.1) ruby)
Creating possibility state for activesupport (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
. Creating possibility state for savon (~> 2.2.0) ruby (1 remaining)
Attempting to activate savon (2.2.0)
Activated savon at savon (2.2.0)
Requiring nested dependencies (nori (~> 2.1.0) ruby, httpi (~> 2.0.2) ruby, wasabi (~> 3.1.0) ruby, akami (~> 1.2.0) ruby, gyoku (~> 1.0.0) ruby, builder (>= 2.1.2) ruby, nokogiri (>= 1.4.0) ruby)
Creating possibility state for rspec (~> 2.14.0) ruby (2 remaining)
Attempting to activate rspec (2.14.1)
Activated rspec at rspec (2.14.1)
Requiring nested dependencies (rspec-core (~> 2.14.0) ruby, rspec-expectations (~> 2.14.0) ruby, rspec-mocks (~> 2.14.0) ruby)
Creating possibility state for paperclip (~> 4.3.0) ruby (1 remaining)
Attempting to activate paperclip (4.3.0)
Activated paperclip at paperclip (4.3.0)
Requiring nested dependencies (mimemagic (= 0.3.0) ruby, mime-types (>= 0) ruby, cocaine (~> 0.5.5) ruby, activesupport (>= 3.2.0) ruby, activemodel (>= 3.2.0) ruby)
Creating possibility state for activesupport (>= 3.2.0) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
. Creating possibility state for activemodel (>= 3.2.0) ruby (57 remaining)
Attempting to activate activemodel (5.0.0.alpha)
Found existing spec (activemodel (5.0.0.alpha))
Creating possibility state for parallel (~> 0.5.21) ruby (1 remaining)
Attempting to activate parallel (0.5.21)
Activated parallel at parallel (0.5.21)
Requiring nested dependencies ()
Creating possibility state for haml (~> 4.0.5) ruby (2 remaining)
Attempting to activate haml (4.0.6)
Activated haml at haml (4.0.6)
Requiring nested dependencies (tilt (>= 0) ruby)
Creating possibility state for factory_girl (~> 4.5.0) ruby (1 remaining)
Attempting to activate factory_girl (4.5.0)
Activated factory_girl at factory_girl (4.5.0)
Requiring nested dependencies (activesupport (>= 3.0.0) ruby)
. Creating possibility state for activesupport (>= 3.0.0) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
Creating possibility state for rails-assets-c3 (~> 0.4.10) ruby (1 remaining)
Attempting to activate rails-assets-c3 (0.4.10)
Activated rails-assets-c3 at rails-assets-c3 (0.4.10)
Requiring nested dependencies (rails-assets-d3 (<= 3.5.0) ruby)
Creating possibility state for codemirror-rails (= 4.2) ruby (1 remaining)
Attempting to activate codemirror-rails (4.2)
Activated codemirror-rails at codemirror-rails (4.2)
Requiring nested dependencies (railties (< 5, >= 3.0) ruby)
Creating possibility state for gettext (= 3.1.4) ruby (1 remaining)
Attempting to activate gettext (3.1.4)
Activated gettext at gettext (3.1.4)
Requiring nested dependencies (text (>= 0) ruby, locale (>= 2.0.5) ruby)
. Creating possibility state for angularjs-rails (~> 1.3.15) ruby (1 remaining)
Attempting to activate angularjs-rails (1.3.15)
Activated angularjs-rails at angularjs-rails (1.3.15)
Requiring nested dependencies ()
Creating possibility state for dalli (~> 2.7.4) ruby (1 remaining)
Attempting to activate dalli (2.7.4)
Activated dalli at dalli (2.7.4)
Requiring nested dependencies ()
Creating possibility state for pg (~> 0.18.2) ruby (1 remaining)
Attempting to activate pg (0.18.2)
Activated pg at pg (0.18.2)
Requiring nested dependencies ()
Creating possibility state for httpi (~> 2.0.2) ruby (1 remaining)
Attempting to activate httpi (2.0.2)
Activated httpi at httpi (2.0.2)
Requiring nested dependencies (rack (>= 0) ruby)
. Creating possibility state for ruby_parser (~> 3.7) ruby (1 remaining)
Attempting to activate ruby_parser (3.7.0)
Activated ruby_parser at ruby_parser (3.7.0)
Requiring nested dependencies (sexp_processor (~> 4.1) ruby)
Creating possibility state for actionview (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate actionview (5.0.0.alpha)
Activated actionview at actionview (5.0.0.alpha)
Requiring nested dependencies (activesupport (= 5.0.0.alpha) ruby, builder (~> 3.1) ruby, erubis (~> 2.7.0) ruby, rails-html-sanitizer (>= 1.0.2, ~> 1.0) ruby, rails-dom-testing (>= 1.0.5, ~> 1.0) ruby)
Creating possibility state for activesupport (= 5.0.0.alpha) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
Creating possibility state for capybara (~> 2.1.0) ruby (1 remaining)
Attempting to activate capybara (2.1.0)
Activated capybara at capybara (2.1.0)
Requiring nested dependencies (nokogiri (>= 1.3.3) ruby, mime-types (>= 1.16) ruby, rack (>= 1.0.0) ruby, rack-test (>= 0.5.4) ruby, xpath (~> 2.0) ruby)
. Creating possibility state for highline (~> 1.6.21) ruby (1 remaining)
Attempting to activate highline (1.6.21)
Activated highline at highline (1.6.21)
Requiring nested dependencies ()
Creating possibility state for uglifier (~> 2.7.1) ruby (1 remaining)
Attempting to activate uglifier (2.7.1)
Activated uglifier at uglifier (2.7.1)
Requiring nested dependencies (json (>= 1.8.0) ruby, execjs (>= 0.3.0) ruby)
Creating possibility state for thin (~> 1.3.1) ruby (1 remaining)
Attempting to activate thin (1.3.1)
Activated thin at thin (1.3.1)
Requiring nested dependencies (rack (>= 1.0.0) ruby, eventmachine (>= 0.12.6) ruby, daemons (>= 1.0.9) ruby)
Creating possibility state for concurrent-ruby (~> 0.9.0) ruby (1 remaining)
Attempting to activate concurrent-ruby (0.9.0)
Activated concurrent-ruby at concurrent-ruby (0.9.0)
Requiring nested dependencies ()
. Creating possibility state for rspec-rails (~> 2.14.0) ruby (3 remaining)
Attempting to activate rspec-rails (2.14.2)
Activated rspec-rails at rspec-rails (2.14.2)
Requiring nested dependencies (activesupport (>= 3.0) ruby, activemodel (>= 3.0) ruby, actionpack (>= 3.0) ruby, railties (>= 3.0) ruby, rspec-core (~> 2.14.0) ruby, rspec-expectations (~> 2.14.0) ruby, rspec-mocks (~> 2.14.0) ruby)
Creating possibility state for activesupport (>= 3.0) ruby (1 remaining)
Attempting to activate activesupport (5.0.0.alpha)
Found existing spec (activesupport (5.0.0.alpha))
Creating possibility state for actionpack (>= 3.0) ruby (91 remaining)
Attempting to activate actionpack (5.0.0.alpha)
Found existing spec (actionpack (5.0.0.alpha))
Creating possibility state for activemodel (>= 3.0) ruby (91 remaining)
Attempting to activate activemodel (5.0.0.alpha)
Found existing spec (activemodel (5.0.0.alpha))
. Creating possibility state for railties (~> 5.0) ruby (0 remaining)
Unwinding for conflict: railties (~> 5.0) ruby
Finished resolution (68 steps) (Took 0.870955 seconds) (2015-07-20 21:32:51 -0700)
Bundler could not find compatible versions for gem "railties":
In Gemfile:
railties (>= 4.2.0) ruby
railties (= 5.0.0.alpha) ruby
rails-i18n (>= 0) ruby depends on
railties (~> 5.0) ruby
railties (< 5, >= 3.0) ruby
railties (>= 3.0) ruby
Could not find gem 'railties (~> 5.0) ruby in any of the sources
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment