forked from neo4jrb/devise-activegraph
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
41 lines (33 loc) · 856 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
source "http://rubygems.org"
gemspec
gem "rails", "~> 4.1.1"
gem "omniauth"
gem "omniauth-oauth2"
gem "rdoc"
#gem 'neo4j', path: '../neo4j'
#gem 'neo4j-core', path: '../neo4j-core'
#gem 'neo4j', "~> 3.0.0.alpha.7"
gem 'neo4j', :git => 'https://github.com/andreasronge/neo4j.git'
gem 'neo4j-core', :git => 'https://github.com/andreasronge/neo4j-core.git'
gem "devise", '3.3.0' #git: 'https://github.com/plataformatec/devise.git'
group :test do
gem "omniauth-facebook"
gem "omniauth-openid", "~> 1.0.1"
gem "webrat", "0.7.2", :require => false
gem "mocha", :require => false
platforms :mri_18 do
gem "ruby-debug", ">= 0.10.3"
end
end
platforms :jruby do
gem "jruby-openssl"
gem "neo4j-community"
end
platforms :ruby do
gem "sqlite3"
group :mongoid do
gem "mongo"
gem "mongoid"
gem "bson_ext", "~> 1.3.0"
end
end