-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
138 lines (112 loc) · 3.76 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.2.4'
gem 'sass-rails', '5.0.1'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jquery-turbolinks'
# data-turbolinks-permanent is available in versions 3.0+
gem 'turbolinks', github: 'rails/turbolinks', ref: '937f5f6'
gem 'jbuilder', '~> 1.2'
gem 'carrierwave'
gem 'mini_magick'
gem 'fog'
gem 'omniauth-browserid'
gem 'nested_form'
gem 'figaro'
gem 'gravatarify'
gem 'haml'
gem 'slim-rails'
gem 'active_interaction', '~> 2.1'
group :doc do
gem 'sdoc', require: false
end
group :development do
gem 'jazz_hands'
gem 'sqlite3'
gem 'thin'
gem 'quiet_assets'
end
group :production do
platforms :ruby do # linux
gem 'puma'
end
gem 'rails_12factor'
gem 'pg'
end
# http://tzinfo.github.io/datasourcenotfound
gem 'tzinfo-data', platforms: [:mingw, :mswin]
# Fishes out the Accept-Language header into an array.
gem 'http_accept_language'
# Flexible authentication solution for Rails with Warden.
gem 'devise'
gem 'rolify', github: 'EppO/rolify' # issues/221
# Authorization library which restricts what resources a given user is allowed to access.
gem 'cancancan', '~> 1.10'
# Integrate Modernizr javascript library with Rails asset pipeline
gem 'modernizr_rails', github: 'tsechingho/modernizr-rails'
gem 'bootstrap-sass'
# CSS Authoring Framework
gem 'compass-rails', '2.0.4'
# The iconic font designed for Bootstrap
gem 'font-awesome-sass'
source 'https://rails-assets.org' do
gem 'rails-assets-sugar'
# Superheroic JavaScript MVW Framework
gem 'rails-assets-angular', '1.4.0'
gem 'rails-assets-angular-bootstrap'
gem 'rails-assets-ngstorage'
gem 'rails-assets-angular-formly'
gem 'rails-assets-angular-formly-templates-bootstrap'
gem 'rails-assets-angular-local-storage'
gem 'rails-assets-angular-cache'
gem 'rails-assets-angular-sanitize'
gem 'rails-assets-angular-timeline', '1.2.1'
gem 'rails-assets-angular-moment'
gem 'rails-assets-angular-translate'
gem 'rails-assets-angular-translate-loader-static-files'
gem 'rails-assets-angular-filter'
gem 'rails-assets-textAngular'
gem 'rails-assets-ng-file-upload'
gem 'rails-assets-angular-http-auth'
gem 'rails-assets-moment'
gem 'rails-assets-humps'
gem 'rails-assets-angular-growl-v2'
end
# Use your angular templates with rails' asset pipeline
gem 'angular-rails-templates'
gem 'ngannotate-rails'
# A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for Rails 3 and 4
gem 'kaminari'
# An opinionated micro-framework for creating REST-like APIs in Ruby
gem 'grape'
gem 'grape-entity'
gem 'api-pagination'
# Disables the security feature of strong_params at the model layer,
# allowing you the use of Grape's own params validation instead.
gem 'hashie-forbidden_attributes'
# Add swagger compliant documentation to your grape API
gem 'grape-swagger'
gem 'grape-swagger-rails'
# Doorkeeper is an OAuth 2 provider for Rails
gem 'doorkeeper'
# A Ruby gem that allows Oauth2 protection with Doorkeeper for Grape Api's
gem 'wine_bouncer'
# The ActiveRecord acts_as_commentable plugin
gem 'acts_as_commentable'
# Forms made easy for Rails! It's tied to a simple DSL, with no opinion on markup.
gem 'simple_form'
# Create plain old ruby models with functionality found in ORMs, like ActiveRecord
gem 'active_attr'
# RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data
gem 'rails_admin'
# Ckeditor integration gem for rails http://ckeditor.com/
gem 'ckeditor'
# Fix the Rails 4 asset pipeline to generate non-digest along with digest assets
gem 'non-stupid-digest-assets'
# Track changes to your models' data. Good for auditing or versioning.
gem 'paper_trail'
# Easy file attachment management for ActiveRecord
# Only used by ckeditor
gem "paperclip", "~> 4.3"