auditlog 0.0.1
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.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +40 -0
- data/app/models/activity.rb +15 -0
- data/app/models/version.rb +17 -0
- data/app/models/version_change.rb +22 -0
- data/config/routes.rb +2 -0
- data/lib/auditlog.rb +4 -0
- data/lib/auditlog/application_controller_helper.rb +16 -0
- data/lib/auditlog/data.rb +13 -0
- data/lib/auditlog/engine.rb +4 -0
- data/lib/auditlog/model_tracker.rb +20 -0
- data/lib/auditlog/tracker.rb +32 -0
- data/lib/auditlog/version.rb +3 -0
- data/lib/tasks/auditlog_tasks.rake +4 -0
- data/test/auditlog_test.rb +7 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/log/development.log +1286 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- metadata +222 -0
| @@ -0,0 +1,26 @@ | |
| 1 | 
            +
            <!DOCTYPE html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
              <title>The page you were looking for doesn't exist (404)</title>
         | 
| 5 | 
            +
              <style type="text/css">
         | 
| 6 | 
            +
                body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
         | 
| 7 | 
            +
                div.dialog {
         | 
| 8 | 
            +
                  width: 25em;
         | 
| 9 | 
            +
                  padding: 0 4em;
         | 
| 10 | 
            +
                  margin: 4em auto 0 auto;
         | 
| 11 | 
            +
                  border: 1px solid #ccc;
         | 
| 12 | 
            +
                  border-right-color: #999;
         | 
| 13 | 
            +
                  border-bottom-color: #999;
         | 
| 14 | 
            +
                }
         | 
| 15 | 
            +
                h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
         | 
| 16 | 
            +
              </style>
         | 
| 17 | 
            +
            </head>
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            <body>
         | 
| 20 | 
            +
              <!-- This file lives in public/404.html -->
         | 
| 21 | 
            +
              <div class="dialog">
         | 
| 22 | 
            +
                <h1>The page you were looking for doesn't exist.</h1>
         | 
| 23 | 
            +
                <p>You may have mistyped the address or the page may have moved.</p>
         | 
| 24 | 
            +
              </div>
         | 
| 25 | 
            +
            </body>
         | 
| 26 | 
            +
            </html>
         | 
| @@ -0,0 +1,26 @@ | |
| 1 | 
            +
            <!DOCTYPE html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
              <title>The change you wanted was rejected (422)</title>
         | 
| 5 | 
            +
              <style type="text/css">
         | 
| 6 | 
            +
                body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
         | 
| 7 | 
            +
                div.dialog {
         | 
| 8 | 
            +
                  width: 25em;
         | 
| 9 | 
            +
                  padding: 0 4em;
         | 
| 10 | 
            +
                  margin: 4em auto 0 auto;
         | 
| 11 | 
            +
                  border: 1px solid #ccc;
         | 
| 12 | 
            +
                  border-right-color: #999;
         | 
| 13 | 
            +
                  border-bottom-color: #999;
         | 
| 14 | 
            +
                }
         | 
| 15 | 
            +
                h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
         | 
| 16 | 
            +
              </style>
         | 
| 17 | 
            +
            </head>
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            <body>
         | 
| 20 | 
            +
              <!-- This file lives in public/422.html -->
         | 
| 21 | 
            +
              <div class="dialog">
         | 
| 22 | 
            +
                <h1>The change you wanted was rejected.</h1>
         | 
| 23 | 
            +
                <p>Maybe you tried to change something you didn't have access to.</p>
         | 
| 24 | 
            +
              </div>
         | 
| 25 | 
            +
            </body>
         | 
| 26 | 
            +
            </html>
         | 
| @@ -0,0 +1,25 @@ | |
| 1 | 
            +
            <!DOCTYPE html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
              <title>We're sorry, but something went wrong (500)</title>
         | 
| 5 | 
            +
              <style type="text/css">
         | 
| 6 | 
            +
                body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
         | 
| 7 | 
            +
                div.dialog {
         | 
| 8 | 
            +
                  width: 25em;
         | 
| 9 | 
            +
                  padding: 0 4em;
         | 
| 10 | 
            +
                  margin: 4em auto 0 auto;
         | 
| 11 | 
            +
                  border: 1px solid #ccc;
         | 
| 12 | 
            +
                  border-right-color: #999;
         | 
| 13 | 
            +
                  border-bottom-color: #999;
         | 
| 14 | 
            +
                }
         | 
| 15 | 
            +
                h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
         | 
| 16 | 
            +
              </style>
         | 
| 17 | 
            +
            </head>
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            <body>
         | 
| 20 | 
            +
              <!-- This file lives in public/500.html -->
         | 
