-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
61 lines (47 loc) · 1.19 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
require 'rbconfig'
require 'pp'
is_windows = !!(RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/)
puts RbConfig::CONFIG['host_os']
# Copyright (c) 2012-2013 8098182 Canada Inc. All rights reserved.
# For licensing, see LICENSE.
source 'http://rubygems.org'
if is_windows
gem 'win32console'
end
gem 'wdm', '>= 0.1.0' if is_windows
gem 'thin'
gem 'actionpack', '~> 3.2'
gem 'railties', '~> 3.2'
gem 'tzinfo'
gem 'jquery-rails'
gem 'jasmine'
gem 'slim'
# Thought this might be required for guard but doesn't seem to work anyways.
# gem 'rb-readline'
gem 'guard'
# gem "jasminerice", :git => 'https://github.com/bradphelan/jasminerice.git'
# gem 'jasminerice'
# gem 'jquery-rails'
gem 'guard-jasmine'
gem 'jasminerice'
# # gem 'jasmine-headless-webkit'
gem 'guard-coffeescript'
# gem 'guard-copy'
# gem 'guard-jasmine-headless-webkit'
gem 'guard-shell'
gem 'snapimage', '0.2.1'
gem 'rb-inotify' #, '~> 0.8.8'
# source 'https://rubygems.org'
# group :assets do
# gem 'coffee-script'
# end
# group :development, :test do
# gem 'actionpack', '~> 3.2'
# gem 'railties', '~> 3.2'
# gem 'tzinfo'
# gem 'thin'
# gem 'slim'
# gem 'jasminerice'
# gem 'jquery-rails'
# gem 'guard-jasmine'
# end