oxen 0.0.4 → 0.0.5

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
  SHA256:
3
- metadata.gz: 383244a5f0b884f7d29ee3a3501fb7db592c90367ce3543327aa8d3bd400d0ce
4
- data.tar.gz: 7e1f0792aa37c012da15d36c173c27966ec6fa0ea84301682f3e8fb58cb41a43
3
+ metadata.gz: b4a9dabd5a7df529379a050e9e78b1caa6f3030a8559ac6d75e7ceb900cf71f4
4
+ data.tar.gz: 6d583d9b2fe5cc7b59fc3e1bc939a555ce86d937e39bba8967b461b2a6251462
5
5
  SHA512:
6
- metadata.gz: 6f812a65683708754f8293eaefe96b1156b9624e9bacfea1d27fb4be9255e2a3e5d77c99cebeec9e18292b3a65e66a7b27e96f3f27b0fe45ca8c50d4a405e711
7
- data.tar.gz: e74164369816c844502613390acd8adfb99949178dc728e8ee7ae2a51170b3f255af145e2eb138a53fafea264d53eca36e31c4e57f52f9225f6f0bbbf539f3bc
6
+ metadata.gz: 162fe4d9ff656c62285c217392cb59ab9622799031575671b28e5fd694e87de82c7c703f367a45053d3f07b181ca7c55601aa2031f28b6481ad6331a282d460b
7
+ data.tar.gz: f41fbd85261df1797c432fdc6ccda52004613322c785f9b6f2b0b936de47d2ba94e064692b45903caeef71d6bd0e585ff3f7f3f31dd66334e8a0ab2d7803d998
@@ -1,3 +1,3 @@
1
1
  module Oxen
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - zxy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-22 00:00:00.000000000 Z
11
+ date: 2018-01-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: simple user and account engine
14
14
  email:
@@ -32,9 +32,7 @@ files:
32
32
  - app/helpers/oxen/application_helper.rb
33
33
  - app/helpers/oxen/auth_helper.rb
34
34
  - app/jobs/oxen/application_job.rb
35
- - app/mailers/oxen/application_mailer.rb
36
35
  - app/models/oxen/account.rb
37
- - app/models/oxen/application_record.rb
38
36
  - app/views/oxen/accounts/_form.html.slim
39
37
  - app/views/oxen/accounts/changepsd.slim
40
38
  - app/views/oxen/accounts/edit.html.slim
@@ -68,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
66
  version: '0'
69
67
  requirements: []
70
68
  rubyforge_project:
71
- rubygems_version: 2.7.3
69
+ rubygems_version: 2.7.4
72
70
  signing_key:
73
71
  specification_version: 4
74
72
  summary: user and account engine.
@@ -1,6 +0,0 @@
1
- module Oxen
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
5
- end
6
- end
@@ -1,5 +0,0 @@
1
- module Oxen
2
- class ApplicationRecord < ActiveRecord::Base
3
- self.abstract_class = true
4
- end
5
- end