marty 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f72e47b8af214afae1185098fad62b86cb4c740c
4
- data.tar.gz: f23fdf9fb57e514b3d67340abd050b59b7c1b8ec
3
+ metadata.gz: 6ce8e00805092bcb838e01a7f27fb452f9c4302c
4
+ data.tar.gz: '08ba3a7fae36b08f7503b3da6f9ee298161c146b'
5
5
  SHA512:
6
- metadata.gz: 35b2e57e4e67136307490955a47ecdd8ad4a8b45c0d4752492a4b144a9a3764a51c7f7f48fbf844e9ddeb7b92364b3d38d86c30fe3990e60fc27627556ca1612
7
- data.tar.gz: bd9300147c167ac3e3934666c8249cf80f2c35e20ec67723d0a70311c6e1cc64e2f20a5bb5ad5931b4ee43876e8cad9d8dcde4f8c1bfbaf7ddc80884c96ec85e
6
+ metadata.gz: 263d011eb1c69a38e68449ad6b2031f8f529bc3c89b166ba033d3cd4243b111357601142f8d362a5eb4aa4d72c065cb9531920e4564fbd4217a5c287bce25bd7
7
+ data.tar.gz: 994794315f3c2e50222bc70c354e4feb1f9fbac4a7af4a476e2aeef99ab1a001bbbe289db72277b8d870c83bf68a934829d938d0eed187cc341334bde5f71737
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- marty (1.2.1)
4
+ marty (1.2.2)
5
5
  axlsx (= 2.1.0pre)
6
6
  coderay
7
7
  delorean_lang (~> 0.3.33)
@@ -83,7 +83,7 @@ GEM
83
83
  delayed_job_active_record (4.1.2)
84
84
  activerecord (>= 3.0, < 5.2)
85
85
  delayed_job (>= 3.0, < 5)
86
- delorean_lang (0.3.33)
86
+ delorean_lang (0.3.34)
87
87
  activerecord (>= 3.2)
88
88
  treetop (~> 1.5)
89
89
  diff-lcs (1.3)
@@ -4,6 +4,7 @@ module Marty
4
4
 
5
5
  config.autoload_paths << File.expand_path("../../../lib", __FILE__)
6
6
  config.autoload_paths << File.expand_path("../../../components", __FILE__)
7
+ config.autoload_paths << File.expand_path("../../../other", __FILE__)
7
8
 
8
9
  # generators add rspec tests
9
10
  config.generators do |g|
@@ -1,3 +1,3 @@
1
1
  module Marty
2
- VERSION = "1.2.1"
2
+ VERSION = "1.2.2"
3
3
  end
@@ -10,7 +10,7 @@ module Marty::Diagnostic; class Base < Request
10
10
  self.aggregatable = true
11
11
  self.status_only = false
12
12
 
13
- @@read_only = Util.db_in_recovery?
13
+ @@read_only = Marty::Util.db_in_recovery?
14
14
  @@template = ActionController::Base.new.lookup_context.
15
15
  find_template("marty/diagnostic/diag").identifier
16
16
 
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: marty
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arman Bostani
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2018-01-30 00:00:00.000000000 Z
17
+ date: 2018-02-01 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: pg
@@ -420,16 +420,6 @@ files:
420
420
  - app/models/marty/config.rb
421
421
  - app/models/marty/data_grid.rb
422
422
  - app/models/marty/delorean_rule.rb
423
- - app/models/marty/diagnostic/aws/ec2_instance.rb
424
- - app/models/marty/diagnostic/base.rb
425
- - app/models/marty/diagnostic/collection.rb
426
- - app/models/marty/diagnostic/delayed_job.rb
427
- - app/models/marty/diagnostic/environment_variables.rb
428
- - app/models/marty/diagnostic/fatal.rb
429
- - app/models/marty/diagnostic/nodes.rb
430
- - app/models/marty/diagnostic/reporter.rb
431
- - app/models/marty/diagnostic/request.rb
432
- - app/models/marty/diagnostic/version.rb
433
423
  - app/models/marty/enum.rb
434
424
  - app/models/marty/enum_event_operation.rb
435
425
  - app/models/marty/event.rb
@@ -507,9 +497,6 @@ files:
507
497
  - lib/marty/data_conversion.rb
508
498
  - lib/marty/data_exporter.rb
509
499
  - lib/marty/data_importer.rb
510
- - lib/marty/diagnostic/database.rb
511
- - lib/marty/diagnostic/node.rb
512
- - lib/marty/diagnostic/packer.rb
513
500
  - lib/marty/engine.rb
514
501
  - lib/marty/json_schema.rb
515
502
  - lib/marty/lazy_column_loader.rb
@@ -534,6 +521,19 @@ files:
534
521
  - lib/pyxll/sample.xlsx
535
522
  - lib/tasks/marty_tasks.rake
536
523
  - marty.gemspec
524
+ - other/marty/diagnostic/aws/ec2_instance.rb
525
+ - other/marty/diagnostic/base.rb
526
+ - other/marty/diagnostic/collection.rb
527
+ - other/marty/diagnostic/database.rb
528
+ - other/marty/diagnostic/delayed_job.rb
529
+ - other/marty/diagnostic/environment_variables.rb
530
+ - other/marty/diagnostic/fatal.rb
531
+ - other/marty/diagnostic/node.rb
532
+ - other/marty/diagnostic/nodes.rb
533
+ - other/marty/diagnostic/packer.rb
534
+ - other/marty/diagnostic/reporter.rb
535
+ - other/marty/diagnostic/request.rb
536
+ - other/marty/diagnostic/version.rb
537
537
  - script/rails
538
538
  - spec/controllers/application_controller_spec.rb
539
539
  - spec/controllers/diagnostic/controller_spec.rb
@@ -1665,10 +1665,6 @@ files:
1665
1665
  - spec/models/api_auth_spec.rb
1666
1666
  - spec/models/config_spec.rb
1667
1667
  - spec/models/data_grid_spec.rb
1668
- - spec/models/diagnostic/base_spec.rb
1669
- - spec/models/diagnostic/collection_spec.rb
1670
- - spec/models/diagnostic/delayed_job_spec.rb
1671
- - spec/models/diagnostic/reporter_spec.rb
1672
1668
  - spec/models/event_spec.rb
1673
1669
  - spec/models/import_type_spec.rb
1674
1670
  - spec/models/posting_spec.rb
@@ -1677,6 +1673,10 @@ files:
1677
1673
  - spec/models/script_spec.rb
1678
1674
  - spec/models/srp_data.csv
1679
1675
  - spec/models/user_spec.rb
1676
+ - spec/other/diagnostic/base_spec.rb
1677
+ - spec/other/diagnostic/collection_spec.rb
1678
+ - spec/other/diagnostic/delayed_job_spec.rb
1679
+ - spec/other/diagnostic/reporter_spec.rb
1680
1680
  - spec/requests/routes_spec.rb
1681
1681
  - spec/spec_helper.rb
1682
1682
  - spec/support/clean_db_helpers.rb