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 +4 -4
 - data/MIT-LICENSE +20 -0
 - data/README.md +1 -1
 - data/Rakefile +5 -9
 - data/app/controllers/nostalgic/application_controller.rb +0 -1
 - data/app/mailers/nostalgic/application_mailer.rb +2 -2
 - data/app/views/layouts/nostalgic/application.html.erb +2 -1
 - data/lib/nostalgic/version.rb +1 -1
 - data/lib/nostalgic.rb +6 -5
 - metadata +9 -47
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 7bb2ba136af9d55a6354bc59277f437c3d84fffa55a8ab7e2b8c43314a642e40
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 894b499100f1b1447de93292745fa9092a1886d232442bb7627b353aead444e8
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 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
    
    
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -1,12 +1,8 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            require "bundler/ 
     | 
| 
      
 1 
     | 
    
         
            +
            require "bundler/setup"
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
      
 3 
     | 
    
         
            +
            APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
         
     | 
| 
      
 4 
     | 
    
         
            +
            load "rails/tasks/engine.rake"
         
     | 
| 
       4 
5 
     | 
    
         | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       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 
     | 
    
         
            -
             
     | 
| 
      
 8 
     | 
    
         
            +
            require "bundler/gem_tasks"
         
     | 
    
        data/lib/nostalgic/version.rb
    CHANGED
    
    
    
        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. 
     | 
| 
      
 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: ' 
     | 
| 
      
 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: ' 
     | 
| 
       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:  
     | 
| 
      
 78 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
       117 
79 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       118 
80 
     | 
    
         
             
              requirements:
         
     | 
| 
       119 
81 
     | 
    
         
             
              - - ">="
         
     |