Commit 39eb167eaf578309f799df87f991993ab642a451
1 parent
e72af113
Exists in
master
and in
1 other branch
update Gemfile*
Showing
2 changed files
with
791 additions
and
41 deletions
Show diff stats
Gemfile
... | ... | @@ -8,48 +8,46 @@ def linux_only(require_as) |
8 | 8 | RUBY_PLATFORM.include?('linux') && require_as |
9 | 9 | end |
10 | 10 | |
11 | -gem "rails", "~> 4.0.0" | |
11 | +gem "rails", "~> 4.1.0" | |
12 | 12 | |
13 | -gem "protected_attributes" | |
14 | -gem 'rails-observers' | |
15 | -gem 'actionpack-page_caching' | |
16 | -gem 'actionpack-action_caching' | |
17 | -gem 'activerecord-deprecated_finders' | |
13 | +# Make links from text | |
14 | +gem 'rails_autolink', '~> 1.1' | |
15 | + | |
16 | +# Default values for AR models | |
17 | +gem "default_value_for", "~> 3.0.0" | |
18 | 18 | |
19 | 19 | # Supported DBs |
20 | 20 | gem "mysql2", group: :mysql |
21 | 21 | gem "pg", group: :postgres |
22 | 22 | |
23 | 23 | # Auth |
24 | -gem "devise", '3.0.4' | |
25 | -gem "devise-async", '0.8.0' | |
24 | +gem "devise", '3.2.4' | |
25 | +gem "devise-async", '0.9.0' | |
26 | 26 | gem 'omniauth', "~> 1.1.3" |
27 | 27 | gem 'omniauth-google-oauth2' |
28 | 28 | gem 'omniauth-twitter' |
29 | 29 | gem 'omniauth-github' |
30 | +gem 'omniauth-shibboleth' | |
30 | 31 | |
31 | 32 | # Extracting information from a git repository |
32 | 33 | # Provide access to Gitlab::Git library |
33 | -gem "gitlab_git", "~> 4.0.0.pre" | |
34 | +gem "gitlab_git", '7.0.0.rc11' | |
34 | 35 | |
35 | 36 | # Ruby/Rack Git Smart-HTTP Server Handler |
36 | 37 | gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack' |
37 | 38 | |
38 | 39 | # 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' | |
40 | +gem 'gitlab_omniauth-ldap', '1.2.0', require: "omniauth-ldap" | |
43 | 41 | |
44 | 42 | # Git Wiki |
45 | -gem "gitlab-gollum-lib", "~> 1.0.2", require: 'gollum-lib' | |
43 | +gem 'gollum-lib', '~> 3.0.0' | |
46 | 44 | |
47 | 45 | # Language detection |
48 | -gem "gitlab-linguist", "~> 2.9.6", require: "linguist" | |
46 | +gem "gitlab-linguist", "~> 3.0.0", require: "linguist" | |
49 | 47 | |
50 | 48 | # API |
51 | 49 | gem "grape", "~> 0.6.1" |
52 | -gem "grape-entity", "~> 0.3.0" | |
50 | +gem "grape-entity", "~> 0.4.2" | |
53 | 51 | gem 'rack-cors', require: 'rack/cors' |
54 | 52 | |
55 | 53 | # Format dates and times |
... | ... | @@ -60,7 +58,7 @@ gem "stamp" |
60 | 58 | gem 'enumerize' |
61 | 59 | |
62 | 60 | # Pagination |
63 | -gem "kaminari", "~> 0.14.1" | |
61 | +gem "kaminari", "~> 0.15.1" | |
64 | 62 | |
65 | 63 | # HAML |
66 | 64 | gem "haml-rails" |
... | ... | @@ -68,8 +66,12 @@ gem "haml-rails" |
68 | 66 | # Files attachments |
69 | 67 | gem "carrierwave" |
70 | 68 | |
69 | +# Drag and Drop UI | |
70 | +gem 'dropzonejs-rails' | |
71 | + | |
71 | 72 | # for aws storage |
72 | -gem "fog", "~> 1.3.1", group: :aws | |
73 | +gem "fog", "~> 1.14" | |
74 | +gem "unf" | |
73 | 75 | |
74 | 76 | # Authorization |
75 | 77 | gem "six" |
... | ... | @@ -77,12 +79,23 @@ gem "six" |
77 | 79 | # Seed data |
78 | 80 | gem "seed-fu" |
79 | 81 | |
82 | +# Markup pipeline for GitLab | |
83 | +gem 'html-pipeline-gitlab', '~> 0.1.0' | |
84 | + | |
80 | 85 | # Markdown to HTML |
81 | -gem "redcarpet", "~> 2.2.2" | |
82 | -gem "github-markup", "~> 0.7.4", require: 'github/markup' | |
86 | +gem "github-markup" | |
87 | + | |
88 | +# Required markup gems by github-markdown | |
89 | +gem 'redcarpet', '~> 3.1.2' | |
90 | +gem 'RedCloth' | |
91 | +gem 'rdoc', '~>3.6' | |
92 | +gem 'org-ruby', '= 0.9.9' | |
93 | +gem 'creole', '~>0.3.6' | |
94 | +gem 'wikicloth', '=0.8.1' | |
95 | +gem 'asciidoctor', '= 0.1.4' | |
83 | 96 | |
84 | -# Asciidoc to HTML | |
85 | -gem "asciidoctor" | |
97 | +# Diffs | |
98 | +gem 'diffy', '~> 3.0.3' | |
86 | 99 | |
87 | 100 | # Application server |
88 | 101 | group :unicorn do |
... | ... | @@ -99,7 +112,7 @@ gem "acts-as-taggable-on" |
99 | 112 | # Background jobs |
100 | 113 | gem 'slim' |
101 | 114 | gem 'sinatra', require: nil |
102 | -gem 'sidekiq' | |
115 | +gem 'sidekiq', '2.17.0' | |
103 | 116 | |
104 | 117 | # HTTP requests |
105 | 118 | gem "httparty" |
... | ... | @@ -112,6 +125,7 @@ gem 'settingslogic' |
112 | 125 | |
113 | 126 | # Misc |
114 | 127 | gem "foreman" |
128 | +gem 'version_sorter' | |
115 | 129 | |
116 | 130 | # Cache |
117 | 131 | gem "redis-rails" |
... | ... | @@ -120,11 +134,17 @@ gem "redis-rails" |
120 | 134 | gem 'tinder', '~> 1.9.2' |
121 | 135 | |
122 | 136 | # HipChat integration |
123 | -gem "hipchat", "~> 0.9.0" | |
137 | +gem "hipchat", "~> 0.14.0" | |
124 | 138 | |
125 | 139 | # Flowdock integration |
126 | 140 | gem "gitlab-flowdock-git-hook", "~> 0.4.2" |
127 | 141 | |
142 | +# Gemnasium integration | |
143 | +gem "gemnasium-gitlab-service", "~> 0.2" | |
144 | + | |
145 | +# Slack integration | |
146 | +gem "slack-notifier", "~> 1.0.0" | |
147 | + | |
128 | 148 | # d3 |
129 | 149 | gem "d3_rails", "~> 3.1.4" |
130 | 150 | |
... | ... | @@ -132,35 +152,47 @@ gem "d3_rails", "~> 3.1.4" |
132 | 152 | gem "underscore-rails", "~> 1.4.4" |
133 | 153 | |
134 | 154 | # Sanitize user input |
135 | -gem "sanitize" | |
155 | +gem "sanitize", '~> 2.0' | |
136 | 156 | |
137 | 157 | # Protect against bruteforcing |
138 | 158 | gem "rack-attack" |
139 | 159 | |
140 | -gem "sass-rails" | |
160 | +# Ace editor | |
161 | +gem 'ace-rails-ap' | |
162 | + | |
163 | +# Keyboard shortcuts | |
164 | +gem 'mousetrap-rails' | |
165 | + | |
166 | +# Semantic UI Sass for Sidebar | |
167 | +gem 'semantic-ui-sass', '~> 0.16.1.0' | |
168 | + | |
169 | +gem "sass-rails", '~> 4.0.2' | |
141 | 170 | gem "coffee-rails" |
142 | 171 | gem "uglifier" |
143 | 172 | gem "therubyracer" |
144 | 173 | gem 'turbolinks' |
145 | 174 | gem 'jquery-turbolinks' |
146 | 175 | |
147 | -gem 'chosen-rails', "1.0.1" | |
148 | 176 | gem 'select2-rails' |
149 | 177 | gem 'jquery-atwho-rails', "~> 0.3.3" |
150 | -gem "jquery-rails", "2.1.3" | |
151 | -gem "jquery-ui-rails", "2.0.2" | |
152 | -gem "modernizr", "2.6.2" | |
178 | +gem "jquery-rails" | |
179 | +gem "jquery-ui-rails" | |
180 | +gem "jquery-scrollto-rails" | |
153 | 181 | gem "raphael-rails", "~> 2.1.2" |
154 | -gem 'bootstrap-sass', '~> 2.3' | |
155 | -gem "font-awesome-rails", '~> 3.2' | |
156 | -gem "gemoji", "~> 1.3.0" | |
157 | -gem "gon", "~> 5.0.0" | |
182 | +gem 'bootstrap-sass', '~> 3.0' | |
183 | +gem "font-awesome-rails", '~> 4.2' | |
184 | +gem "gitlab_emoji", "~> 0.0.1.1" | |
185 | +gem "gon", '~> 5.0.0' | |
186 | +gem 'nprogress-rails' | |
187 | +gem 'request_store' | |
188 | +gem "virtus" | |
189 | +gem 'addressable' | |
158 | 190 | |
159 | 191 | group :development do |
160 | 192 | gem "annotate", "~> 2.6.0.beta2" |
161 | 193 | gem "letter_opener" |
162 | 194 | gem 'quiet_assets', '~> 1.0.1' |
163 | - gem 'rack-mini-profiler' | |
195 | + gem 'rack-mini-profiler', require: false | |
164 | 196 | |
165 | 197 | # Better errors handler |
166 | 198 | gem 'better_errors' |
... | ... | @@ -180,7 +212,7 @@ group :development, :test do |
180 | 212 | # gem 'rails-dev-tweaks' |
181 | 213 | gem 'spinach-rails' |
182 | 214 | gem "rspec-rails" |
183 | - gem "capybara" | |
215 | + gem "capybara", '~> 2.2.1' | |
184 | 216 | gem "pry" |
185 | 217 | gem "awesome_print" |
186 | 218 | gem "database_cleaner" |
... | ... | @@ -188,7 +220,7 @@ group :development, :test do |
188 | 220 | gem 'factory_girl_rails' |
189 | 221 | |
190 | 222 | # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) |
191 | - gem 'minitest', '~> 4.7.0' | |
223 | + gem 'minitest', '~> 5.3.0' | |
192 | 224 | |
193 | 225 | # Generate Fake data |
194 | 226 | gem "ffaker" |
... | ... | @@ -203,10 +235,13 @@ group :development, :test do |
203 | 235 | gem 'rb-inotify', require: linux_only('rb-inotify') |
204 | 236 | |
205 | 237 | # PhantomJS driver for Capybara |
206 | - gem 'poltergeist', '~> 1.4.1' | |
238 | + gem 'poltergeist', '~> 1.5.1' | |
239 | + | |
240 | + gem 'jasmine', '2.0.2' | |
207 | 241 | |
208 | - gem 'spork', '~> 1.0rc' | |
209 | - gem 'jasmine', '2.0.0.rc5' | |
242 | + gem "spring", '1.1.3' | |
243 | + gem "spring-commands-rspec", '1.0.1' | |
244 | + gem "spring-commands-spinach", '1.0.0' | |
210 | 245 | end |
211 | 246 | |
212 | 247 | group :test do |
... | ... | @@ -218,5 +253,7 @@ group :test do |
218 | 253 | end |
219 | 254 | |
220 | 255 | group :production do |
221 | - gem "gitlab_meta", '6.0' | |
256 | + gem "gitlab_meta", '7.0' | |
222 | 257 | end |
258 | + | |
259 | +gem "newrelic_rpm" | ... | ... |
... | ... | @@ -0,0 +1,713 @@ |
1 | +GEM | |
2 | + remote: https://rubygems.org/ | |
3 | + specs: | |
4 | + RedCloth (4.2.9) | |
5 | + ace-rails-ap (2.0.1) | |
6 | + actionmailer (4.1.1) | |
7 | + actionpack (= 4.1.1) | |
8 | + actionview (= 4.1.1) | |
9 | + mail (~> 2.5.4) | |
10 | + actionpack (4.1.1) | |
11 | + actionview (= 4.1.1) | |
12 | + activesupport (= 4.1.1) | |
13 | + rack (~> 1.5.2) | |
14 | + rack-test (~> 0.6.2) | |
15 | + actionview (4.1.1) | |
16 | + activesupport (= 4.1.1) | |
17 | + builder (~> 3.1) | |
18 | + erubis (~> 2.7.0) | |
19 | + activemodel (4.1.1) | |
20 | + activesupport (= 4.1.1) | |
21 | + builder (~> 3.1) | |
22 | + activerecord (4.1.1) | |
23 | + activemodel (= 4.1.1) | |
24 | + activesupport (= 4.1.1) | |
25 | + arel (~> 5.0.0) | |
26 | + activesupport (4.1.1) | |
27 | + i18n (~> 0.6, >= 0.6.9) | |
28 | + json (~> 1.7, >= 1.7.7) | |
29 | + minitest (~> 5.1) | |
30 | + thread_safe (~> 0.1) | |
31 | + tzinfo (~> 1.1) | |
32 | + acts-as-taggable-on (2.4.1) | |
33 | + rails (>= 3, < 5) | |
34 | + addressable (2.3.5) | |
35 | + annotate (2.6.0) | |
36 | + activerecord (>= 2.3.0) | |
37 | + rake (>= 0.8.7) | |
38 | + arel (5.0.1.20140414130214) | |
39 | + asciidoctor (0.1.4) | |
40 | + awesome_print (1.2.0) | |
41 | + axiom-types (0.0.5) | |
42 | + descendants_tracker (~> 0.0.1) | |
43 | + ice_nine (~> 0.9) | |
44 | + bcrypt (3.1.7) | |
45 | + better_errors (1.0.1) | |
46 | + coderay (>= 1.0.0) | |
47 | + erubis (>= 2.6.6) | |
48 | + binding_of_caller (0.7.2) | |
49 | + debug_inspector (>= 0.0.1) | |
50 | + bootstrap-sass (3.0.3.0) | |
51 | + sass (~> 3.2) | |
52 | + builder (3.2.2) | |
53 | + capybara (2.2.1) | |
54 | + mime-types (>= 1.16) | |
55 | + nokogiri (>= 1.3.3) | |
56 | + rack (>= 1.0.0) | |
57 | + rack-test (>= 0.5.4) | |
58 | + xpath (~> 2.0) | |
59 | + carrierwave (0.9.0) | |
60 | + activemodel (>= 3.2.0) | |
61 | + activesupport (>= 3.2.0) | |
62 | + json (>= 1.7) | |
63 | + celluloid (0.15.2) | |
64 | + timers (~> 1.1.0) | |
65 | + charlock_holmes (0.6.9.4) | |
66 | + cliver (0.3.2) | |
67 | + code_analyzer (0.4.3) | |
68 | + sexp_processor | |
69 | + coderay (1.1.0) | |
70 | + coercible (1.0.0) | |
71 | + descendants_tracker (~> 0.0.1) | |
72 | + coffee-rails (4.0.1) | |
73 | + coffee-script (>= 2.2.0) | |
74 | + railties (>= 4.0.0, < 5.0) | |
75 | + coffee-script (2.2.0) | |
76 | + coffee-script-source | |
77 | + execjs | |
78 | + coffee-script-source (1.6.3) | |
79 | + colored (1.2) | |
80 | + colorize (0.5.8) | |
81 | + connection_pool (1.2.0) | |
82 | + coveralls (0.7.0) | |
83 | + multi_json (~> 1.3) | |
84 | + rest-client | |
85 | + simplecov (>= 0.7) | |
86 | + term-ansicolor | |
87 | + thor | |
88 | + crack (0.4.1) | |
89 | + safe_yaml (~> 0.9.0) | |
90 | + creole (0.3.8) | |
91 | + d3_rails (3.1.10) | |
92 | + railties (>= 3.1.0) | |
93 | + daemons (1.1.9) | |
94 | + database_cleaner (1.3.0) | |
95 | + debug_inspector (0.0.2) | |
96 | + default_value_for (3.0.0) | |
97 | + activerecord (>= 3.2.0, < 5.0) | |
98 | + descendants_tracker (0.0.3) | |
99 | + devise (3.2.4) | |
100 | + bcrypt (~> 3.0) | |
101 | + orm_adapter (~> 0.1) | |
102 | + railties (>= 3.2.6, < 5) | |
103 | + thread_safe (~> 0.1) | |
104 | + warden (~> 1.2.3) | |
105 | + devise-async (0.9.0) | |
106 | + devise (~> 3.2) | |
107 | + diff-lcs (1.2.5) | |
108 | + diffy (3.0.3) | |
109 | + docile (1.1.5) | |
110 | + dotenv (0.9.0) | |
111 | + dropzonejs-rails (0.4.14) | |
112 | + rails (> 3.1) | |
113 | + email_spec (1.5.0) | |
114 | + launchy (~> 2.1) | |
115 | + mail (~> 2.2) | |
116 | + emoji (1.0.1) | |
117 | + json | |
118 | + enumerize (0.7.0) | |
119 | + activesupport (>= 3.2) | |
120 | + equalizer (0.0.8) | |
121 | + erubis (2.7.0) | |
122 | + escape_utils (0.2.4) | |
123 | + eventmachine (1.0.3) | |
124 | + excon (0.32.1) | |
125 | + execjs (2.0.2) | |
126 | + expression_parser (0.9.0) | |
127 | + factory_girl (4.3.0) | |
128 | + activesupport (>= 3.0.0) | |
129 | + factory_girl_rails (4.3.0) | |
130 | + factory_girl (~> 4.3.0) | |
131 | + railties (>= 3.0.0) | |
132 | + faraday (0.8.9) | |
133 | + multipart-post (~> 1.2.0) | |
134 | + faraday_middleware (0.9.0) | |
135 | + faraday (>= 0.7.4, < 0.9) | |
136 | + ffaker (1.22.1) | |
137 | + ffi (1.9.3) | |
138 | + fog (1.21.0) | |
139 | + fog-brightbox | |
140 | + fog-core (~> 1.21, >= 1.21.1) | |
141 | + fog-json | |
142 | + nokogiri (~> 1.5, >= 1.5.11) | |
143 | + fog-brightbox (0.0.1) | |
144 | + fog-core | |
145 | + fog-json | |
146 | + fog-core (1.21.1) | |
147 | + builder | |
148 | + excon (~> 0.32) | |
149 | + formatador (~> 0.2.0) | |
150 | + mime-types | |
151 | + net-scp (~> 1.1) | |
152 | + net-ssh (>= 2.1.3) | |
153 | + fog-json (1.0.0) | |
154 | + multi_json (~> 1.0) | |
155 | + font-awesome-rails (4.2.0.0) | |
156 | + railties (>= 3.2, < 5.0) | |
157 | + foreman (0.63.0) | |
158 | + dotenv (>= 0.7) | |
159 | + thor (>= 0.13.6) | |
160 | + formatador (0.2.4) | |
161 | + gemnasium-gitlab-service (0.2.2) | |
162 | + rugged (~> 0.19) | |
163 | + gherkin-ruby (0.3.1) | |
164 | + racc | |
165 | + github-markup (1.1.0) | |
166 | + gitlab-flowdock-git-hook (0.4.2.2) | |
167 | + gitlab-grit (>= 2.4.1) | |
168 | + multi_json | |
169 | + gitlab-grack (2.0.0.pre) | |
170 | + rack (~> 1.5.1) | |
171 | + gitlab-grit (2.6.12) | |
172 | + charlock_holmes (~> 0.6) | |
173 | + diff-lcs (~> 1.1) | |
174 | + mime-types (~> 1.15) | |
175 | + posix-spawn (~> 0.3) | |
176 | + gitlab-linguist (3.0.0) | |
177 | + charlock_holmes (~> 0.6.6) | |
178 | + escape_utils (~> 0.2.4) | |
179 | + mime-types (~> 1.19) | |
180 | + gitlab_emoji (0.0.1.1) | |
181 | + emoji (~> 1.0.1) | |
182 | + gitlab_git (7.0.0.rc11) | |
183 | + activesupport (~> 4.0) | |
184 | + charlock_holmes (~> 0.6) | |
185 | + gitlab-linguist (~> 3.0) | |
186 | + rugged (~> 0.21.0) | |
187 | + gitlab_meta (7.0) | |
188 | + gitlab_omniauth-ldap (1.2.0) | |
189 | + net-ldap (~> 0.9) | |
190 | + omniauth (~> 1.0) | |
191 | + pyu-ruby-sasl (~> 0.0.3.1) | |
192 | + rubyntlm (~> 0.3) | |
193 | + gollum-lib (3.0.0) | |
194 | + github-markup (~> 1.1.0) | |
195 | + gitlab-grit (~> 2.6.5) | |
196 | + nokogiri (~> 1.6.1) | |
197 | + rouge (~> 1.3.3) | |
198 | + sanitize (~> 2.1.0) | |
199 | + stringex (~> 2.5.1) | |
200 | + gon (5.0.1) | |
201 | + actionpack (>= 2.3.0) | |
202 | + json | |
203 | + grape (0.6.1) | |
204 | + activesupport | |
205 | + builder | |
206 | + hashie (>= 1.2.0) | |
207 | + multi_json (>= 1.3.2) | |
208 | + multi_xml (>= 0.5.2) | |
209 | + rack (>= 1.3.0) | |
210 | + rack-accept | |
211 | + rack-mount | |
212 | + virtus (>= 1.0.0) | |
213 | + grape-entity (0.4.2) | |
214 | + activesupport | |
215 | + multi_json (>= 1.3.2) | |
216 | + growl (1.0.3) | |
217 | + guard (2.2.4) | |
218 | + formatador (>= 0.2.4) | |
219 | + listen (~> 2.1) | |
220 | + lumberjack (~> 1.0) | |
221 | + pry (>= 0.9.12) | |
222 | + thor (>= 0.18.1) | |
223 | + guard-rspec (4.2.0) | |
224 | + guard (>= 2.1.1) | |
225 | + rspec (>= 2.14, < 4.0) | |
226 | + guard-spinach (0.0.2) | |
227 | + guard (>= 1.1) | |
228 | + spinach | |
229 | + haml (4.0.5) | |
230 | + tilt | |
231 | + haml-rails (0.5.3) | |
232 | + actionpack (>= 4.0.1) | |
233 | + activesupport (>= 4.0.1) | |
234 | + haml (>= 3.1, < 5.0) | |
235 | + railties (>= 4.0.1) | |
236 | + hashie (2.1.2) | |
237 | + hike (1.2.3) | |
238 | + hipchat (0.14.0) | |
239 | + httparty | |
240 | + httparty | |
241 | + html-pipeline (1.11.0) | |
242 | + activesupport (>= 2) | |
243 | + nokogiri (~> 1.4) | |
244 | + html-pipeline-gitlab (0.1.5) | |
245 | + actionpack (~> 4) | |
246 | + gitlab_emoji (~> 0.0.1) | |
247 | + html-pipeline (~> 1.11.0) | |
248 | + sanitize (~> 2.1) | |
249 | + http_parser.rb (0.5.3) | |
250 | + httparty (0.13.0) | |
251 | + json (~> 1.8) | |
252 | + multi_xml (>= 0.5.2) | |
253 | + httpauth (0.2.1) | |
254 | + i18n (0.6.11) | |
255 | + ice_nine (0.10.0) | |
256 | + jasmine (2.0.2) | |
257 | + jasmine-core (~> 2.0.0) | |
258 | + phantomjs | |
259 | + rack (>= 1.2.1) | |
260 | + rake | |
261 | + jasmine-core (2.0.0) | |
262 | + jquery-atwho-rails (0.3.3) | |
263 | + jquery-rails (3.1.0) | |
264 | + railties (>= 3.0, < 5.0) | |
265 | + thor (>= 0.14, < 2.0) | |
266 | + jquery-scrollto-rails (1.4.3) | |
267 | + railties (> 3.1, < 5.0) | |
268 | + jquery-turbolinks (2.0.1) | |
269 | + railties (>= 3.1.0) | |
270 | + turbolinks | |
271 | + jquery-ui-rails (4.2.1) | |
272 | + railties (>= 3.2.16) | |
273 | + json (1.8.1) | |
274 | + jwt (0.1.13) | |
275 | + multi_json (>= 1.5) | |
276 | + kaminari (0.15.1) | |
277 | + actionpack (>= 3.0.0) | |
278 | + activesupport (>= 3.0.0) | |
279 | + kgio (2.8.1) | |
280 | + launchy (2.4.2) | |
281 | + addressable (~> 2.3) | |
282 | + letter_opener (1.1.2) | |
283 | + launchy (~> 2.2) | |
284 | + libv8 (3.16.14.3) | |
285 | + listen (2.3.1) | |
286 | + celluloid (>= 0.15.2) | |
287 | + rb-fsevent (>= 0.9.3) | |
288 | + rb-inotify (>= 0.9) | |
289 | + lumberjack (1.0.4) | |
290 | + mail (2.5.4) | |
291 | + mime-types (~> 1.16) | |
292 | + treetop (~> 1.4.8) | |
293 | + method_source (0.8.2) | |
294 | + mime-types (1.25.1) | |
295 | + mini_portile (0.6.0) | |
296 | + minitest (5.3.5) | |
297 | + mousetrap-rails (1.4.6) | |
298 | + multi_json (1.10.1) | |
299 | + multi_xml (0.5.5) | |
300 | + multipart-post (1.2.0) | |
301 | + mysql2 (0.3.16) | |
302 | + net-ldap (0.9.0) | |
303 | + net-scp (1.1.2) | |
304 | + net-ssh (>= 2.6.5) | |
305 | + net-ssh (2.8.0) | |
306 | + newrelic_rpm (3.9.4.245) | |
307 | + nokogiri (1.6.2.1) | |
308 | + mini_portile (= 0.6.0) | |
309 | + nprogress-rails (0.1.2.3) | |
310 | + oauth (0.4.7) | |
311 | + oauth2 (0.8.1) | |
312 | + faraday (~> 0.8) | |
313 | + httpauth (~> 0.1) | |
314 | + jwt (~> 0.1.4) | |
315 | + multi_json (~> 1.0) | |
316 | + rack (~> 1.2) | |
317 | + omniauth (1.1.4) | |
318 | + hashie (>= 1.2, < 3) | |
319 | + rack | |
320 | + omniauth-github (1.1.1) | |
321 | + omniauth (~> 1.0) | |
322 | + omniauth-oauth2 (~> 1.1) | |
323 | + omniauth-google-oauth2 (0.2.5) | |
324 | + omniauth (> 1.0) | |
325 | + omniauth-oauth2 (~> 1.1) | |
326 | + omniauth-oauth (1.0.1) | |
327 | + oauth | |
328 | + omniauth (~> 1.0) | |
329 | + omniauth-oauth2 (1.1.1) | |
330 | + oauth2 (~> 0.8.0) | |
331 | + omniauth (~> 1.0) | |
332 | + omniauth-shibboleth (1.1.1) | |
333 | + omniauth (>= 1.0.0) | |
334 | + omniauth-twitter (1.0.1) | |
335 | + multi_json (~> 1.3) | |
336 | + omniauth-oauth (~> 1.0) | |
337 | + org-ruby (0.9.9) | |
338 | + rubypants (~> 0.2) | |
339 | + orm_adapter (0.5.0) | |
340 | + pg (0.15.1) | |
341 | + phantomjs (1.9.2.0) | |
342 | + poltergeist (1.5.1) | |
343 | + capybara (~> 2.1) | |
344 | + cliver (~> 0.3.1) | |
345 | + multi_json (~> 1.0) | |
346 | + websocket-driver (>= 0.2.0) | |
347 | + polyglot (0.3.4) | |
348 | + posix-spawn (0.3.9) | |
349 | + pry (0.9.12.4) | |
350 | + coderay (~> 1.0) | |
351 | + method_source (~> 0.8) | |
352 | + slop (~> 3.4) | |
353 | + pyu-ruby-sasl (0.0.3.3) | |
354 | + quiet_assets (1.0.2) | |
355 | + railties (>= 3.1, < 5.0) | |
356 | + racc (1.4.10) | |
357 | + rack (1.5.2) | |
358 | + rack-accept (0.4.5) | |
359 | + rack (>= 0.4) | |
360 | + rack-attack (2.3.0) | |
361 | + rack | |
362 | + rack-cors (0.2.9) | |
363 | + rack-mini-profiler (0.9.0) | |
364 | + rack (>= 1.1.3) | |
365 | + rack-mount (0.8.3) | |
366 | + rack (>= 1.0.0) | |
367 | + rack-protection (1.5.1) | |
368 | + rack | |
369 | + rack-test (0.6.2) | |
370 | + rack (>= 1.0) | |
371 | + rails (4.1.1) | |
372 | + actionmailer (= 4.1.1) | |
373 | + actionpack (= 4.1.1) | |
374 | + actionview (= 4.1.1) | |
375 | + activemodel (= 4.1.1) | |
376 | + activerecord (= 4.1.1) | |
377 | + activesupport (= 4.1.1) | |
378 | + bundler (>= 1.3.0, < 2.0) | |
379 | + railties (= 4.1.1) | |
380 | + sprockets-rails (~> 2.0) | |
381 | + rails_autolink (1.1.6) | |
382 | + rails (> 3.1) | |
383 | + rails_best_practices (1.14.4) | |
384 | + activesupport | |
385 | + awesome_print | |
386 | + code_analyzer (>= 0.4.3) | |
387 | + colored | |
388 | + erubis | |
389 | + i18n | |
390 | + require_all | |
391 | + ruby-progressbar | |
392 | + railties (4.1.1) | |
393 | + actionpack (= 4.1.1) | |
394 | + activesupport (= 4.1.1) | |
395 | + rake (>= 0.8.7) | |
396 | + thor (>= 0.18.1, < 2.0) | |
397 | + raindrops (0.12.0) | |
398 | + rake (10.3.2) | |
399 | + raphael-rails (2.1.2) | |
400 | + rb-fsevent (0.9.3) | |
401 | + rb-inotify (0.9.2) | |
402 | + ffi (>= 0.5.0) | |
403 | + rdoc (3.12.2) | |
404 | + json (~> 1.4) | |
405 | + redcarpet (3.1.2) | |
406 | + redis (3.0.6) | |
407 | + redis-actionpack (4.0.0) | |
408 | + actionpack (~> 4) | |
409 | + redis-rack (~> 1.5.0) | |
410 | + redis-store (~> 1.1.0) | |
411 | + redis-activesupport (4.0.0) | |
412 | + activesupport (~> 4) | |
413 | + redis-store (~> 1.1.0) | |
414 | + redis-namespace (1.4.1) | |
415 | + redis (~> 3.0.4) | |
416 | + redis-rack (1.5.0) | |
417 | + rack (~> 1.5) | |
418 | + redis-store (~> 1.1.0) | |
419 | + redis-rails (4.0.0) | |
420 | + redis-actionpack (~> 4) | |
421 | + redis-activesupport (~> 4) | |
422 | + redis-store (~> 1.1.0) | |
423 | + redis-store (1.1.4) | |
424 | + redis (>= 2.2) | |
425 | + ref (1.0.5) | |
426 | + request_store (1.0.5) | |
427 | + require_all (1.3.2) | |
428 | + rest-client (1.6.7) | |
429 | + mime-types (>= 1.16) | |
430 | + rinku (1.7.3) | |
431 | + rouge (1.3.3) | |
432 | + rspec (2.14.1) | |
433 | + rspec-core (~> 2.14.0) | |
434 | + rspec-expectations (~> 2.14.0) | |
435 | + rspec-mocks (~> 2.14.0) | |
436 | + rspec-core (2.14.7) | |
437 | + rspec-expectations (2.14.4) | |
438 | + diff-lcs (>= 1.1.3, < 2.0) | |
439 | + rspec-mocks (2.14.4) | |
440 | + rspec-rails (2.14.0) | |
441 | + actionpack (>= 3.0) | |
442 | + activesupport (>= 3.0) | |
443 | + railties (>= 3.0) | |
444 | + rspec-core (~> 2.14.0) | |
445 | + rspec-expectations (~> 2.14.0) | |
446 | + rspec-mocks (~> 2.14.0) | |
447 | + ruby-progressbar (1.2.0) | |
448 | + rubyntlm (0.4.0) | |
449 | + rubypants (0.2.0) | |
450 | + rugged (0.21.0) | |
451 | + safe_yaml (0.9.7) | |
452 | + sanitize (2.1.0) | |
453 | + nokogiri (>= 1.4.4) | |
454 | + sass (3.2.19) | |
455 | + sass-rails (4.0.3) | |
456 | + railties (>= 4.0.0, < 5.0) | |
457 | + sass (~> 3.2.0) | |
458 | + sprockets (~> 2.8, <= 2.11.0) | |
459 | + sprockets-rails (~> 2.0) | |
460 | + sdoc (0.3.20) | |
461 | + json (>= 1.1.3) | |
462 | + rdoc (~> 3.10) | |
463 | + seed-fu (2.3.1) | |
464 | + activerecord (>= 3.1, < 4.2) | |
465 | + activesupport (>= 3.1, < 4.2) | |
466 | + select2-rails (3.5.2) | |
467 | + thor (~> 0.14) | |
468 | + semantic-ui-sass (0.16.1.0) | |
469 | + sass (~> 3.2) | |
470 | + settingslogic (2.0.9) | |
471 | + sexp_processor (4.4.0) | |
472 | + shoulda-matchers (2.1.0) | |
473 | + activesupport (>= 3.0.0) | |
474 | + sidekiq (2.17.0) | |
475 | + celluloid (>= 0.15.2) | |
476 | + connection_pool (>= 1.0.0) | |
477 | + json | |
478 | + redis (>= 3.0.4) | |
479 | + redis-namespace (>= 1.3.1) | |
480 | + simple_oauth (0.1.9) | |
481 | + simplecov (0.9.0) | |
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 | + slack-notifier (1.0.0) | |
492 | + slim (2.0.2) | |
493 | + temple (~> 0.6.6) | |
494 | + tilt (>= 1.3.3, < 2.1) | |
495 | + slop (3.4.7) | |
496 | + spinach (0.8.7) | |
497 | + colorize (= 0.5.8) | |
498 | + gherkin-ruby (>= 0.3.1) | |
499 | + spinach-rails (0.2.1) | |
500 | + capybara (>= 2.0.0) | |
501 | + railties (>= 3) | |
502 | + spinach (>= 0.4) | |
503 | + spring (1.1.3) | |
504 | + spring-commands-rspec (1.0.1) | |
505 | + spring (>= 0.9.1) | |
506 | + spring-commands-spinach (1.0.0) | |
507 | + spring (>= 0.9.1) | |
508 | + sprockets (2.11.0) | |
509 | + hike (~> 1.2) | |
510 | + multi_json (~> 1.0) | |
511 | + rack (~> 1.0) | |
512 | + tilt (~> 1.1, != 1.3.0) | |
513 | + sprockets-rails (2.1.3) | |
514 | + actionpack (>= 3.0) | |
515 | + activesupport (>= 3.0) | |
516 | + sprockets (~> 2.8) | |
517 | + stamp (0.5.0) | |
518 | + state_machine (1.2.0) | |
519 | + stringex (2.5.1) | |
520 | + temple (0.6.7) | |
521 | + term-ansicolor (1.2.2) | |
522 | + tins (~> 0.8) | |
523 | + test_after_commit (0.2.2) | |
524 | + therubyracer (0.12.0) | |
525 | + libv8 (~> 3.16.14.0) | |
526 | + ref | |
527 | + thin (1.6.1) | |
528 | + daemons (>= 1.0.9) | |
529 | + eventmachine (>= 1.0.0) | |
530 | + rack (>= 1.0.0) | |
531 | + thor (0.19.1) | |
532 | + thread_safe (0.3.4) | |
533 | + tilt (1.4.1) | |
534 | + timers (1.1.0) | |
535 | + tinder (1.9.3) | |
536 | + eventmachine (~> 1.0) | |
537 | + faraday (~> 0.8) | |
538 | + faraday_middleware (~> 0.9) | |
539 | + hashie (>= 1.0, < 3) | |
540 | + json (~> 1.8.0) | |
541 | + mime-types (~> 1.19) | |
542 | + multi_json (~> 1.7) | |
543 | + twitter-stream (~> 0.1) | |
544 | + tins (0.13.1) | |
545 | + treetop (1.4.15) | |
546 | + polyglot | |
547 | + polyglot (>= 0.3.1) | |
548 | + turbolinks (2.0.0) | |
549 | + coffee-rails | |
550 | + twitter-stream (0.1.16) | |
551 | + eventmachine (>= 0.12.8) | |
552 | + http_parser.rb (~> 0.5.1) | |
553 | + simple_oauth (~> 0.1.4) | |
554 | + tzinfo (1.2.2) | |
555 | + thread_safe (~> 0.1) | |
556 | + uglifier (2.3.2) | |
557 | + execjs (>= 0.3.0) | |
558 | + json (>= 1.8.0) | |
559 | + underscore-rails (1.4.4) | |
560 | + unf (0.1.4) | |
561 | + unf_ext | |
562 | + unf_ext (0.0.6) | |
563 | + unicorn (4.6.3) | |
564 | + kgio (~> 2.6) | |
565 | + rack | |
566 | + raindrops (~> 0.7) | |
567 | + unicorn-worker-killer (0.4.2) | |
568 | + unicorn (~> 4) | |
569 | + version_sorter (1.1.0) | |
570 | + virtus (1.0.1) | |
571 | + axiom-types (~> 0.0.5) | |
572 | + coercible (~> 1.0) | |
573 | + descendants_tracker (~> 0.0.1) | |
574 | + equalizer (~> 0.0.7) | |
575 | + warden (1.2.3) | |
576 | + rack (>= 1.0) | |
577 | + webmock (1.16.0) | |
578 | + addressable (>= 2.2.7) | |
579 | + crack (>= 0.3.2) | |
580 | + websocket-driver (0.3.3) | |
581 | + wikicloth (0.8.1) | |
582 | + builder | |
583 | + expression_parser | |
584 | + rinku | |
585 | + xpath (2.0.0) | |
586 | + nokogiri (~> 1.3) | |
587 | + | |
588 | +PLATFORMS | |
589 | + ruby | |
590 | + | |
591 | +DEPENDENCIES | |
592 | + RedCloth | |
593 | + ace-rails-ap | |
594 | + acts-as-taggable-on | |
595 | + addressable | |
596 | + annotate (~> 2.6.0.beta2) | |
597 | + asciidoctor (= 0.1.4) | |
598 | + awesome_print | |
599 | + better_errors | |
600 | + binding_of_caller | |
601 | + bootstrap-sass (~> 3.0) | |
602 | + capybara (~> 2.2.1) | |
603 | + carrierwave | |
604 | + coffee-rails | |
605 | + colored | |
606 | + coveralls | |
607 | + creole (~> 0.3.6) | |
608 | + d3_rails (~> 3.1.4) | |
609 | + database_cleaner | |
610 | + default_value_for (~> 3.0.0) | |
611 | + devise (= 3.2.4) | |
612 | + devise-async (= 0.9.0) | |
613 | + diffy (~> 3.0.3) | |
614 | + dropzonejs-rails | |
615 | + email_spec | |
616 | + enumerize | |
617 | + factory_girl_rails | |
618 | + ffaker | |
619 | + fog (~> 1.14) | |
620 | + font-awesome-rails (~> 4.2) | |
621 | + foreman | |
622 | + gemnasium-gitlab-service (~> 0.2) | |
623 | + github-markup | |
624 | + gitlab-flowdock-git-hook (~> 0.4.2) | |
625 | + gitlab-grack (~> 2.0.0.pre) | |
626 | + gitlab-linguist (~> 3.0.0) | |
627 | + gitlab_emoji (~> 0.0.1.1) | |
628 | + gitlab_git (= 7.0.0.rc11) | |
629 | + gitlab_meta (= 7.0) | |
630 | + gitlab_omniauth-ldap (= 1.2.0) | |
631 | + gollum-lib (~> 3.0.0) | |
632 | + gon (~> 5.0.0) | |
633 | + grape (~> 0.6.1) | |
634 | + grape-entity (~> 0.4.2) | |
635 | + growl | |
636 | + guard-rspec | |
637 | + guard-spinach | |
638 | + haml-rails | |
639 | + hipchat (~> 0.14.0) | |
640 | + html-pipeline-gitlab (~> 0.1.0) | |
641 | + httparty | |
642 | + jasmine (= 2.0.2) | |
643 | + jquery-atwho-rails (~> 0.3.3) | |
644 | + jquery-rails | |
645 | + jquery-scrollto-rails | |
646 | + jquery-turbolinks | |
647 | + jquery-ui-rails | |
648 | + kaminari (~> 0.15.1) | |
649 | + launchy | |
650 | + letter_opener | |
651 | + minitest (~> 5.3.0) | |
652 | + mousetrap-rails | |
653 | + mysql2 | |
654 | + newrelic_rpm | |
655 | + nprogress-rails | |
656 | + omniauth (~> 1.1.3) | |
657 | + omniauth-github | |
658 | + omniauth-google-oauth2 | |
659 | + omniauth-shibboleth | |
660 | + omniauth-twitter | |
661 | + org-ruby (= 0.9.9) | |
662 | + pg | |
663 | + poltergeist (~> 1.5.1) | |
664 | + pry | |
665 | + quiet_assets (~> 1.0.1) | |
666 | + rack-attack | |
667 | + rack-cors | |
668 | + rack-mini-profiler | |
669 | + rails (~> 4.1.0) | |
670 | + rails_autolink (~> 1.1) | |
671 | + rails_best_practices | |
672 | + raphael-rails (~> 2.1.2) | |
673 | + rb-fsevent | |
674 | + rb-inotify | |
675 | + rdoc (~> 3.6) | |
676 | + redcarpet (~> 3.1.2) | |
677 | + redis-rails | |
678 | + request_store | |
679 | + rspec-rails | |
680 | + sanitize (~> 2.0) | |
681 | + sass-rails (~> 4.0.2) | |
682 | + sdoc | |
683 | + seed-fu | |
684 | + select2-rails | |
685 | + semantic-ui-sass (~> 0.16.1.0) | |
686 | + settingslogic | |
687 | + shoulda-matchers (~> 2.1.0) | |
688 | + sidekiq (= 2.17.0) | |
689 | + simplecov | |
690 | + sinatra | |
691 | + six | |
692 | + slack-notifier (~> 1.0.0) | |
693 | + slim | |
694 | + spinach-rails | |
695 | + spring (= 1.1.3) | |
696 | + spring-commands-rspec (= 1.0.1) | |
697 | + spring-commands-spinach (= 1.0.0) | |
698 | + stamp | |
699 | + state_machine | |
700 | + test_after_commit | |
701 | + therubyracer | |
702 | + thin | |
703 | + tinder (~> 1.9.2) | |
704 | + turbolinks | |
705 | + uglifier | |
706 | + underscore-rails (~> 1.4.4) | |
707 | + unf | |
708 | + unicorn (~> 4.6.3) | |
709 | + unicorn-worker-killer | |
710 | + version_sorter | |
711 | + virtus | |
712 | + webmock | |
713 | + wikicloth (= 0.8.1) | ... | ... |