nostalgic 0.6.4 → 0.7.0

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: 0ee7d0acbf5ab54cd13d65b797089fa7e0c4191af0e50b799fff8b503f0c1dfe
4
- data.tar.gz: 55f7a3d9d7757571a5b147a9f9f0fa5d8a0efafe8d3503d8c4735f0a69a52f37
3
+ metadata.gz: 7bb2ba136af9d55a6354bc59277f437c3d84fffa55a8ab7e2b8c43314a642e40
4
+ data.tar.gz: 894b499100f1b1447de93292745fa9092a1886d232442bb7627b353aead444e8
5
5
  SHA512:
6
- metadata.gz: 1726de51bbf7f30478811c1b7df2ee59a1e6b3284e53181f7f0515e09e6fe7412394feeceb95273ec64011f4c30de326e4a38557a85f1aaad29ebd5bee3799b3
7
- data.tar.gz: b54df4664b474774df3bbbe4be7627c6aaa835f10d1db74de87ce2a21934dd919326ef358a53e1410db8e7fb481f90a30f4f15906eb4ccc81489b49ec96e164a
6
+ metadata.gz: 4f0790ed1e2698774b42ec3fd2c18d94c80874dbdf6787fa701d6ffdef94d0e35d69e0368f904934e7f9bc05b204b529f566acd6d9a08ade829e64c5b911c959
7
+ data.tar.gz: 7febf9f72a86d944f3df5694cff771bd0b37e80832936124e6942e321f5d8fb58e092a4bca126e9abb9e866b70569ff878601378d6e771a0d444e6f3c81417d0
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright ichy
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -8,7 +8,7 @@ How to use my plugin.
8
8
  Add this line to your application's Gemfile:
9
9
 
10
10
  ```ruby
11
- gem 'nostalgic'
11
+ gem "nostalgic"
12
12
  ```
13
13
 
14
14
  And then execute:
data/Rakefile CHANGED
@@ -1,12 +1,8 @@
1
- require "bundler/gem_tasks"
1
+ require "bundler/setup"
2
2
 
3
- require 'rake/testtask'
3
+ APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
4
+ load "rails/tasks/engine.rake"
4
5
 
5
- Rake::TestTask.new(:test) do |t|
6
- t.libs << 'lib'
7
- t.libs << 'test'
8
- t.pattern = 'test/**/*_test.rb'
9
- t.verbose = false
10
- end
6
+ load "rails/tasks/statistics.rake"
11
7
 
12
- task :default => :test
8
+ require "bundler/gem_tasks"
@@ -1,5 +1,4 @@
1
1
  module Nostalgic
2
2
  class ApplicationController < ActionController::Base
3
- protect_from_forgery with: :exception
4
3
  end
5
4
  end
@@ -1,6 +1,6 @@
1
1
  module Nostalgic
2
2
  class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
3
+ default from: "from@example.com"
4
+ layout "mailer"
5
5
  end
6
6
  end
@@ -5,8 +5,9 @@
5
5
  <%= csrf_meta_tags %>
6
6
  <%= csp_meta_tag %>
7
7
 
8
+ <%= yield :head %>
9
+
8
10
  <%= stylesheet_link_tag "nostalgic/application", media: "all" %>
9
- <%= javascript_include_tag "nostalgic/application" %>
10
11
  </head>
11
12
  <body>
12
13
 
@@ -1,5 +1,9 @@
1
1
  module Nostalgic
2
2
  class Engine < ::Rails::Engine
3
3
  isolate_namespace Nostalgic
4
+
5
+ initializer 'nostalgic.assets.precompile' do |app|
6
+ app.config.assets.precompile += %w[nostalgic_manifest.js]
7
+ end
4
8
  end
5
9
  end
@@ -1,3 +1,3 @@
1
1
  module Nostalgic
2
- VERSION = '0.6.4'
2
+ VERSION = '0.7.0'
3
3
  end
data/lib/nostalgic.rb CHANGED
@@ -1,7 +1,8 @@
1
+ require "nostalgic/version"
2
+ require "nostalgic/engine"
3
+ require "nostalgic/railtie"
4
+ require "nostalgic/form_builder"
5
+
1
6
  module Nostalgic
7
+ # Your code goes here...
2
8
  end
3
-
4
- require 'nostalgic/version'
5
- require 'nostalgic/engine'
6
- require 'nostalgic/railtie'
7
- require 'nostalgic/form_builder'
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nostalgic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-21 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rails
@@ -16,56 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '5.2'
18
+ version: '6.0'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: '5.2'
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '2.0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '2.0'
41
- - !ruby/object:Gem::Dependency
42
- name: minitest
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '5.25'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '5.25'
55
- - !ruby/object:Gem::Dependency
56
- name: rake
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '12.0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '12.0'
25
+ version: '6.0'
69
26
  description: column versioning utility
70
27
  email:
71
28
  - ichylinux@gmail.com
@@ -73,6 +30,7 @@ executables: []
73
30
  extensions: []
74
31
  extra_rdoc_files: []
75
32
  files:
33
+ - MIT-LICENSE
76
34
  - README.md
77
35
  - Rakefile
78
36
  - app/assets/config/nostalgic_manifest.js
@@ -106,8 +64,10 @@ files:
106
64
  homepage: https://github.com/ichylinux/nostalgic
107
65
  licenses:
108
66
  - MIT
109
- metadata: {}
110
- post_install_message:
67
+ metadata:
68
+ homepage_uri: https://github.com/ichylinux/nostalgic
69
+ source_code_uri: https://github.com/ichylinux/nostalgic
70
+ changelog_uri: https://github.com/ichylinux/nostalgic/blob/master/HISTORY.md
111
71
  rdoc_options: []
112
72
  require_paths:
113
73
  - lib
@@ -115,15 +75,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
115
75
  requirements:
116
76
  - - ">="
117
77
  - !ruby/object:Gem::Version
118
- version: 2.7.0
78
+ version: '0'
119
79
  required_rubygems_version: !ruby/object:Gem::Requirement
120
80
  requirements:
121
81
  - - ">="
122
82
  - !ruby/object:Gem::Version
123
83
  version: '0'
124
84
  requirements: []
125
- rubygems_version: 3.4.22
126
- signing_key:
85
+ rubygems_version: 3.7.2
127
86
  specification_version: 4
128
87
  summary: column versioning utility
129
88
  test_files: []