dropkiq 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d844cf3f9530b26f65bbb96987a8990a5c2eaa8
4
- data.tar.gz: e500d13eb8eb341888c00bc251b2e14b99c3c03a
3
+ metadata.gz: '059b0fc8166c29492a41e95145a67b01e0c8bbef'
4
+ data.tar.gz: e5953122e3341a125c124702b59d12b973defd05
5
5
  SHA512:
6
- metadata.gz: 654b6c30b1c01bcbebf477d3270c0c994a1606b3a3cba83826987ea1673c6f1f05fdd202e0603ff0872aab70ad13455af62462e9cf4379d1214c7ee4341c1a08
7
- data.tar.gz: bf2b8fbd9d3944253751ea41b0bd777a604e4df84bb4d2ab30ca9d5b3022036f02b1b8c8a97146c112d5fc87d57a0befabf162be235d32fea526bd356003642e
6
+ metadata.gz: 4d252fc3a471dea6dbcfe3817055e05790aa530544b89369867f3b1635212773e9a70562ed09d3a9e6f0ce7b23dc3eed5465bd42141c573a53fdbf6f534c10a5
7
+ data.tar.gz: a5d6809d1b29dda8188cfc4021e01b96934e18e97859022d0f02bc782aaa34f0b7b1b197dff67803bfce71fad5bf2237c39a8835d62061ae44e9bf0a2549a357
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dropkiq (0.1.3)
4
+ dropkiq (0.1.4)
5
5
  activerecord (>= 4.2)
6
6
  liquid (~> 4.0)
7
7
 
@@ -1,6 +1,5 @@
1
1
  module Dropkiq
2
2
  DEFAULT_DROP_PATH = "/app/drops"
3
- DEFAULT_MODEL_PATH = "/app/models"
4
3
 
5
4
  DEFAULT_LIQUID_DROP_CLASSES = [
6
5
  Liquid::ForloopDrop,
@@ -2,9 +2,7 @@ namespace :dropkiq do
2
2
  desc "Generate the fixture schema based on Liquid::Drop classes"
3
3
  task :schema do
4
4
  require "#{Rails.root}/config/environment.rb"
5
-
6
5
  Dir.glob("#{Rails.root}#{Dropkiq::DEFAULT_DROP_PATH}/**/*.rb").each { |f| load f }
7
- Dir.glob("#{Rails.root}#{Dropkiq::DEFAULT_MODEL_PATH}/**/*.rb").each { |f| load f }
8
6
 
9
7
  existing_schema_yaml = begin
10
8
  File.read("#{Rails.root}/db/dropkiq_schema.yaml")
@@ -1,3 +1,3 @@
1
1
  module Dropkiq
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dropkiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Darrah