nostalgic 0.6.5 → 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: 57e9356ca965a79bc3980d47c2a77375e1bdc1821d83b537004c52764cead8ea
4
- data.tar.gz: e3fd4ed11bb21e6ba99372422b644e7c1e3ccaa2e91f80343985ee5f9e88a082
3
+ metadata.gz: 7bb2ba136af9d55a6354bc59277f437c3d84fffa55a8ab7e2b8c43314a642e40
4
+ data.tar.gz: 894b499100f1b1447de93292745fa9092a1886d232442bb7627b353aead444e8
5
5
  SHA512:
6
- metadata.gz: bd124c4a4e56b36381adf70440c8b15a56bfb97f68da5a5cf5ebbab9214b8b8cfe85bb699aa37c5ae0d2ea4696c8a8dfe97a6fc895e2e62c40d2c8faf3c1f18d
7
- data.tar.gz: d866cbb4d1900ed2208f79abe61e1e1dcbb1e54efdce48f4978a49e7ea1f4c3397b9a4e4e12427914a350d092786b81247f750ac62a2d92863ee153448d52005
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,3 +1,3 @@
1
1
  module Nostalgic
2
- VERSION = '0.6.5'
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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nostalgic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
@@ -15,56 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '5.2'
18
+ version: '6.0'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - ">="
24
24
  - !ruby/object:Gem::Version
25
- version: '5.2'
26
- - !ruby/object:Gem::Dependency
27
- name: bundler
28
- requirement: !ruby/object:Gem::Requirement
29
- requirements:
30
- - - "~>"
31
- - !ruby/object:Gem::Version
32
- version: '2.0'
33
- type: :development
34
- prerelease: false
35
- version_requirements: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - "~>"
38
- - !ruby/object:Gem::Version
39
- version: '2.0'
40
- - !ruby/object:Gem::Dependency
41
- name: minitest
42
- requirement: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - "~>"
45
- - !ruby/object:Gem::Version
46
- version: '5.25'
47
- type: :development
48
- prerelease: false
49
- version_requirements: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - "~>"
52
- - !ruby/object:Gem::Version
53
- version: '5.25'
54
- - !ruby/object:Gem::Dependency
55
- name: rake
56
- requirement: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - "~>"
59
- - !ruby/object:Gem::Version
60
- version: '12.0'
61
- type: :development
62
- prerelease: false
63
- version_requirements: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: '12.0'
25
+ version: '6.0'
68
26
  description: column versioning utility
69
27
  email:
70
28
  - ichylinux@gmail.com
@@ -72,6 +30,7 @@ executables: []
72
30
  extensions: []
73
31
  extra_rdoc_files: []
74
32
  files:
33
+ - MIT-LICENSE
75
34
  - README.md
76
35
  - Rakefile
77
36
  - app/assets/config/nostalgic_manifest.js
@@ -105,7 +64,10 @@ files:
105
64
  homepage: https://github.com/ichylinux/nostalgic
106
65
  licenses:
107
66
  - MIT
108
- metadata: {}
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
109
71
  rdoc_options: []
110
72
  require_paths:
111
73
  - lib
@@ -113,7 +75,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
113
75
  requirements:
114
76
  - - ">="
115
77
  - !ruby/object:Gem::Version
116
- version: 2.7.0
78
+ version: '0'
117
79
  required_rubygems_version: !ruby/object:Gem::Requirement
118
80
  requirements:
119
81
  - - ">="