simple_history 0.0.1 → 0.0.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
  SHA256:
3
- metadata.gz: 2fd6f4ec5b267ca18991ac5a6957e15b84bc021123714808afd057b7852eaae9
4
- data.tar.gz: 2eed4c5497f9dc51208390b53cfed2c6be5cadd9253e540782ef9a1a64eafe78
3
+ metadata.gz: d62fdbb3ae91c81ddf37782dacaf5fb3be9b36eb0f31e338bfb8754bcd178b83
4
+ data.tar.gz: 16ad2744c7d359dc75064f9a3e54624744a0c7702cf020162525e3625c7d7baf
5
5
  SHA512:
6
- metadata.gz: f19f554f14a252f34caa95526349b39d1b2a10374918b0006c89d55df72209e3c9162c1b7bc938b1ad714e7c98f780a461a98c2d61c465b82d1fd204f0cd8308
7
- data.tar.gz: 8f7bdccd181b69b27ba2226056cf34c99161b1eb1709b5fa9af828094a084e6677963aadc05e1684dd95bfc68ebe66bb82994c72081cfae5759902af68fcb279
6
+ metadata.gz: ba4cc0becf2499acb531b1613d2c8c32c134c52b9d0a0dfd3d925dc7f547c2ed5c42e25926eed078e7cff01755132f5f76b4eae5f0cb01ed3aab192557b65871
7
+ data.tar.gz: 593494fe280618cc613d4878c134aff83ec9d37ec4099f91f3a011c493de02afc80c29da1a12dc4fdef11cf94a6eae06119f34ccaf227a752da320fee547f174
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2021 Andrea Fomera
1
+ Copyright 2023 Andrea Fomera
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -6,12 +6,3 @@ load "rails/tasks/engine.rake"
6
6
  load "rails/tasks/statistics.rake"
7
7
 
8
8
  require "bundler/gem_tasks"
9
- require "rake/testtask"
10
-
11
- Rake::TestTask.new(:test) do |t|
12
- t.libs << "test"
13
- t.pattern = "test/**/*_test.rb"
14
- t.verbose = false
15
- end
16
-
17
- task default: :test
@@ -0,0 +1,6 @@
1
+ module SimpleHistory
2
+ class ApplicationMailer < ActionMailer::Base
3
+ default from: "from@example.com"
4
+ layout "mailer"
5
+ end
6
+ end
@@ -1,5 +1,5 @@
1
1
  module SimpleHistory
2
2
  class ApplicationRecord < ActiveRecord::Base
3
- primary_abstract_class
3
+ self.abstract_class = true
4
4
  end
5
5
  end
@@ -1,3 +1,3 @@
1
1
  module SimpleHistory
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,30 +1,30 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_history
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrea Fomera
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-17 00:00:00.000000000 Z
11
+ date: 2023-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: activerecord
14
+ name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '5.2'
19
+ version: 7.0.6
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '5.2'
27
- description:
26
+ version: 7.0.6
27
+ description: Simple historical tracking of changes
28
28
  email:
29
29
  - afomera@hey.com
30
30
  executables: []
@@ -39,6 +39,7 @@ files:
39
39
  - app/controllers/simple_history/application_controller.rb
40
40
  - app/helpers/simple_history/application_helper.rb
41
41
  - app/jobs/simple_history/application_job.rb
42
+ - app/mailers/simple_history/application_mailer.rb
42
43
  - app/models/simple_history/application_record.rb
43
44
  - app/views/layouts/simple_history/application.html.erb
44
45
  - config/routes.rb
@@ -67,8 +68,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
68
  - !ruby/object:Gem::Version
68
69
  version: '0'
69
70
  requirements: []
70
- rubygems_version: 3.2.3
71
+ rubygems_version: 3.4.10
71
72
  signing_key:
72
73
  specification_version: 4
73
- summary: An rails engine to provide basic historical tracking.
74
+ summary: Simple historical tracking of changes.
74
75
  test_files: []