-
Notifications
You must be signed in to change notification settings - Fork 48
/
Gemfile
110 lines (82 loc) · 2.11 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
source 'https://rubygems.org'
gem 'puma'
gem 'rails', '~> 4.1.4'
gem 'pg'
gem 'coffee-rails'
gem 'coffee-rails-source-maps'
gem 'uglifier'
gem 'modernizr-rails'
# Handlebars
gem 'handlebars_assets'
gem 'handlebars'
gem 'therubyracer', platforms: :ruby
gem 'bootstrap-sass'
gem 'bootstrap-switch-rails'
gem 'sprockets', '~> 2.12'
# Integration testing stuff
group :development, :test do
gem 'sqlite3'
gem 'capybara'
gem 'selenium-webdriver'
gem 'launchy'
gem 'simplecov'
gem 'minitest-reporters'
gem 'rubocop', git: 'https://github.com/bbatsov/rubocop'
gem 'coffeelint'
gem 'capybara-webkit'
gem 'minitest', '~> 5.1'
gem 'capybara-screenshot'
gem 'html5_validator'
gem 'byebug'
gem 'derailed'
end
# Jquery stuff
gem 'better_datetimepicker', '~> 0.0.9', git: 'https://github.com/engaging-computing/better-datetimepicker'
gem 'better_colorpicker', '~> 0.1.2', git: 'https://github.com/engaging-computing/better-colorpicker'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jqgrid-jquery-rails', '~> 4.6.001'
gem 'dropzonejs-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt' # Can't use the new name yet.
gem 'bcrypt-ruby'
# jQuery plugins
gem 'jquery-drag-rails'
gem 'touchpunch-rails'
gem 'httparty'
gem 'execjs'
# Font-awesome
gem 'font-awesome-rails', '~> 4.4.0.0'
# Rich Editor
# gem 'simple_form'
gem 'summernote-rails'
gem 'auto_html'
# Include Will Paginate
gem 'will_paginate'
gem 'will_paginate-bootstrap'
# Include Remotipart
gem 'remotipart'
gem 'mini_magick'
# Database serialization
gem 'yaml_db', git: 'https://github.com/jetthoughts/yaml_db'
gem 'multi_json'
gem 'roo'
# GitHub Bug Reporting and Testing
gem 'browser'
gem 'useragent', '~> 0.10.0'
# Upload Zip Files
gem 'rubyzip', '>= 1.0.0'
gem 'recaptcha', git: 'https://github.com/ambethia/recaptcha'
# Allow CORS
gem 'rack-cors', :require => 'rack/cors'
# for formula fields
gem 'beaker', '~> 1.3.0', git: 'https://github.com/engaging-computing/beaker-lang'
# User System
gem 'devise'
gem "omniauth-google-oauth2"
# still necessary?
gem 'coffeebeans'
# Performance testing
gem 'rails-perftest'
# ruby code profiler
gem 'ruby-prof'