forked from concord-consortium/lab-interactives-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·75 lines (59 loc) · 2.21 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
73
74
75
source "http://rubygems.org"
gem "haml", "~> 4.0.0"
# Adds Hash.from_xml method used in Energy2D importer
gem 'active_support', "~> 3"
gem 'i18n', "~> 0.6.4"
gem "gitlab-grit", "~> 2.6.0"
gem "shutterbug", "~> 0.2.1"
group :app do
gem "rack", "~> 1.5.2"
gem "rake", "~> 10.1.0"
gem "sass", "~> 3.2.5"
gem 'bourbon', "~> 3.1.1"
gem 'neat', "~> 1.2.0"
gem 'kramdown', "~> 1.3.0"
gem "mustache", "~> 0.99.4"
gem "rack-livereload", "~> 0.3.15"
end
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
gem "fog", "~> 1.12.1"
gem "chef", "~> 11.6.0"
# gem "librarian-chef"
# work-around bug in version 0.1.0 of librarian
# see: https://github.com/applicationsonline/librarian/pull/145
gem 'librarian', :git => 'git://github.com/applicationsonline/librarian.git', :ref => 'b1fc0cc3'
gem "librarian-chef", :git => 'git://github.com/applicationsonline/librarian-chef.git', :ref => '040490c4'
gem "rack-nocache", "~> 0.1.0"
# http://about.travis-ci.org/docs/user/travis-lint/
gem "travis-lint"
# guard related ...
gem "guard", "~> 1.8.2"
gem "guard-haml", "~> 0.4"
gem "guard-sass", "~> 1.3.2"
gem "guard-shell", "~> 0.5.1"
gem "guard-livereload", "~> 1.4.0"
gem 'guard-coffeescript', "~> 1.3.2"
# FS Notification libraries for guard (non-polling)
gem 'rb-fsevent', "~> 0.9.3", :require => darwin_only('rb-fsevent')
gem 'rb-inotify', "~> 0.9.0", :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.18.1"
gem "capistrano", "~> 2.15.5"
gem "rvm-capistrano", "~> 1.4.0"
# debuggers
gem "pry"
gem "pry-nav"
gem "pry-stack_explorer"
end