-
Notifications
You must be signed in to change notification settings - Fork 48
/
Gemfile
69 lines (63 loc) · 1.85 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
# Gemfile
source "https://rubygems.org"
# Platform helpers
def windows_only(require_as)
RbConfig::CONFIG['host_os'] =~ /mingw|mswin/i ? require_as : false
end
def linux_only(require_as)
RbConfig::CONFIG['host_os'] =~ /linux/ ? require_as : false
end
def darwin_only(require_as)
RbConfig::CONFIG['host_os'] =~ /darwin/ ? require_as : false
end
# GEMS
gem 'awestruct', '0.5.7'
gem 'compass', '~> 1.0'
gem 'slim', '~> 2.0.0'
gem 'daybreak', '~> 0.3.0'
gem 'kramdown', '~> 1.0.1'
gem 'asciidoctor', '~> 1.5.0'
gem 'opal'
gem 'uglifier', '~> 2.0.1'
gem 'htmlcompressor', '~> 0.0.6'
gem 'curb', '~> 0.8.5'
gem 'oauth', '~> 0.3.6'
gem 'git', '~> 1.2.5'
gem 'oily_png', '~> 1.1.1'
gem 'nokogiri', '~> 1.5.10'
gem 'therubyracer', platforms: :ruby, require: linux_only('therubyracer')
# To use Aweplug code from a different location:
#
# From a specific GitHub branch. Ommit the 'branch' parameter for 'master'
# gem 'aweplug', github: '<github_id>/aweplug', :branch => '<branch_name>'
#
# From a location on your disk:
#gem 'aweplug', path: '<aweplug_directory>'
#
gem 'aweplug', github: 'awestruct/aweplug', :branch => 'jboss_org'
gem 'parallel', '~> 1.1.0'
gem 'mime-types', '2.1'
gem 'google-api-client', '~> 0.7'
gem 'signet', '~> 0.5.1'
gem 'gpgme', '~> 2.0'
gem 'ruby-duration', '~> 3.1'
gem 'sass', '~> 3.4', '< 3.4.6'
gem 'activesupport', '> 3.1', '< 4.2.0' # Used in aweplug by ruby-duration
group :development do
gem 'rb-inotify', require: false
gem 'rb-fsevent', require: false
gem 'rb-fchange', require: false
gem 'rake', '~> 10.0.4'
#gem 'pry', require: false
#gem 'pry-byebug', require: false
#gem 'pry-stack_explorer', require: false
#gem 'pry-exception_explorer', require: false
end
group :vdiff do
gem 'wraith', '~> 1.3.0'
end
group :health do
gem 'blinkr', '~> 0.2.7'
#gem 'blinkr', github: 'pmuir/blinkr'
#gem 'blinkr', path: '../blinkr'
end