bookingsync_application 0.1.1 → 0.1.2

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: aa22224b3d5c0b206931caea36b6ece13b1b23f6
4
- data.tar.gz: 4677d4de1f704b9b2539e358daf8d5f60556e457
3
+ metadata.gz: 259e51d10846427784c96cc83a9f37b5b7e6f09f
4
+ data.tar.gz: 16c0d603e260cbf0e21017d730b21b262ba539ef
5
5
  SHA512:
6
- metadata.gz: 96cd98fec235d9016ea8a0a58a3b3aac740e8809c38fe3317a5c24344b557d33fafd5dcbd206119ad8f7f83823913f6eae10548d00f1846e62655b866106799c
7
- data.tar.gz: 25a3c96cb79bc50b9d4de2ee28cdeaba27083510a889bd05c05329f92c58c32fd36f3f27c245928dea814aa08af29f85e49f243cd3c0c86633ab4fdf65a80e5a
6
+ metadata.gz: 19d225fedb3d75eda3ced3fa07d35b0e862e3a8356323db6b0f27c290a9e8b479407a22d9e33e046a66427d585ef2ddab23b7ce7a5740e6b32a40386554c58c8
7
+ data.tar.gz: 7a0ecbe289e21e9bd658ddf2aa503ef7e6aad4645dcedce5b4dd04b572a8ab1c35a81ab1a3269075b399a325c101b270ef75c993f9413050ffc9197fc978a03e
data/README.md CHANGED
@@ -10,6 +10,7 @@ A Rails engine to simplify building BookingSync Applications.
10
10
  * add bookingsync_application to your gemfile
11
11
  ```
12
12
  gem 'bookingsync_application'
13
+ gem 'dotenv', github: "bkeepers/dotenv" # Work around https://github.com/bkeepers/dotenv/issues/144
13
14
  ```
14
15
  * add to rails_helper (before spec/support inclusion):
15
16
  ```
@@ -1,5 +1,4 @@
1
1
  require 'jsonapi/resource_controller'
2
- require 'bookingsync_application/common_base_controller'
3
2
 
4
3
  class BookingsyncApplication::Admin::BaseController < JSONAPI::ResourceController
5
4
  respond_to :json
@@ -3,6 +3,7 @@ require "synced"
3
3
  require "dotenv"
4
4
  require "jsonapi-resources"
5
5
  require "bookingsync_application/engine"
6
+ require 'bookingsync_application/common_base_controller'
6
7
 
7
8
  module BookingsyncApplication
8
9
  mattr_accessor :master_controller_class
@@ -1,3 +1,3 @@
1
1
  module BookingsyncApplication
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bookingsync_application
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcin Nowicki