restpack_service 0.0.78 → 0.0.79

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: 530391dd80fa2f394ce52ccefa57d4aadf07761c
4
- data.tar.gz: 9f5aa239b6a2ce575fcf282f4aea19557a9bd55e
3
+ metadata.gz: 69bb16415d86f68ccf5d0f0252d982ad4d9560d6
4
+ data.tar.gz: 564b40e8c630d5f0b1730f1974ff1e2625c9b14c
5
5
  SHA512:
6
- metadata.gz: d6877c4ec151c1ceb825f41d98401d9994caf10d6ead6c73d2d49f5e8f713eae0b391efc58687b2b07d07377db7dadcaff22355926b46d68f9b255b556d8037a
7
- data.tar.gz: 68ff5b6cdf796344872c16088767a2d621f52998c00c876dc6d233978c5cb38eb43720c2998f84753930acedf8cd0f942cf56d4c9465ef32d7199d72144e289d
6
+ metadata.gz: b1f45547af09683e3140dbc1811f2e2180c19cf03752b8f39b4f5698ed1a16a06fd58c382e4a05cb04e2052b512522004ba5d712c42ad7bc9d54c4a0320aa90e
7
+ data.tar.gz: ae010f8c67ef97277f505b0622fc028177fcc63c37de6d06553d8e7abde76aa7a77c1bbf8679d78c7a91856c3686584f92951e190b7f2dcc9d53678df528efd3
@@ -3,5 +3,30 @@ require 'database_cleaner'
3
3
  require 'yaml'
4
4
  require 'shoulda-matchers'
5
5
  require 'factory_girl'
6
+ require 'pry'
6
7
 
7
8
  require_relative 'matchers'
9
+
10
+ def setup
11
+ config = YAML.load_file('./config/database.yml')
12
+ ActiveRecord::Base.establish_connection(ENV['DATABASE_URL'] || config['test'])
13
+
14
+ migrations_path = File.dirname(__FILE__) + "/../db/migrate"
15
+ migrations = ActiveRecord::Migrator.up(migrations_path)
16
+
17
+ FactoryGirl.find_definitions
18
+
19
+ DatabaseCleaner.strategy = :transaction
20
+
21
+ RSpec.configure do |config|
22
+ config.include FactoryGirl::Syntax::Methods
23
+
24
+ config.before(:each) do
25
+ DatabaseCleaner.start
26
+ end
27
+
28
+ config.after(:each) do
29
+ DatabaseCleaner.clean
30
+ end
31
+ end
32
+ end
@@ -1,5 +1,5 @@
1
1
  module RestPack
2
2
  module Service
3
- VERSION = "0.0.78"
3
+ VERSION = "0.0.79"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restpack_service
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.78
4
+ version: 0.0.79
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gavin Joyce