activetracker 0.4.7 → 0.4.8

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: 25b4d0806c1d0828a360588039cf5070722cb1fa1c00657382fb718d0ca80daf
4
- data.tar.gz: '008ba957459adcf052329122961a92821a4e35f04bb671fecded72ceab5810a9'
3
+ metadata.gz: aa285082d179d3e5e8ee686c1012c334af277e81d8de2b897c9ad732ce45f407
4
+ data.tar.gz: 5c297f61f2d0731cf0bde0833b609153510ce5c7833dca5ab30a7f11715eb268
5
5
  SHA512:
6
- metadata.gz: 7bb1ce3c96947a95247cae854d7189c5a47c7c8957e256ec075f5bb51af16a25f791073efe4cb416ab6748cfc294c00f43872c3dab7f26cbef378286612ecafa
7
- data.tar.gz: 13bcbfdc9784629420c39aa4d5ddd6406cef4fe6bd8bd1439c08b4f6ea50e65f6abb123855199008802bb91865885ca9cde397f80ebeecf985602763b9e02e0d
6
+ metadata.gz: faf8ae02103b763883fdd7bf6bd796abd1a03e1208a5c7ca259910ffb6f3904f31f1710893d3eb433ab2318674d6f8075a2366d1f7b944d83701f44ce1395420
7
+ data.tar.gz: bf60a7177ce99e7c924943ca059a3eef83ef5d881a32a9816b876f15d4fe064e4c5af33f8962d9e2a14bf2938828fcc0a7bf0e939ca48bc09aaa55a32950207f
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.4.8] - 2019-11-05
10
+ ### Fixed
11
+ - Removed unnecessary ActionMailer class
12
+
9
13
  ## [0.4.7] - 2019-11-05
10
14
  ### Fixed
11
15
  - Changed to config.eager_load_paths to try to avoid `ActiveTracker::Model` not defined in production
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activetracker (0.4.7)
4
+ activetracker (0.4.8)
5
5
  redis (~> 4.0)
6
6
 
7
7
  GEM
@@ -1,3 +1,3 @@
1
1
  module ActiveTracker
2
- VERSION = "0.4.7"
2
+ VERSION = "0.4.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activetracker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.7
4
+ version: 0.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Jeffries
@@ -189,7 +189,6 @@ files:
189
189
  - app/helpers/active_tracker/output_helper.rb
190
190
  - app/helpers/active_tracker/pagination_helper.rb
191
191
  - app/jobs/active_tracker/application_job.rb
192
- - app/mailers/active_tracker/application_mailer.rb
193
192
  - app/models/active_tracker/application_record.rb
194
193
  - app/views/active_tracker/common/_empty.html.erb
195
194
  - app/views/active_tracker/common/_pagination.html.erb
@@ -1,6 +0,0 @@
1
- module ActiveTracker
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
5
- end
6
- end