Commit 2cd125bc0b480f5248240c69b91c4350f3c45fb4
1 parent
0cd6092f
Exists in
master
and in
1 other branch
update Gemfile*
Showing
2 changed files
with
907 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,223 @@ | @@ -0,0 +1,223 @@ | ||
1 | +source "https://rubygems.org" | ||
2 | + | ||
3 | +def darwin_only(require_as) | ||
4 | + RUBY_PLATFORM.include?('darwin') && require_as | ||
5 | +end | ||
6 | + | ||
7 | +def linux_only(require_as) | ||
8 | + RUBY_PLATFORM.include?('linux') && require_as | ||
9 | +end | ||
10 | + | ||
11 | +gem "rails", "~> 4.0.0" | ||
12 | + | ||
13 | +gem "protected_attributes" | ||
14 | +gem 'rails-observers' | ||
15 | +gem 'actionpack-page_caching' | ||
16 | +gem 'actionpack-action_caching' | ||
17 | +gem 'activerecord-deprecated_finders' | ||
18 | + | ||
19 | +# Supported DBs | ||
20 | +gem "mysql2", group: :mysql | ||
21 | +gem "pg", group: :postgres | ||
22 | + | ||
23 | +# Auth | ||
24 | +gem "devise", '3.0.4' | ||
25 | +gem "devise-async", '0.8.0' | ||
26 | +gem 'omniauth', "~> 1.1.3" | ||
27 | +gem 'omniauth-google-oauth2' | ||
28 | +gem 'omniauth-twitter' | ||
29 | +gem 'omniauth-github' | ||
30 | + | ||
31 | +# Extracting information from a git repository | ||
32 | +# Provide access to Gitlab::Git library | ||
33 | +gem "gitlab_git", "~> 4.0.0.pre" | ||
34 | + | ||
35 | +# Ruby/Rack Git Smart-HTTP Server Handler | ||
36 | +gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack' | ||
37 | + | ||
38 | +# LDAP Auth | ||
39 | +gem 'gitlab_omniauth-ldap', '1.0.3', require: "omniauth-ldap" | ||
40 | + | ||
41 | +# Syntax highlighter | ||
42 | +gem "gitlab-pygments.rb", '~> 0.5.4', require: 'pygments.rb' | ||
43 | + | ||
44 | +# Git Wiki | ||
45 | +gem "gitlab-gollum-lib", "~> 1.0.2", require: 'gollum-lib' | ||
46 | + | ||
47 | +# Language detection | ||
48 | +gem "gitlab-linguist", "~> 2.9.6", require: "linguist" | ||
49 | + | ||
50 | +# API | ||
51 | +gem "grape", "~> 0.6.1" | ||
52 | +gem "grape-entity", "~> 0.3.0" | ||
53 | +gem 'rack-cors', require: 'rack/cors' | ||
54 | + | ||
55 | +# Format dates and times | ||
56 | +# based on human-friendly examples | ||
57 | +gem "stamp" | ||
58 | + | ||
59 | +# Enumeration fields | ||
60 | +gem 'enumerize' | ||
61 | + | ||
62 | +# Pagination | ||
63 | +gem "kaminari", "~> 0.14.1" | ||
64 | + | ||
65 | +# HAML | ||
66 | +gem "haml-rails" | ||
67 | + | ||
68 | +# Files attachments | ||
69 | +gem "carrierwave" | ||
70 | + | ||
71 | +# for aws storage | ||
72 | +gem "fog", "~> 1.3.1", group: :aws | ||
73 | + | ||
74 | +# Authorization | ||
75 | +gem "six" | ||
76 | + | ||
77 | +# Seed data | ||
78 | +gem "seed-fu" | ||
79 | + | ||
80 | +# Markdown to HTML | ||
81 | +gem "redcarpet", "~> 2.2.2" | ||
82 | +gem "github-markup", "~> 0.7.4", require: 'github/markup' | ||
83 | + | ||
84 | +# Asciidoc to HTML | ||
85 | +gem "asciidoctor" | ||
86 | + | ||
87 | +# Application server | ||
88 | +group :unicorn do | ||
89 | + gem "unicorn", '~> 4.6.3' | ||
90 | + gem 'unicorn-worker-killer' | ||
91 | +end | ||
92 | + | ||
93 | +# State machine | ||
94 | +gem "state_machine" | ||
95 | + | ||
96 | +# Issue tags | ||
97 | +gem "acts-as-taggable-on" | ||
98 | + | ||
99 | +# Background jobs | ||
100 | +gem 'slim' | ||
101 | +gem 'sinatra', require: nil | ||
102 | +gem 'sidekiq' | ||
103 | + | ||
104 | +# HTTP requests | ||
105 | +gem "httparty" | ||
106 | + | ||
107 | +# Colored output to console | ||
108 | +gem "colored" | ||
109 | + | ||
110 | +# GitLab settings | ||
111 | +gem 'settingslogic' | ||
112 | + | ||
113 | +# Misc | ||
114 | +gem "foreman" | ||
115 | + | ||
116 | +# Cache | ||
117 | +gem "redis-rails" | ||
118 | + | ||
119 | +# Campfire integration | ||
120 | +gem 'tinder', '~> 1.9.2' | ||
121 | + | ||
122 | +# HipChat integration | ||
123 | +gem "hipchat", "~> 0.9.0" | ||
124 | + | ||
125 | +# Flowdock integration | ||
126 | +gem "gitlab-flowdock-git-hook", "~> 0.4.2" | ||
127 | + | ||
128 | +# d3 | ||
129 | +gem "d3_rails", "~> 3.1.4" | ||
130 | + | ||
131 | +# underscore-rails | ||
132 | +gem "underscore-rails", "~> 1.4.4" | ||
133 | + | ||
134 | +# Sanitize user input | ||
135 | +gem "sanitize" | ||
136 | +gem "omniauth-env", git: "https://github.com/colab-community/omniauth-env.git" | ||
137 | + | ||
138 | +# Protect against bruteforcing | ||
139 | +gem "rack-attack" | ||
140 | + | ||
141 | +gem "sass-rails" | ||
142 | +gem "coffee-rails" | ||
143 | +gem "uglifier" | ||
144 | +gem "therubyracer" | ||
145 | +gem 'turbolinks' | ||
146 | +gem 'jquery-turbolinks' | ||
147 | + | ||
148 | +gem 'chosen-rails', "1.0.1" | ||
149 | +gem 'select2-rails' | ||
150 | +gem 'jquery-atwho-rails', "~> 0.3.3" | ||
151 | +gem "jquery-rails", "2.1.3" | ||
152 | +gem "jquery-ui-rails", "2.0.2" | ||
153 | +gem "modernizr", "2.6.2" | ||
154 | +gem "raphael-rails", "~> 2.1.2" | ||
155 | +gem 'bootstrap-sass', '~> 2.3' | ||
156 | +gem "font-awesome-rails", '~> 3.2' | ||
157 | +gem "gemoji", "~> 1.3.0" | ||
158 | +gem "gon", "~> 5.0.0" | ||
159 | + | ||
160 | +group :development do | ||
161 | + gem "annotate", "~> 2.6.0.beta2" | ||
162 | + gem "letter_opener" | ||
163 | + gem 'quiet_assets', '~> 1.0.1' | ||
164 | + gem 'rack-mini-profiler' | ||
165 | + | ||
166 | + # Better errors handler | ||
167 | + gem 'better_errors' | ||
168 | + gem 'binding_of_caller' | ||
169 | + | ||
170 | + gem 'rails_best_practices' | ||
171 | + | ||
172 | + # Docs generator | ||
173 | + gem "sdoc" | ||
174 | + | ||
175 | + # thin instead webrick | ||
176 | + gem 'thin' | ||
177 | +end | ||
178 | + | ||
179 | +group :development, :test do | ||
180 | + gem 'coveralls', require: false | ||
181 | + # gem 'rails-dev-tweaks' | ||
182 | + gem 'spinach-rails' | ||
183 | + gem "rspec-rails" | ||
184 | + gem "capybara" | ||
185 | + gem "pry" | ||
186 | + gem "awesome_print" | ||
187 | + gem "database_cleaner" | ||
188 | + gem "launchy" | ||
189 | + gem 'factory_girl_rails' | ||
190 | + | ||
191 | + # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) | ||
192 | + gem 'minitest', '~> 4.7.0' | ||
193 | + | ||
194 | + # Generate Fake data | ||
195 | + gem "ffaker" | ||
196 | + | ||
197 | + # Guard | ||
198 | + gem 'guard-rspec' | ||
199 | + gem 'guard-spinach' | ||
200 | + | ||
201 | + # Notification | ||
202 | + gem 'rb-fsevent', require: darwin_only('rb-fsevent') | ||
203 | + gem 'growl', require: darwin_only('growl') | ||
204 | + gem 'rb-inotify', require: linux_only('rb-inotify') | ||
205 | + | ||
206 | + # PhantomJS driver for Capybara | ||
207 | + gem 'poltergeist', '~> 1.4.1' | ||
208 | + | ||
209 | + gem 'spork', '~> 1.0rc' | ||
210 | + gem 'jasmine', '2.0.0.rc5' | ||
211 | +end | ||
212 | + | ||
213 | +group :test do | ||
214 | + gem "simplecov", require: false | ||
215 | + gem "shoulda-matchers", "~> 2.1.0" | ||
216 | + gem 'email_spec' | ||
217 | + gem "webmock" | ||
218 | + gem 'test_after_commit' | ||
219 | +end | ||
220 | + | ||
221 | +group :production do | ||
222 | + gem "gitlab_meta", '6.0' | ||
223 | +end |
@@ -0,0 +1,684 @@ | @@ -0,0 +1,684 @@ | ||
1 | +GIT | ||
2 | + remote: https://github.com/colab-community/omniauth-env.git | ||
3 | + revision: 3bdf3750a81f260063c3470ccc0d86070d01c552 | ||
4 | + specs: | ||
5 | + omniauth-env (0.0.1) | ||
6 | + gitlab_omniauth-ldap (~> 1.0.3) | ||
7 | + omniauth (~> 1.0) | ||
8 | + | ||
9 | +GEM | ||
10 | + remote: https://rubygems.org/ | ||
11 | + specs: | ||
12 | + actionmailer (4.0.4) | ||
13 | + actionpack (= 4.0.4) | ||
14 | + mail (~> 2.5.4) | ||
15 | + actionpack (4.0.4) | ||
16 | + activesupport (= 4.0.4) | ||
17 | + builder (~> 3.1.0) | ||
18 | + erubis (~> 2.7.0) | ||
19 | + rack (~> 1.5.2) | ||
20 | + rack-test (~> 0.6.2) | ||
21 | + actionpack-action_caching (1.1.1) | ||
22 | + actionpack (>= 4.0.0, < 5.0) | ||
23 | + actionpack-page_caching (1.0.2) | ||
24 | + actionpack (>= 4.0.0, < 5) | ||
25 | + activemodel (4.0.4) | ||
26 | + activesupport (= 4.0.4) | ||
27 | + builder (~> 3.1.0) | ||
28 | + activerecord (4.0.4) | ||
29 | + activemodel (= 4.0.4) | ||
30 | + activerecord-deprecated_finders (~> 1.0.2) | ||
31 | + activesupport (= 4.0.4) | ||
32 | + arel (~> 4.0.0) | ||
33 | + activerecord-deprecated_finders (1.0.3) | ||
34 | + activesupport (4.0.4) | ||
35 | + i18n (~> 0.6, >= 0.6.9) | ||
36 | + minitest (~> 4.2) | ||
37 | + multi_json (~> 1.3) | ||
38 | + thread_safe (~> 0.1) | ||
39 | + tzinfo (~> 0.3.37) | ||
40 | + acts-as-taggable-on (3.1.0) | ||
41 | + actionpack (>= 3, < 5) | ||
42 | + activerecord (>= 3, < 5) | ||
43 | + activesupport (>= 3, < 5) | ||
44 | + addressable (2.3.6) | ||
45 | + annotate (2.6.2) | ||
46 | + activerecord (>= 2.3.0) | ||
47 | + rake (>= 0.8.7) | ||
48 | + arel (4.0.2) | ||
49 | + asciidoctor (0.1.4) | ||
50 | + atomic (1.1.16) | ||
51 | + awesome_print (1.2.0) | ||
52 | + axiom-types (0.1.1) | ||
53 | + descendants_tracker (~> 0.0.4) | ||
54 | + ice_nine (~> 0.11.0) | ||
55 | + thread_safe (~> 0.3, >= 0.3.1) | ||
56 | + bcrypt (3.1.7) | ||
57 | + bcrypt-ruby (3.1.5) | ||
58 | + bcrypt (>= 3.1.3) | ||
59 | + better_errors (1.1.0) | ||
60 | + coderay (>= 1.0.0) | ||
61 | + erubis (>= 2.6.6) | ||
62 | + binding_of_caller (0.7.2) | ||
63 | + debug_inspector (>= 0.0.1) | ||
64 | + bootstrap-sass (2.3.2.2) | ||
65 | + sass (~> 3.2) | ||
66 | + builder (3.1.4) | ||
67 | + capybara (2.1.0) | ||
68 | + mime-types (>= 1.16) | ||
69 | + nokogiri (>= 1.3.3) | ||
70 | + rack (>= 1.0.0) | ||
71 | + rack-test (>= 0.5.4) | ||
72 | + xpath (~> 2.0) | ||
73 | + carrierwave (0.10.0) | ||
74 | + activemodel (>= 3.2.0) | ||
75 | + activesupport (>= 3.2.0) | ||
76 | + json (>= 1.7) | ||
77 | + mime-types (>= 1.16) | ||
78 | + celluloid (0.15.2) | ||
79 | + timers (~> 1.1.0) | ||
80 | + celluloid-io (0.15.0) | ||
81 | + celluloid (>= 0.15.0) | ||
82 | + nio4r (>= 0.5.0) | ||
83 | + charlock_holmes (0.6.9.4) | ||
84 | + chosen-rails (1.0.1) | ||
85 | + coffee-rails (>= 3.2) | ||
86 | + compass-rails (>= 1.0) | ||
87 | + railties (>= 3.0) | ||
88 | + sass-rails (>= 3.2) | ||
89 | + chunky_png (1.3.0) | ||
90 | + cliver (0.2.2) | ||
91 | + code_analyzer (0.4.5) | ||
92 | + sexp_processor | ||
93 | + coderay (1.1.0) | ||
94 | + coercible (1.0.0) | ||
95 | + descendants_tracker (~> 0.0.1) | ||
96 | + coffee-rails (4.0.1) | ||
97 | + coffee-script (>= 2.2.0) | ||
98 | + railties (>= 4.0.0, < 5.0) | ||
99 | + coffee-script (2.2.0) | ||
100 | + coffee-script-source | ||
101 | + execjs | ||
102 | + coffee-script-source (1.7.0) | ||
103 | + colored (1.2) | ||
104 | + colorize (0.5.8) | ||
105 | + compass (0.12.4) | ||
106 | + chunky_png (~> 1.2) | ||
107 | + fssm (>= 0.2.7) | ||
108 | + sass (~> 3.2.17) | ||
109 | + compass-rails (1.1.7) | ||
110 | + compass (>= 0.12.2) | ||
111 | + sprockets (<= 2.11.0) | ||
112 | + connection_pool (2.0.0) | ||
113 | + coveralls (0.7.0) | ||
114 | + multi_json (~> 1.3) | ||
115 | + rest-client | ||
116 | + simplecov (>= 0.7) | ||
117 | + term-ansicolor | ||
118 | + thor | ||
119 | + crack (0.4.2) | ||
120 | + safe_yaml (~> 1.0.0) | ||
121 | + d3_rails (3.1.10) | ||
122 | + railties (>= 3.1.0) | ||
123 | + daemons (1.1.9) | ||
124 | + database_cleaner (1.2.0) | ||
125 | + debug_inspector (0.0.2) | ||
126 | + descendants_tracker (0.0.4) | ||
127 | + thread_safe (~> 0.3, >= 0.3.1) | ||
128 | + devise (3.0.4) | ||
129 | + bcrypt-ruby (~> 3.0) | ||
130 | + orm_adapter (~> 0.1) | ||
131 | + railties (>= 3.2.6, < 5) | ||
132 | + warden (~> 1.2.3) | ||
133 | + devise-async (0.8.0) | ||
134 | + devise (>= 2.2, < 3.2) | ||
135 | + diff-lcs (1.2.5) | ||
136 | + docile (1.1.3) | ||
137 | + dotenv (0.10.0) | ||
138 | + email_spec (1.5.0) | ||
139 | + launchy (~> 2.1) | ||
140 | + mail (~> 2.2) | ||
141 | + enumerize (0.8.0) | ||
142 | + activesupport (>= 3.2) | ||
143 | + equalizer (0.0.9) | ||
144 | + erubis (2.7.0) | ||
145 | + escape_utils (0.2.4) | ||
146 | + eventmachine (1.0.3) | ||
147 | + excon (0.13.4) | ||
148 | + execjs (2.0.2) | ||
149 | + factory_girl (4.4.0) | ||
150 | + activesupport (>= 3.0.0) | ||
151 | + factory_girl_rails (4.4.1) | ||
152 | + factory_girl (~> 4.4.0) | ||
153 | + railties (>= 3.0.0) | ||
154 | + faraday (0.8.9) | ||
155 | + multipart-post (~> 1.2.0) | ||
156 | + faraday_middleware (0.9.0) | ||
157 | + faraday (>= 0.7.4, < 0.9) | ||
158 | + ffaker (1.23.0) | ||
159 | + ffi (1.9.3) | ||
160 | + fog (1.3.1) | ||
161 | + builder | ||
162 | + excon (~> 0.13.0) | ||
163 | + formatador (~> 0.2.0) | ||
164 | + mime-types | ||
165 | + multi_json (~> 1.0) | ||
166 | + net-scp (~> 1.0.4) | ||
167 | + net-ssh (>= 2.1.3) | ||
168 | + nokogiri (~> 1.5.0) | ||
169 | + ruby-hmac | ||
170 | + font-awesome-rails (3.2.1.3) | ||
171 | + railties (>= 3.2, < 5.0) | ||
172 | + foreman (0.63.0) | ||
173 | + dotenv (>= 0.7) | ||
174 | + thor (>= 0.13.6) | ||
175 | + formatador (0.2.4) | ||
176 | + fssm (0.2.10) | ||
177 | + gemoji (1.3.1) | ||
178 | + gherkin-ruby (0.3.1) | ||
179 | + racc | ||
180 | + github-markdown (0.5.5) | ||
181 | + github-markup (0.7.5) | ||
182 | + gitlab-flowdock-git-hook (0.4.2.2) | ||
183 | + gitlab-grit (>= 2.4.1) | ||
184 | + multi_json | ||
185 | + gitlab-gollum-lib (1.0.2) | ||
186 | + github-markdown (~> 0.5.3) | ||
187 | + github-markup (>= 0.7.5, < 1.0.0) | ||
188 | + gitlab-grit (~> 2.6.1) | ||
189 | + gitlab-pygments.rb (~> 0.5.4) | ||
190 | + nokogiri (~> 1.5.9) | ||
191 | + sanitize (~> 2.0.3) | ||
192 | + stringex (~> 1.5.1) | ||
193 | + gitlab-grack (2.0.0.pre) | ||
194 | + rack (~> 1.5.1) | ||
195 | + gitlab-grit (2.6.4) | ||
196 | + charlock_holmes (~> 0.6.9) | ||
197 | + diff-lcs (~> 1.1) | ||
198 | + mime-types (~> 1.15) | ||
199 | + posix-spawn (~> 0.3.6) | ||
200 | + gitlab-linguist (2.9.6) | ||
201 | + charlock_holmes (~> 0.6.6) | ||
202 | + escape_utils (~> 0.2.4) | ||
203 | + gitlab-pygments.rb (~> 0.5.4) | ||
204 | + mime-types (~> 1.19) | ||
205 | + gitlab-pygments.rb (0.5.4) | ||
206 | + posix-spawn (~> 0.3.6) | ||
207 | + yajl-ruby (~> 1.1.0) | ||
208 | + gitlab_git (4.0.0) | ||
209 | + activesupport (~> 4.0.0) | ||
210 | + gitlab-grit (~> 2.6.1) | ||
211 | + gitlab-linguist (~> 2.9.5) | ||
212 | + gitlab-pygments.rb (~> 0.5.4) | ||
213 | + gitlab_meta (6.0) | ||
214 | + gitlab_omniauth-ldap (1.0.3) | ||
215 | + net-ldap (~> 0.3.1) | ||
216 | + omniauth (~> 1.0) | ||
217 | + pyu-ruby-sasl (~> 0.0.3.1) | ||
218 | + rubyntlm (~> 0.1.1) | ||
219 | + gon (5.0.4) | ||
220 | + actionpack (>= 2.3.0) | ||
221 | + json | ||
222 | + grape (0.6.1) | ||
223 | + activesupport | ||
224 | + builder | ||
225 | + hashie (>= 1.2.0) | ||
226 | + multi_json (>= 1.3.2) | ||
227 | + multi_xml (>= 0.5.2) | ||
228 | + rack (>= 1.3.0) | ||
229 | + rack-accept | ||
230 | + rack-mount | ||
231 | + virtus (>= 1.0.0) | ||
232 | + grape-entity (0.3.0) | ||
233 | + activesupport | ||
234 | + multi_json (>= 1.3.2) | ||
235 | + growl (1.0.3) | ||
236 | + guard (2.6.0) | ||
237 | + formatador (>= 0.2.4) | ||
238 | + listen (~> 2.7) | ||
239 | + lumberjack (~> 1.0) | ||
240 | + pry (>= 0.9.12) | ||
241 | + thor (>= 0.18.1) | ||
242 | + guard-rspec (4.2.8) | ||
243 | + guard (~> 2.1) | ||
244 | + rspec (>= 2.14, < 4.0) | ||
245 | + guard-spinach (0.0.3) | ||
246 | + guard (>= 1.1) | ||
247 | + spinach | ||
248 | + haml (4.0.5) | ||
249 | + tilt | ||
250 | + haml-rails (0.5.3) | ||
251 | + actionpack (>= 4.0.1) | ||
252 | + activesupport (>= 4.0.1) | ||
253 | + haml (>= 3.1, < 5.0) | ||
254 | + railties (>= 4.0.1) | ||
255 | + hashie (2.0.5) | ||
256 | + hike (1.2.3) | ||
257 | + hipchat (0.9.0) | ||
258 | + httparty | ||
259 | + httparty | ||
260 | + http_parser.rb (0.5.3) | ||
261 | + httparty (0.13.0) | ||
262 | + json (~> 1.8) | ||
263 | + multi_xml (>= 0.5.2) | ||
264 | + httpauth (0.2.1) | ||
265 | + i18n (0.6.9) | ||
266 | + ice_nine (0.11.0) | ||
267 | + jasmine (2.0.0.rc5) | ||
268 | + jasmine-core (~> 2.0.0.rc5) | ||
269 | + phantomjs | ||
270 | + rack (>= 1.2.1) | ||
271 | + rake | ||
272 | + jasmine-core (2.0.0) | ||
273 | + jquery-atwho-rails (0.3.3) | ||
274 | + jquery-rails (2.1.3) | ||
275 | + railties (>= 3.1.0, < 5.0) | ||
276 | + thor (~> 0.14) | ||
277 | + jquery-turbolinks (2.0.2) | ||
278 | + railties (>= 3.1.0) | ||
279 | + turbolinks | ||
280 | + jquery-ui-rails (2.0.2) | ||
281 | + jquery-rails | ||
282 | + railties (>= 3.1.0) | ||
283 | + json (1.8.1) | ||
284 | + jwt (0.1.11) | ||
285 | + multi_json (>= 1.5) | ||
286 | + kaminari (0.14.1) | ||
287 | + actionpack (>= 3.0.0) | ||
288 | + activesupport (>= 3.0.0) | ||
289 | + kgio (2.9.2) | ||
290 | + launchy (2.4.2) | ||
291 | + addressable (~> 2.3) | ||
292 | + letter_opener (1.2.0) | ||
293 | + launchy (~> 2.2) | ||
294 | + libv8 (3.16.14.3) | ||
295 | + listen (2.7.1) | ||
296 | + celluloid (>= 0.15.2) | ||
297 | + celluloid-io (>= 0.15.0) | ||
298 | + rb-fsevent (>= 0.9.3) | ||
299 | + rb-inotify (>= 0.9) | ||
300 | + lumberjack (1.0.5) | ||
301 | + mail (2.5.4) | ||
302 | + mime-types (~> 1.16) | ||
303 | + treetop (~> 1.4.8) | ||
304 | + method_source (0.8.2) | ||
305 | + mime-types (1.25.1) | ||
306 | + minitest (4.7.5) | ||
307 | + modernizr (2.6.2) | ||
308 | + sprockets (~> 2.0) | ||
309 | + multi_json (1.9.2) | ||
310 | + multi_xml (0.5.5) | ||
311 | + multipart-post (1.2.0) | ||
312 | + mysql2 (0.3.15) | ||
313 | + net-ldap (0.3.1) | ||
314 | + net-scp (1.0.4) | ||
315 | + net-ssh (>= 1.99.1) | ||
316 | + net-ssh (2.8.0) | ||
317 | + nio4r (1.0.0) | ||
318 | + nokogiri (1.5.11) | ||
319 | + oauth (0.4.7) | ||
320 | + oauth2 (0.8.1) | ||
321 | + faraday (~> 0.8) | ||
322 | + httpauth (~> 0.1) | ||
323 | + jwt (~> 0.1.4) | ||
324 | + multi_json (~> 1.0) | ||
325 | + rack (~> 1.2) | ||
326 | + omniauth (1.1.4) | ||
327 | + hashie (>= 1.2, < 3) | ||
328 | + rack | ||
329 | + omniauth-github (1.1.1) | ||
330 | + omniauth (~> 1.0) | ||
331 | + omniauth-oauth2 (~> 1.1) | ||
332 | + omniauth-google-oauth2 (0.2.2) | ||
333 | + omniauth (~> 1.0) | ||
334 | + omniauth-oauth2 | ||
335 | + omniauth-oauth (1.0.1) | ||
336 | + oauth | ||
337 | + omniauth (~> 1.0) | ||
338 | + omniauth-oauth2 (1.1.1) | ||
339 | + oauth2 (~> 0.8.0) | ||
340 | + omniauth (~> 1.0) | ||
341 | + omniauth-twitter (1.0.1) | ||
342 | + multi_json (~> 1.3) | ||
343 | + omniauth-oauth (~> 1.0) | ||
344 | + orm_adapter (0.5.0) | ||
345 | + pg (0.17.1) | ||
346 | + phantomjs (1.9.7.0) | ||
347 | + poltergeist (1.4.1) | ||
348 | + capybara (~> 2.1.0) | ||
349 | + cliver (~> 0.2.1) | ||
350 | + multi_json (~> 1.0) | ||
351 | + websocket-driver (>= 0.2.0) | ||
352 | + polyglot (0.3.4) | ||
353 | + posix-spawn (0.3.8) | ||
354 | + protected_attributes (1.0.7) | ||
355 | + activemodel (>= 4.0.1, < 5.0) | ||
356 | + pry (0.9.12.6) | ||
357 | + coderay (~> 1.0) | ||
358 | + method_source (~> 0.8) | ||
359 | + slop (~> 3.4) | ||
360 | + pyu-ruby-sasl (0.0.3.3) | ||
361 | + quiet_assets (1.0.2) | ||
362 | + railties (>= 3.1, < 5.0) | ||
363 | + racc (1.4.11) | ||
364 | + rack (1.5.2) | ||
365 | + rack-accept (0.4.5) | ||
366 | + rack (>= 0.4) | ||
367 | + rack-attack (3.0.0) | ||
368 | + rack | ||
369 | + rack-cors (0.2.9) | ||
370 | + rack-mini-profiler (0.9.1) | ||
371 | + rack (>= 1.1.3) | ||
372 | + rack-mount (0.8.3) | ||
373 | + rack (>= 1.0.0) | ||
374 | + rack-protection (1.5.2) | ||
375 | + rack | ||
376 | + rack-test (0.6.2) | ||
377 | + rack (>= 1.0) | ||
378 | + rails (4.0.4) | ||
379 | + actionmailer (= 4.0.4) | ||
380 | + actionpack (= 4.0.4) | ||
381 | + activerecord (= 4.0.4) | ||
382 | + activesupport (= 4.0.4) | ||
383 | + bundler (>= 1.3.0, < 2.0) | ||
384 | + railties (= 4.0.4) | ||
385 | + sprockets-rails (~> 2.0.0) | ||
386 | + rails-observers (0.1.2) | ||
387 | + activemodel (~> 4.0) | ||
388 | + rails_best_practices (1.15.2) | ||
389 | + activesupport | ||
390 | + awesome_print | ||
391 | + code_analyzer (>= 0.4.3) | ||
392 | + colored | ||
393 | + erubis | ||
394 | + i18n | ||
395 | + require_all | ||
396 | + ruby-progressbar | ||
397 | + railties (4.0.4) | ||
398 | + actionpack (= 4.0.4) | ||
399 | + activesupport (= 4.0.4) | ||
400 | + rake (>= 0.8.7) | ||
401 | + thor (>= 0.18.1, < 2.0) | ||
402 | + raindrops (0.13.0) | ||
403 | + rake (10.2.2) | ||
404 | + raphael-rails (2.1.2) | ||
405 | + rb-fsevent (0.9.4) | ||
406 | + rb-inotify (0.9.3) | ||
407 | + ffi (>= 0.5.0) | ||
408 | + rdoc (4.1.1) | ||
409 | + json (~> 1.4) | ||
410 | + redcarpet (2.2.2) | ||
411 | + redis (3.0.7) | ||
412 | + redis-actionpack (4.0.0) | ||
413 | + actionpack (~> 4) | ||
414 | + redis-rack (~> 1.5.0) | ||
415 | + redis-store (~> 1.1.0) | ||
416 | + redis-activesupport (4.0.0) | ||
417 | + activesupport (~> 4) | ||
418 | + redis-store (~> 1.1.0) | ||
419 | + redis-namespace (1.4.1) | ||
420 | + redis (~> 3.0.4) | ||
421 | + redis-rack (1.5.0) | ||
422 | + rack (~> 1.5) | ||
423 | + redis-store (~> 1.1.0) | ||
424 | + redis-rails (4.0.0) | ||
425 | + redis-actionpack (~> 4) | ||
426 | + redis-activesupport (~> 4) | ||
427 | + redis-store (~> 1.1.0) | ||
428 | + redis-store (1.1.4) | ||
429 | + redis (>= 2.2) | ||
430 | + ref (1.0.5) | ||
431 | + require_all (1.3.2) | ||
432 | + rest-client (1.6.7) | ||
433 | + mime-types (>= 1.16) | ||
434 | + rspec (2.14.1) | ||
435 | + rspec-core (~> 2.14.0) | ||
436 | + rspec-expectations (~> 2.14.0) | ||
437 | + rspec-mocks (~> 2.14.0) | ||
438 | + rspec-core (2.14.8) | ||
439 | + rspec-expectations (2.14.5) | ||
440 | + diff-lcs (>= 1.1.3, < 2.0) | ||
441 | + rspec-mocks (2.14.6) | ||
442 | + rspec-rails (2.14.2) | ||
443 | + actionpack (>= 3.0) | ||
444 | + activemodel (>= 3.0) | ||
445 | + activesupport (>= 3.0) | ||
446 | + railties (>= 3.0) | ||
447 | + rspec-core (~> 2.14.0) | ||
448 | + rspec-expectations (~> 2.14.0) | ||
449 | + rspec-mocks (~> 2.14.0) | ||
450 | + ruby-hmac (0.4.0) | ||
451 | + ruby-progressbar (1.4.2) | ||
452 | + rubyntlm (0.1.1) | ||
453 | + safe_yaml (1.0.1) | ||
454 | + sanitize (2.0.6) | ||
455 | + nokogiri (>= 1.4.4) | ||
456 | + sass (3.2.18) | ||
457 | + sass-rails (4.0.2) | ||
458 | + railties (>= 4.0.0, < 5.0) | ||
459 | + sass (~> 3.2.0) | ||
460 | + sprockets (~> 2.8, <= 2.11.0) | ||
461 | + sprockets-rails (~> 2.0.0) | ||
462 | + sdoc (0.4.0) | ||
463 | + json (~> 1.8) | ||
464 | + rdoc (~> 4.0, < 5.0) | ||
465 | + seed-fu (2.3.0) | ||
466 | + activerecord (>= 3.1, < 4.1) | ||
467 | + activesupport (>= 3.1, < 4.1) | ||
468 | + select2-rails (3.5.4) | ||
469 | + thor (~> 0.14) | ||
470 | + settingslogic (2.0.9) | ||
471 | + sexp_processor (4.4.3) | ||
472 | + shoulda-matchers (2.1.0) | ||
473 | + activesupport (>= 3.0.0) | ||
474 | + sidekiq (3.0.0) | ||
475 | + celluloid (>= 0.15.2) | ||
476 | + connection_pool (>= 2.0.0) | ||
477 | + json | ||
478 | + redis (>= 3.0.6) | ||
479 | + redis-namespace (>= 1.3.1) | ||
480 | + simple_oauth (0.1.9) | ||
481 | + simplecov (0.8.2) | ||
482 | + docile (~> 1.1.0) | ||
483 | + multi_json | ||
484 | + simplecov-html (~> 0.8.0) | ||
485 | + simplecov-html (0.8.0) | ||
486 | + sinatra (1.4.4) | ||
487 | + rack (~> 1.4) | ||
488 | + rack-protection (~> 1.4) | ||
489 | + tilt (~> 1.3, >= 1.3.4) | ||
490 | + six (0.2.0) | ||
491 | + slim (2.0.2) | ||
492 | + temple (~> 0.6.6) | ||
493 | + tilt (>= 1.3.3, < 2.1) | ||
494 | + slop (3.5.0) | ||
495 | + spinach (0.8.7) | ||
496 | + colorize (= 0.5.8) | ||
497 | + gherkin-ruby (>= 0.3.1) | ||
498 | + spinach-rails (0.2.1) | ||
499 | + capybara (>= 2.0.0) | ||
500 | + railties (>= 3) | ||
501 | + spinach (>= 0.4) | ||
502 | + spork (1.0.0rc4) | ||
503 | + sprockets (2.11.0) | ||
504 | + hike (~> 1.2) | ||
505 | + multi_json (~> 1.0) | ||
506 | + rack (~> 1.0) | ||
507 | + tilt (~> 1.1, != 1.3.0) | ||
508 | + sprockets-rails (2.0.1) | ||
509 | + actionpack (>= 3.0) | ||
510 | + activesupport (>= 3.0) | ||
511 | + sprockets (~> 2.8) | ||
512 | + stamp (0.5.0) | ||
513 | + state_machine (1.2.0) | ||
514 | + stringex (1.5.1) | ||
515 | + temple (0.6.7) | ||
516 | + term-ansicolor (1.3.0) | ||
517 | + tins (~> 1.0) | ||
518 | + test_after_commit (0.2.3) | ||
519 | + therubyracer (0.12.1) | ||
520 | + libv8 (~> 3.16.14.0) | ||
521 | + ref | ||
522 | + thin (1.6.2) | ||
523 | + daemons (>= 1.0.9) | ||
524 | + eventmachine (>= 1.0.0) | ||
525 | + rack (>= 1.0.0) | ||
526 | + thor (0.19.1) | ||
527 | + thread_safe (0.3.1) | ||
528 | + atomic (>= 1.1.7, < 2) | ||
529 | + tilt (1.4.1) | ||
530 | + timers (1.1.0) | ||
531 | + tinder (1.9.4) | ||
532 | + eventmachine (~> 1.0) | ||
533 | + faraday (~> 0.8.9) | ||
534 | + faraday_middleware (~> 0.9) | ||
535 | + hashie (>= 1.0, < 3) | ||
536 | + json (~> 1.8.0) | ||
537 | + mime-types (~> 1.19) | ||
538 | + multi_json (~> 1.7) | ||
539 | + twitter-stream (~> 0.1) | ||
540 | + tins (1.0.1) | ||
541 | + treetop (1.4.15) | ||
542 | + polyglot | ||
543 | + polyglot (>= 0.3.1) | ||
544 | + turbolinks (2.2.1) | ||
545 | + coffee-rails | ||
546 | + twitter-stream (0.1.16) | ||
547 | + eventmachine (>= 0.12.8) | ||
548 | + http_parser.rb (~> 0.5.1) | ||
549 | + simple_oauth (~> 0.1.4) | ||
550 | + tzinfo (0.3.39) | ||
551 | + uglifier (2.5.0) | ||
552 | + execjs (>= 0.3.0) | ||
553 | + json (>= 1.8.0) | ||
554 | + underscore-rails (1.4.4) | ||
555 | + unicorn (4.6.3) | ||
556 | + kgio (~> 2.6) | ||
557 | + rack | ||
558 | + raindrops (~> 0.7) | ||
559 | + unicorn-worker-killer (0.4.2) | ||
560 | + unicorn (~> 4) | ||
561 | + virtus (1.0.2) | ||
562 | + axiom-types (~> 0.1) | ||
563 | + coercible (~> 1.0) | ||
564 | + descendants_tracker (~> 0.0.3) | ||
565 | + equalizer (~> 0.0.9) | ||
566 | + warden (1.2.3) | ||
567 | + rack (>= 1.0) | ||
568 | + webmock (1.17.4) | ||
569 | + addressable (>= 2.2.7) | ||
570 | + crack (>= 0.3.2) | ||
571 | + websocket-driver (0.3.2) | ||
572 | + xpath (2.0.0) | ||
573 | + nokogiri (~> 1.3) | ||
574 | + yajl-ruby (1.1.0) | ||
575 | + | ||
576 | +PLATFORMS | ||
577 | + ruby | ||
578 | + | ||
579 | +DEPENDENCIES | ||
580 | + actionpack-action_caching | ||
581 | + actionpack-page_caching | ||
582 | + activerecord-deprecated_finders | ||
583 | + acts-as-taggable-on | ||
584 | + annotate (~> 2.6.0.beta2) | ||
585 | + asciidoctor | ||
586 | + awesome_print | ||
587 | + better_errors | ||
588 | + binding_of_caller | ||
589 | + bootstrap-sass (~> 2.3) | ||
590 | + capybara | ||
591 | + carrierwave | ||
592 | + chosen-rails (= 1.0.1) | ||
593 | + coffee-rails | ||
594 | + colored | ||
595 | + coveralls | ||
596 | + d3_rails (~> 3.1.4) | ||
597 | + database_cleaner | ||
598 | + devise (= 3.0.4) | ||
599 | + devise-async (= 0.8.0) | ||
600 | + email_spec | ||
601 | + enumerize | ||
602 | + factory_girl_rails | ||
603 | + ffaker | ||
604 | + fog (~> 1.3.1) | ||
605 | + font-awesome-rails (~> 3.2) | ||
606 | + foreman | ||
607 | + gemoji (~> 1.3.0) | ||
608 | + github-markup (~> 0.7.4) | ||
609 | + gitlab-flowdock-git-hook (~> 0.4.2) | ||
610 | + gitlab-gollum-lib (~> 1.0.2) | ||
611 | + gitlab-grack (~> 2.0.0.pre) | ||
612 | + gitlab-linguist (~> 2.9.6) | ||
613 | + gitlab-pygments.rb (~> 0.5.4) | ||
614 | + gitlab_git (~> 4.0.0.pre) | ||
615 | + gitlab_meta (= 6.0) | ||
616 | + gitlab_omniauth-ldap (= 1.0.3) | ||
617 | + gon (~> 5.0.0) | ||
618 | + grape (~> 0.6.1) | ||
619 | + grape-entity (~> 0.3.0) | ||
620 | + growl | ||
621 | + guard-rspec | ||
622 | + guard-spinach | ||
623 | + haml-rails | ||
624 | + hipchat (~> 0.9.0) | ||
625 | + httparty | ||
626 | + jasmine (= 2.0.0.rc5) | ||
627 | + jquery-atwho-rails (~> 0.3.3) | ||
628 | + jquery-rails (= 2.1.3) | ||
629 | + jquery-turbolinks | ||
630 | + jquery-ui-rails (= 2.0.2) | ||
631 | + kaminari (~> 0.14.1) | ||
632 | + launchy | ||
633 | + letter_opener | ||
634 | + minitest (~> 4.7.0) | ||
635 | + modernizr (= 2.6.2) | ||
636 | + mysql2 | ||
637 | + omniauth (~> 1.1.3) | ||
638 | + omniauth-env! | ||
639 | + omniauth-github | ||
640 | + omniauth-google-oauth2 | ||
641 | + omniauth-twitter | ||
642 | + pg | ||
643 | + poltergeist (~> 1.4.1) | ||
644 | + protected_attributes | ||
645 | + pry | ||
646 | + quiet_assets (~> 1.0.1) | ||
647 | + rack-attack | ||
648 | + rack-cors | ||
649 | + rack-mini-profiler | ||
650 | + rails (~> 4.0.0) | ||
651 | + rails-observers | ||
652 | + rails_best_practices | ||
653 | + raphael-rails (~> 2.1.2) | ||
654 | + rb-fsevent | ||
655 | + rb-inotify | ||
656 | + redcarpet (~> 2.2.2) | ||
657 | + redis-rails | ||
658 | + rspec-rails | ||
659 | + sanitize | ||
660 | + sass-rails | ||
661 | + sdoc | ||
662 | + seed-fu | ||
663 | + select2-rails | ||
664 | + settingslogic | ||
665 | + shoulda-matchers (~> 2.1.0) | ||
666 | + sidekiq | ||
667 | + simplecov | ||
668 | + sinatra | ||
669 | + six | ||
670 | + slim | ||
671 | + spinach-rails | ||
672 | + spork (~> 1.0rc) | ||
673 | + stamp | ||
674 | + state_machine | ||
675 | + test_after_commit | ||
676 | + therubyracer | ||
677 | + thin | ||
678 | + tinder (~> 1.9.2) | ||
679 | + turbolinks | ||
680 | + uglifier | ||
681 | + underscore-rails (~> 1.4.4) | ||
682 | + unicorn (~> 4.6.3) | ||
683 | + unicorn-worker-killer | ||
684 | + webmock |