Commit 0c59c7184728ea8f47c10d3994cd5a3c68019c07
1 parent
5639825e
Exists in
master
and in
1 other branch
Add gem rubocop for development and test
Showing
2 changed files
with
19 additions
and
0 deletions
Show diff stats
Gemfile
| @@ -60,6 +60,7 @@ group :development, :test do | @@ -60,6 +60,7 @@ group :development, :test do | ||
| 60 | gem 'pry-rails' | 60 | gem 'pry-rails' |
| 61 | gem 'pry-byebug', platforms: [:mri] | 61 | gem 'pry-byebug', platforms: [:mri] |
| 62 | gem 'quiet_assets' | 62 | gem 'quiet_assets' |
| 63 | + gem 'rubocop', require: false | ||
| 63 | end | 64 | end |
| 64 | 65 | ||
| 65 | group :development do | 66 | group :development do |
Gemfile.lock
| @@ -45,6 +45,9 @@ GEM | @@ -45,6 +45,9 @@ GEM | ||
| 45 | builder | 45 | builder |
| 46 | multi_json | 46 | multi_json |
| 47 | arel (6.0.3) | 47 | arel (6.0.3) |
| 48 | + ast (2.1.0) | ||
| 49 | + astrolabe (1.3.1) | ||
| 50 | + parser (~> 2.2) | ||
| 48 | bcrypt (3.1.10) | 51 | bcrypt (3.1.10) |
| 49 | bcrypt (3.1.10-java) | 52 | bcrypt (3.1.10-java) |
| 50 | better_errors (2.1.1) | 53 | better_errors (2.1.1) |
| @@ -226,6 +229,8 @@ GEM | @@ -226,6 +229,8 @@ GEM | ||
| 226 | omniauth (~> 1.2) | 229 | omniauth (~> 1.2) |
| 227 | origin (2.1.1) | 230 | origin (2.1.1) |
| 228 | orm_adapter (0.5.0) | 231 | orm_adapter (0.5.0) |
| 232 | + parser (2.2.3.0) | ||
| 233 | + ast (>= 1.1, < 3.0) | ||
| 229 | pjax_rails (0.4.0) | 234 | pjax_rails (0.4.0) |
| 230 | jquery-rails | 235 | jquery-rails |
| 231 | railties (>= 3.2, < 5.0) | 236 | railties (>= 3.2, < 5.0) |
| @@ -235,6 +240,7 @@ GEM | @@ -235,6 +240,7 @@ GEM | ||
| 235 | multi_json (~> 1.0) | 240 | multi_json (~> 1.0) |
| 236 | websocket-driver (>= 0.2.0) | 241 | websocket-driver (>= 0.2.0) |
| 237 | power_assert (0.2.3) | 242 | power_assert (0.2.3) |
| 243 | + powerpack (0.1.1) | ||
| 238 | premailer (1.8.4) | 244 | premailer (1.8.4) |
| 239 | css_parser (>= 1.3.6) | 245 | css_parser (>= 1.3.6) |
| 240 | htmlentities (>= 4.0.0) | 246 | htmlentities (>= 4.0.0) |
| @@ -293,6 +299,7 @@ GEM | @@ -293,6 +299,7 @@ GEM | ||
| 293 | activesupport (= 4.2.3) | 299 | activesupport (= 4.2.3) |
| 294 | rake (>= 0.8.7) | 300 | rake (>= 0.8.7) |
| 295 | thor (>= 0.18.1, < 2.0) | 301 | thor (>= 0.18.1, < 2.0) |
| 302 | + rainbow (2.0.0) | ||
| 296 | raindrops (0.13.0) | 303 | raindrops (0.13.0) |
| 297 | rake (10.4.2) | 304 | rake (10.4.2) |
| 298 | ref (1.0.5) | 305 | ref (1.0.5) |
| @@ -332,6 +339,13 @@ GEM | @@ -332,6 +339,13 @@ GEM | ||
| 332 | rspec-mocks (~> 3.3.0) | 339 | rspec-mocks (~> 3.3.0) |
| 333 | rspec-support (~> 3.3.0) | 340 | rspec-support (~> 3.3.0) |
| 334 | rspec-support (3.3.0) | 341 | rspec-support (3.3.0) |
| 342 | + rubocop (0.34.2) | ||
| 343 | + astrolabe (~> 1.3) | ||
| 344 | + parser (>= 2.2.2.5, < 3.0) | ||
| 345 | + powerpack (~> 0.1) | ||
| 346 | + rainbow (>= 1.99.1, < 3.0) | ||
| 347 | + ruby-progressbar (~> 1.4) | ||
| 348 | + ruby-progressbar (1.7.5) | ||
| 335 | rushover (0.3.0) | 349 | rushover (0.3.0) |
| 336 | json | 350 | json |
| 337 | rest-client | 351 | rest-client |
| @@ -461,6 +475,7 @@ DEPENDENCIES | @@ -461,6 +475,7 @@ DEPENDENCIES | ||
| 461 | rspec-activemodel-mocks | 475 | rspec-activemodel-mocks |
| 462 | rspec-its | 476 | rspec-its |
| 463 | rspec-rails (~> 3.0) | 477 | rspec-rails (~> 3.0) |
| 478 | + rubocop | ||
| 464 | rushover | 479 | rushover |
| 465 | sass-rails | 480 | sass-rails |
| 466 | test-unit | 481 | test-unit |
| @@ -472,3 +487,6 @@ DEPENDENCIES | @@ -472,3 +487,6 @@ DEPENDENCIES | ||
| 472 | useragent | 487 | useragent |
| 473 | xmpp4r | 488 | xmpp4r |
| 474 | yajl-ruby | 489 | yajl-ruby |
| 490 | + | ||
| 491 | +BUNDLED WITH | ||
| 492 | + 1.10.6 |