Sha256: 95f37dc80e19791c76c708b6a7aac68fcce68c02ad436da9b0476907a43a89ee

Contents?: true

Size: 1.48 KB

Versions: 9

Compression:

Stored size: 1.48 KB

Contents

source 'http://rubygems.org'

gemspec

# gem 'neo4j-core', github: 'neo4jrb/neo4j-core', branch: 'master' if ENV['CI']

branch = ENV['NEO4J_CORE_BRANCH'] || ENV['TRAVIS_PULL_REQUEST_BRANCH'] || ENV['TRAVIS_BRANCH']
slug = !ENV['TRAVIS_PULL_REQUEST_SLUG'].to_s.empty? ? ENV['TRAVIS_PULL_REQUEST_SLUG'] : ENV['TRAVIS_REPO_SLUG']
if branch
  command = "curl --head https://github.com/#{slug}-core/tree/#{branch} | head -1"
  result = `#{command}`
  if result =~ /200 OK/
    gem 'neo4j-core', github: "#{slug}-core", branch: branch
  else
    gem 'neo4j-core', github: 'neo4jrb/neo4j-core', branch: 'master'
  end
elsif ENV['USE_LOCAL_CORE']
  gem 'neo4j-core', path: '../neo4j-core'
else
  gem 'neo4j-core'
end

# gem 'active_attr', github: 'neo4jrb/active_attr', branch: 'performance'
# gem 'active_attr', path: '../active_attr'

gem 'listen', '< 3.1'

active_model_version = ENV['ACTIVE_MODEL_VERSION']
gem 'activemodel', "~> #{active_model_version}" if active_model_version

if RUBY_VERSION.to_f < 2.2
  gem 'activemodel', '~> 4.2'
  gem 'activesupport', '~> 4.2'
  gem 'railties', '~> 4.2'
end

group 'test' do
  gem 'coveralls', require: false
  if RUBY_VERSION.to_f < 2.0
    gem 'term-ansicolor', '< 1.4'
    gem 'tins', '< 1.7'
    gem 'overcommit', '< 0.35.0'
  else
    gem 'overcommit'
  end
  gem 'codecov', require: false
  gem 'simplecov', require: false
  gem 'simplecov-html', require: false
  gem 'rspec', '~> 3.4'
  gem 'its'
  gem 'test-unit'
  gem 'colored'
  gem 'dotenv'
  gem 'timecop'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
neo4j-9.6.2 Gemfile
neo4j-9.6.1 Gemfile
neo4j-9.6.0 Gemfile
neo4j-9.5.3 Gemfile
neo4j-9.5.2 Gemfile
neo4j-9.5.0 Gemfile
neo4j-9.4.0 Gemfile
neo4j-9.3.0 Gemfile
neo4j-9.2.4 Gemfile