forked from acanyon/RubyTuesdays-ConnectFour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (40 loc) · 1.3 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
source 'https://rubygems.org'
gem 'rails', '~> 3.2.11'
# SQLite
# Interface with an SQLite database.
gem 'sqlite3'
# jquery is a JavaScript library
# read more at: http://jquery.com/
gem 'jquery-rails'
# Ruby documentation
gem 'yard'
# JSON. tools to convert to and from JSON
# JSON is a notation (similar to xml). Used to serialize hashes and
# arrays to strings. often used for data in requests and responses
# http://www.json.org/
gem 'json'
# haml (markup). Html Abstraction Markup Language
# learn more at: http://haml.info
gem 'haml-rails'
# inspection help
gem 'pry-rails'
# Thin is a rails webserver
gem "thin", "~> 1.5.0"
# twitter-bootstrap asset pipeline
#
# ** Twitter bootstrap is a well-known front-end framework designed for quick
# and beautiful prototyping. Check out the available features!
# > http://twitter.github.com/bootstrap/
gem "twitter-bootstrap-rails"
# Test framework
group :test, :development do
gem "rspec-rails", "~> 2.0"
end
# SimpleCov -- Code Coverage gem
# > gives stats on the coverage of your tests
# https://github.com/bborn/simplecov
gem 'simplecov', '>= 0.4.0', :require => false, :group => :test
# Factory Girl Rails -- (FactoryGirl + autoloading for rails)
# https://github.com/thoughtbot/factory_girl
# A framework to auto-create
gem 'factory_girl_rails'