This repository has been archived by the owner on Apr 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Gemfile
72 lines (61 loc) · 1.55 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
source "http://rubygems.org"
gemspec
gem 'refinerycms', '~> 2.0.3'
gem 'refinerycms-i18n', '~> 2.0.2'
# Database Configuration
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'activerecord-jdbcmysql-adapter'
gem 'activerecord-jdbcpostgresql-adapter'
gem 'jruby-openssl'
end
platforms :ruby do
gem 'sqlite3'
gem 'mysql2'
gem 'pg'
end
group :development, :test do
gem 'refinerycms-testing', '~> 2.0.3'
gem 'guard-rspec', '~> 0.7.0'
platforms :mswin, :mingw do
gem 'win32console', '~> 1.3.0'
gem 'rb-fchange', '~> 0.0.5'
gem 'rb-notifu', '~> 0.0.4'
end
platforms :ruby do
gem 'spork', '~> 0.9.0'
gem 'guard-spork', '~> 0.5.2'
unless ENV['TRAVIS']
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'rb-fsevent', '~> 0.9.0'
gem 'ruby_gntp', '~> 0.3.4'
end
if RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'rb-inotify', '~> 0.8.8'
gem 'libnotify', '~> 0.7.2'
gem 'therubyracer', '~> 0.10.0'
end
end
end
platforms :jruby do
unless ENV['TRAVIS']
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'ruby_gntp', '~> 0.3.4'
end
if RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'rb-inotify', '~> 0.8.8'
gem 'libnotify', '~> 0.7.2'
end
end
end
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'jquery-rails', '~> 2.0.0'