forked from concord-consortium/lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·53 lines (41 loc) · 1.5 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
source "http://rubygems.org"
gem "rake", "~> 10.0.3"
gem 'rails', "~> 3.2.12"
gem "fog", "~> 1.9.0"
gem "librarian", "~> 0.0.26"
gem "haml", "~> 4.0.0"
gem "sass", "~> 3.2.5"
gem 'bourbon', "~> 3.1.1"
gem 'neat', "~> 1.2.0"
gem 'kramdown', "~> 0.13.8"
gem "grit", "~> 2.5.0"
gem "mustache", "~> 0.99.4"
def darwin_only(require_as)
RbConfig::CONFIG['host_os'] =~ /darwin/ && require_as
end
def linux_only(require_as)
RbConfig::CONFIG['host_os'] =~ /linux/ && require_as
end
def windows_only(require_as)
RbConfig::CONFIG['host_os'] =~ /mingw|mswin/i && require_as
end
group :development do
# guard related ...
gem "guard", "~> 1.6.2"
gem "guard-haml", "~> 0.4"
gem "guard-sass", "~> 1.0.3"
gem "guard-shell", "~> 0.5.1"
gem "guard-livereload", "~> 1.1.3"
gem 'guard-coffeescript', "~> 1.2.1"
gem 'guard-markdown', "~> 0.2.0"
# FS Notification libraries for guard (non-polling)
gem 'rb-fsevent', "~> 0.9.3", :require => darwin_only('rb-fsevent')
gem 'rb-inotify', "~> 0.8.8", :require => linux_only('rb-inotify')
gem 'wdm', "~> 0.1.0", :require => windows_only('wdm')
# Growl Notification Transport Protocol (used by guard)
gem 'ruby_gntp', "~> 0.3.4"
# deployment related ...
gem "thor", "~> 0.17.0"
gem "capistrano", "~> 2.14.2"
gem "rvm-capistrano", "~> 1.2.6"
end