forked from Barriebee/plinth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
55 lines (43 loc) · 1.08 KB
/
Gemfile
File metadata and controls
55 lines (43 loc) · 1.08 KB
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
source 'https://rubygems.org'
# Declare your gem's dependencies in sb-styleguide.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec :development_group => :dev
#
# Gems used only for assets and not required in production environments by default.
#
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
gem 'uglifier', '>= 1.0.3'
end
#
# Use haml for templates & generators
#
gem "haml"
gem "haml-rails"
gem 'kramdown'
gem 'kramdown-haml'
gem 'thin'
gem 'formtastic'
gem 'rb-readline'
#
# Jquery rails - @TODO Is this needed?
#
gem 'jquery-rails'
#
# Javascript Testing
#
group :development, :test, :staging do
gem 'growl'
gem 'jasminerice', :git => "https://github.com/bradphelan/jasminerice"
gem "guard-jasmine"
# gem 'jsPercolator', :git => "git@github.com:adtaylor/jsPercolator.git"
gem "rails", "~> 3.2.12"
gem "capistrano"
gem "aws-sdk"
gem "net-sftp", "~> 2.1.1"
gem "haml-coderay"
gem "foreman"
end