This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
120 lines (82 loc) · 2.26 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
111
112
113
114
115
116
117
118
119
120
source 'https://rubygems.org'
ruby "2.2.4"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.13'
#gem 'responders', '~> 2.0'
#gem "responders"
# postgresql
gem 'pg', '0.16.0'
# ORMapper
gem 'activerecord'
#Pushbots
gem 'push_bot'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# for minification and so on
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
#group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', require: false
#end
# Twitter Bootstrap
gem 'bootstrap-sass', '~> 3.1.1'
# http accept lang, read lang from client to set proper default language
gem 'http_accept_language'
# chart js
gem 'chart-js-rails', '0.0.6'
#super cool icons
gem "font-awesome-rails"
#authorisation fb and google
gem 'omniauth-facebook', '4.0.0'
gem "omniauth-google-oauth2"
#angular js
gem 'angularjs-rails', '1.2.16'
#Underscore js, cool collection api's for js
gem 'underscore-rails'
# scheduler
#gem 'rufus-scheduler'
# Angular bindings bootstrap, typeahead
gem 'angular-ui-bootstrap-rails', '0.10.0'
#gem "animate-rails"
#soft delete
gem "paranoia", "~> 2.0"
# browser detection
gem "browser"
# mail exception notification, if something goes wrong, not yet configured
gem 'exception_notification' , '~> 4.0.0'
# ruby linter
gem "rubocop"
#calculate distance
gem 'geocoder'
gem 'paperclip'
group :production do
# Use unicorn as the app server
gem 'unicorn'
#file storage in amazon cloud?? needed,
gem 'aws-sdk'
# heroku open needs this gem
gem 'launchy'
gem 'rails_12factor'
end
group :development, :test do
# Use Capistrano for deployment (app Server)
gem 'capistrano'
gem 'netrc'
# developer console rails
gem 'rb-readline'
#javascript linter (syntax checker)
gem 'jshint_on_rails'
# cool way to test json api's format
gem 'assert_json', '0.2.0'
end
#for seed dump
gem 'seed_dump'
# Use debugger
# gem 'debugger', group: [:development, :test]