iron_warbler 2.0.7.1 → 2.0.7.3

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
  SHA256:
3
- metadata.gz: 7a3c39d05124202b8212bd8b129cf65483161d76334c8b8de15e30f05ee1ef98
4
- data.tar.gz: 04cce165138869b51ef7904bcac83d71dc2c077453a64263222e25ae5f0a1cef
3
+ metadata.gz: 7749289ed7e8a7219b042aad08c08fb7010e5c395dbe0865bb07dc8c78fa45f7
4
+ data.tar.gz: 875a7cdc16b68fb4c70aaaf9db0a93eb0ba1bf7995420b4a3cea478c7b91b0bf
5
5
  SHA512:
6
- metadata.gz: 0777bc585ac9207a66c7907deefd1eafc99295dc18c6728ff5db5f2946857704a6c1a417cb5ad7b537f0250915a4e7df9e8417a2fa83ff63ea8cff01e2dbe917
7
- data.tar.gz: d5d41410917bc4521c6aedf5c89d83cf50a6a32afb5516629eef237a2ad36b22ccdefb188e67c8659679155bc1b9bcd098722a6ae1a68442a2b1b75816e5e2e0
6
+ metadata.gz: f5d94b1bb120aa7ae0573ed95b014b2656bdb3579fae55b014701cdc1d6c366efdf6d21dc1e656696dbfdbaebee451dc7e552975bf8e2c3827c69b7593977558
7
+ data.tar.gz: 48b8de44fb84f21357f6d9e73051e00b5c3476514ddccfa5f8b6b1d3912bcba4bc0cc09d99e950b667b936c45395e3bda2742484ea72a399a66cc5f4ae499f5b
@@ -1,5 +1,5 @@
1
1
 
2
- class Iro::Alert < ApplicationRecord
2
+ class Iro::Alert < Iro::ApplicationRecord
3
3
  self.table_name = 'iro_alerts'
4
4
 
5
5
  DIRECTION_ABOVE = 'ABOVE'
@@ -1,5 +1,5 @@
1
1
 
2
- class Iro::Datapoint < ApplicationRecord
2
+ class Iro::Datapoint < Iro::ApplicationRecord
3
3
  self.table_name = "iro_datapoints"
4
4
 
5
5
  end
@@ -2,6 +2,6 @@
2
2
  ##
3
3
  ## SQL
4
4
  ##
5
- class Iro::Option # < ApplicationRecord
5
+ class Iro::Option # < Iro::ApplicationRecord
6
6
  # self.table_name = 'iro_options'
7
7
  end
@@ -1,4 +1,4 @@
1
1
 
2
- class Iro::PriceItem < ApplicationRecord
2
+ class Iro::PriceItem < Iro::ApplicationRecord
3
3
  self.table_name = 'iro_price_items'
4
4
  end
@@ -1,4 +1,4 @@
1
1
 
2
- class Iro::Profile < ApplicationRecord
2
+ class Iro::Profile < Iro::ApplicationRecord
3
3
  self.table_name = 'iro_profiles'
4
4
  end
@@ -2,7 +2,7 @@
2
2
  ##
3
3
  ## SQL
4
4
  ##
5
- class Iro::Stock < ApplicationRecord
5
+ class Iro::Stock < Iro::ApplicationRecord
6
6
  self.table_name = 'iro_stocks'
7
7
 
8
8
  STATUS_ACTIVE = 'active'
data/lib/iron_warbler.rb CHANGED
@@ -1,4 +1,5 @@
1
1
 
2
+ require "active_record/railtie"
2
3
  require 'haml'
3
4
 
4
5
  require "iro/engine"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iron_warbler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7.1
4
+ version: 2.0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Pudeyev