| 21 | 
            +
              <div class="dialog">
         | 
| 22 | 
            +
                <h1>We're sorry, but something went wrong.</h1>
         | 
| 23 | 
            +
              </div>
         | 
| 24 | 
            +
            </body>
         | 
| 25 | 
            +
            </html>
         | 
| 
            File without changes
         | 
| @@ -0,0 +1,6 @@ | |
| 1 | 
            +
            #!/usr/bin/env ruby
         | 
| 2 | 
            +
            # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            APP_PATH = File.expand_path('../../config/application',  __FILE__)
         | 
| 5 | 
            +
            require File.expand_path('../../config/boot',  __FILE__)
         | 
| 6 | 
            +
            require 'rails/commands'
         | 
    
        data/test/test_helper.rb
    ADDED
    
    | @@ -0,0 +1,15 @@ | |
| 1 | 
            +
            # Configure Rails Environment
         | 
| 2 | 
            +
            ENV["RAILS_ENV"] = "test"
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            require File.expand_path("../dummy/config/environment.rb",  __FILE__)
         | 
| 5 | 
            +
            require "rails/test_help"
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            Rails.backtrace_cleaner.remove_silencers!
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            # Load support files
         | 
| 10 | 
            +
            Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            # Load fixtures from the engine
         | 
| 13 | 
            +
            if ActiveSupport::TestCase.method_defined?(:fixture_path=)
         | 
| 14 | 
            +
              ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
         | 
| 15 | 
            +
            end
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,222 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: auditlog
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.0.1
         | 
| 5 | 
            +
              prerelease: 
         | 
| 6 | 
            +
            platform: ruby
         | 
| 7 | 
            +
            authors:
         | 
| 8 | 
            +
            - A.K.M. Ashrafuzzaman
         | 
| 9 | 
            +
            autorequire: 
         | 
| 10 | 
            +
            bindir: bin
         | 
| 11 | 
            +
            cert_chain: []
         | 
| 12 | 
            +
            date: 2013-11-19 00:00:00.000000000 Z
         | 
| 13 | 
            +
            dependencies:
         | 
| 14 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 15 | 
            +
              name: rails
         | 
| 16 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 17 | 
            +
                none: false
         | 
| 18 | 
            +
                requirements:
         | 
| 19 | 
            +
                - - ~>
         | 
| 20 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 21 | 
            +
                    version: '3.2'
         | 
| 22 | 
            +
              type: :runtime
         | 
| 23 | 
            +
              prerelease: false
         | 
| 24 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 25 | 
            +
                none: false
         | 
| 26 | 
            +
                requirements:
         | 
| 27 | 
            +
                - - ~>
         | 
| 28 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 29 | 
            +
                    version: '3.2'
         | 
| 30 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 31 | 
            +
              name: request_store
         | 
| 32 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 33 | 
            +
                none: false
         | 
| 34 | 
            +
                requirements:
         | 
| 35 | 
            +
                - - ! '>='
         | 
| 36 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 37 | 
            +
                    version: '0'
         | 
| 38 | 
            +
              type: :runtime
         | 
| 39 | 
            +
              prerelease: false
         | 
| 40 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 41 | 
            +
                none: false
         | 
| 42 | 
            +
                requirements:
         | 
| 43 | 
            +
                - - ! '>='
         | 
| 44 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 45 | 
            +
                    version: '0'
         | 
| 46 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 47 | 
            +
              name: rspec
         | 
| 48 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 49 | 
            +
                none: false
         | 
| 50 | 
            +
                requirements:
         | 
| 51 | 
            +
                - - ! '>='
         | 
| 52 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 53 | 
            +
                    version: '0'
         | 
| 54 | 
            +
              type: :development
         | 
| 55 | 
            +
              prerelease: false
         | 
| 56 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 57 | 
            +
                none: false
         | 
| 58 | 
            +
                requirements:
         | 
| 59 | 
            +
                - - ! '>='
         | 
| 60 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            +
                    version: '0'
         | 
| 62 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 63 | 
            +
              name: rspec-mocks
         | 
| 64 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 65 | 
            +
                none: false
         | 
| 66 | 
            +
                requirements:
         | 
| 67 | 
            +
                - - ! '>='
         | 
| 68 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 69 | 
            +
                    version: '0'
         | 
| 70 | 
            +
              type: :development
         | 
| 71 | 
            +
              prerelease: false
         | 
| 72 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 73 | 
            +
                none: false
         | 
| 74 | 
            +
                requirements:
         | 
| 75 | 
            +
                - - ! '>='
         | 
| 76 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 77 | 
            +
                    version: '0'
         | 
| 78 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 79 | 
            +
              name: sqlite3
         | 
