activerecord-creating_foreign_keys 0.1.0 → 0.1.1

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: c06fff634cc068ec8449ca21f37777916c634d13
4
- data.tar.gz: 95170d1add06402710fd566787f429c910d98849
3
+ metadata.gz: d4c5a35e6a8a7b83f2673c41c0d9ed7c6992c823
4
+ data.tar.gz: feb454ca176f7146438926a8412f170cc7276601
5
5
  SHA512:
6
- metadata.gz: 3ee9f77469c020933dc6d49d46be31e83f2686cd9d64174ab55fbfd97aea4034eb3b40becd76a02cdd0fbbb3a7d67bb508491ebbb1798aeb7085100dc56cd392
7
- data.tar.gz: 770f36fe2067350aa19e3f27200a1d030cd977ec23449c422f368a191fac2c46dfbf81ee559059db0843984230d32e079cc18fe24b5f78b31f108fa28ca50459
6
+ metadata.gz: 9a68d697adf0721d4a3ab0bbeda9475e75a52ba3323cfc3c62602d854cf27ff3a4e52c80915884590262db8f1cecc301a5ea90b3f4fb1f9ae272725acfec1b18
7
+ data.tar.gz: dcf29bbf8929e716fccff4926e0f2646dacfa8c6e70076de711ced74ddc85e8ae6c0c9ec350c28a5a8c9c2575a34fc841eaccc5acf507afec20891a25d57ccf3
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveRecord
4
4
  module CreatingForeignKeys
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
@@ -3,6 +3,13 @@
3
3
  # Configure Rails Environment
4
4
  ENV["RAILS_ENV"] = "test"
5
5
 
6
+ if ENV["CI"]
7
+ require "simplecov"
8
+ SimpleCov.start "rails" do
9
+ add_filter "/test/"
10
+ end
11
+ end
12
+
6
13
  require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
7
14
  ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
8
15
  require "rails/test_help"
@@ -18,10 +25,3 @@ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
18
25
  if ActiveSupport::TestCase.respond_to?(:fixture_path=)
19
26
  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
20
27
  end
21
-
22
- if ENV["CI"]
23
- require "simplecov"
24
- SimpleCov.start "rails" do
25
- add_filter "/test/"
26
- end
27
- end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-creating_foreign_keys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - hamuyuuki