| 80 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 81 | 
            +
                none: false
         | 
| 82 | 
            +
                requirements:
         | 
| 83 | 
            +
                - - ! '>='
         | 
| 84 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 85 | 
            +
                    version: '0'
         | 
| 86 | 
            +
              type: :development
         | 
| 87 | 
            +
              prerelease: false
         | 
| 88 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 89 | 
            +
                none: false
         | 
| 90 | 
            +
                requirements:
         | 
| 91 | 
            +
                - - ! '>='
         | 
| 92 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 93 | 
            +
                    version: '0'
         | 
| 94 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 95 | 
            +
              name: awesome_print
         | 
| 96 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 97 | 
            +
                none: false
         | 
| 98 | 
            +
                requirements:
         | 
| 99 | 
            +
                - - ! '>='
         | 
| 100 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 101 | 
            +
                    version: '0'
         | 
| 102 | 
            +
              type: :development
         | 
| 103 | 
            +
              prerelease: false
         | 
| 104 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 105 | 
            +
                none: false
         | 
| 106 | 
            +
                requirements:
         | 
| 107 | 
            +
                - - ! '>='
         | 
| 108 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 109 | 
            +
                    version: '0'
         | 
| 110 | 
            +
            description: Rails gem to track active record model changes. Allows user to track
         | 
| 111 | 
            +
              action based model changes.
         | 
| 112 | 
            +
            email:
         | 
| 113 | 
            +
            - ashrafuzzaman.g2@gmail.com
         | 
| 114 | 
            +
            executables: []
         | 
| 115 | 
            +
            extensions: []
         | 
| 116 | 
            +
            extra_rdoc_files: []
         | 
| 117 | 
            +
            files:
         | 
| 118 | 
            +
            - app/models/activity.rb
         | 
| 119 | 
            +
            - app/models/version.rb
         | 
| 120 | 
            +
            - app/models/version_change.rb
         | 
| 121 | 
            +
            - config/routes.rb
         | 
| 122 | 
            +
            - lib/auditlog/application_controller_helper.rb
         | 
| 123 | 
            +
            - lib/auditlog/engine.rb
         | 
| 124 | 
            +
            - lib/auditlog/data.rb
         | 
| 125 | 
            +
            - lib/auditlog/version.rb
         | 
| 126 | 
            +
            - lib/auditlog/model_tracker.rb
         | 
| 127 | 
            +
            - lib/auditlog/tracker.rb
         | 
| 128 | 
            +
            - lib/auditlog.rb
         | 
| 129 | 
            +
            - lib/tasks/auditlog_tasks.rake
         | 
| 130 | 
            +
            - MIT-LICENSE
         | 
| 131 | 
            +
            - Rakefile
         | 
| 132 | 
            +
            - README.rdoc
         | 
| 133 | 
            +
            - test/integration/navigation_test.rb
         | 
| 134 | 
            +
            - test/test_helper.rb
         | 
| 135 | 
            +
            - test/auditlog_test.rb
         | 
| 136 | 
            +
            - test/dummy/config/environment.rb
         | 
| 137 | 
            +
            - test/dummy/config/database.yml
         | 
| 138 | 
            +
            - test/dummy/config/application.rb
         | 
| 139 | 
            +
            - test/dummy/config/routes.rb
         | 
| 140 | 
            +
            - test/dummy/config/boot.rb
         | 
| 141 | 
            +
            - test/dummy/config/locales/en.yml
         | 
| 142 | 
            +
            - test/dummy/config/environments/development.rb
         | 
| 143 | 
            +
            - test/dummy/config/environments/test.rb
         | 
| 144 | 
            +
            - test/dummy/config/environments/production.rb
         | 
| 145 | 
            +
            - test/dummy/config/initializers/secret_token.rb
         | 
| 146 | 
            +
            - test/dummy/config/initializers/session_store.rb
         | 
| 147 | 
            +
            - test/dummy/config/initializers/mime_types.rb
         | 
| 148 | 
            +
            - test/dummy/config/initializers/wrap_parameters.rb
         | 
| 149 | 
            +
            - test/dummy/config/initializers/backtrace_silencers.rb
         | 
| 150 | 
            +
            - test/dummy/config/initializers/inflections.rb
         | 
| 151 | 
            +
            - test/dummy/config.ru
         | 
| 152 | 
            +
            - test/dummy/script/rails
         | 
| 153 | 
            +
            - test/dummy/app/controllers/application_controller.rb
         | 
| 154 | 
            +
            - test/dummy/app/assets/stylesheets/application.css
         | 
| 155 | 
            +
            - test/dummy/app/assets/javascripts/application.js
         | 
| 156 | 
            +
            - test/dummy/app/helpers/application_helper.rb
         | 
| 157 | 
            +
            - test/dummy/app/views/layouts/application.html.erb
         | 
| 158 | 
            +
            - test/dummy/log/development.log
         | 
| 159 | 
            +
            - test/dummy/README.rdoc
         | 
| 160 | 
            +
            - test/dummy/Rakefile
         | 
| 161 | 
            +
            - test/dummy/public/favicon.ico
         | 
| 162 | 
            +
            - test/dummy/public/500.html
         | 
| 163 | 
            +
            - test/dummy/public/404.html
         | 
| 164 | 
            +
            - test/dummy/public/422.html
         | 
| 165 | 
            +
            homepage: https://github.com/ashrafuzzaman/auditlog
         | 
| 166 | 
            +
            licenses: []
         | 
| 167 | 
            +
            post_install_message: 
         | 
| 168 | 
            +
            rdoc_options: []
         | 
| 169 | 
            +
            require_paths:
         | 
| 170 | 
            +
            - lib
         | 
| 171 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 172 | 
            +
              none: false
         | 
| 173 | 
            +
              requirements:
         | 
| 174 | 
            +
              - - ! '>='
         | 
| 175 | 
            +
                - !ruby/object:Gem::Version
         | 
| 176 | 
            +
                  version: '0'
         | 
| 177 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 178 | 
            +
              none: false
         | 
| 179 | 
            +
              requirements:
         | 
| 180 | 
            +
              - - ! '>='
         | 
| 181 | 
            +
                - !ruby/object:Gem::Version
         | 
| 182 | 
            +
                  version: '0'
         | 
| 183 | 
            +
            requirements: []
         | 
| 184 | 
            +
            rubyforge_project: 
         | 
| 185 | 
            +
            rubygems_version: 1.8.25
         | 
| 186 | 
            +
            signing_key: 
         | 
| 187 | 
            +
            specification_version: 3
         | 
| 188 | 
            +
            summary: Auditlog is ruby gem to track rails model changes
         | 
| 189 | 
            +
            test_files:
         | 
| 190 | 
            +
            - test/integration/navigation_test.rb
         | 
| 191 | 
            +
            - test/test_helper.rb
         | 
| 192 | 
            +
            - test/auditlog_test.rb
         | 
| 193 | 
            +
            - test/dummy/config/environment.rb
         | 
| 194 | 
            +
            - test/dummy/config/database.yml
         | 
| 195 | 
            +
            - test/dummy/config/application.rb
         | 
| 196 | 
            +
            - test/dummy/config/routes.rb
         | 
| 197 | 
            +
            - test/dummy/config/boot.rb
         | 
| 198 | 
            +
            - test/dummy/config/locales/en.yml
         | 
| 199 | 
            +
            - test/dummy/config/environments/development.rb
         | 
| 200 | 
            +
            - test/dummy/config/environments/test.rb
         | 
| 201 | 
            +
            - test/dummy/config/environments/production.rb
         | 
| 202 | 
            +
            - test/dummy/config/initializers/secret_token.rb
         | 
| 203 | 
            +
            - test/dummy/config/initializers/session_store.rb
         | 
| 204 | 
            +
            - test/dummy/config/initializers/mime_types.rb
         | 
| 205 | 
            +
            - test/dummy/config/initializers/wrap_parameters.rb
         | 
| 206 | 
            +
            - test/dummy/config/initializers/backtrace_silencers.rb
         | 
| 207 | 
            +
            - test/dummy/config/initializers/inflections.rb
         | 
| 208 | 
            +
            - test/dummy/config.ru
         | 
| 209 | 
            +
            - test/dummy/script/rails
         | 
| 210 | 
            +
            - test/dummy/app/controllers/application_controller.rb
         | 
| 211 | 
            +
            - test/dummy/app/assets/stylesheets/application.css
         | 
| 212 | 
            +
            - test/dummy/app/assets/javascripts/application.js
         | 
| 213 | 
            +
            - test/dummy/app/helpers/application_helper.rb
         | 
| 214 | 
            +
            - test/dummy/app/views/layouts/application.html.erb
         | 
| 215 | 
            +
            - test/dummy/log/development.log
         | 
| 216 | 
            +
            - test/dummy/README.rdoc
         | 
| 217 | 
            +
            - test/dummy/Rakefile
         | 
| 218 | 
            +
            - test/dummy/public/favicon.ico
         | 
| 219 | 
            +
            - test/dummy/public/500.html
         | 
| 220 | 
            +
            - test/dummy/public/404.html
         | 
| 221 | 
            +
            - test/dummy/public/422.html
         | 
| 222 | 
            +
            has_rdoc: 
         |