yaddl 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 +32 -0
 - data/lib/tasks/yaddl_tasks.rake +22 -0
 - data/lib/yaddl.rb +810 -0
 - data/lib/yaddl/version.rb +3 -0
 - data/test/dummy/README.rdoc +28 -0
 - data/test/dummy/Rakefile +6 -0
 - data/test/dummy/app/assets/javascripts/application.js +13 -0
 - data/test/dummy/app/assets/stylesheets/application.css +13 -0
 - data/test/dummy/app/controllers/application_controller.rb +5 -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/bin/bundle +3 -0
 - data/test/dummy/bin/rails +4 -0
 - data/test/dummy/bin/rake +4 -0
 - data/test/dummy/config.ru +4 -0
 - data/test/dummy/config/application.rb +23 -0
 - data/test/dummy/config/boot.rb +5 -0
 - data/test/dummy/config/database.yml +25 -0
 - data/test/dummy/config/environment.rb +5 -0
 - data/test/dummy/config/environments/development.rb +29 -0
 - data/test/dummy/config/environments/production.rb +80 -0
 - data/test/dummy/config/environments/test.rb +36 -0
 - data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
 - data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
 - data/test/dummy/config/initializers/inflections.rb +16 -0
 - data/test/dummy/config/initializers/mime_types.rb +5 -0
 - data/test/dummy/config/initializers/secret_token.rb +12 -0
 - data/test/dummy/config/initializers/session_store.rb +3 -0
 - data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
 - data/test/dummy/config/locales/en.yml +23 -0
 - data/test/dummy/config/routes.rb +56 -0
 - data/test/dummy/db/test.sqlite3 +0 -0
 - data/test/dummy/public/404.html +58 -0
 - data/test/dummy/public/422.html +58 -0
 - data/test/dummy/public/500.html +57 -0
 - data/test/dummy/public/favicon.ico +0 -0
 - data/test/test_helper.rb +19 -0
 - data/test/yaddl_test.rb +19 -0
 - metadata +153 -0
 
| 
         
            File without changes
         
     | 
| 
         @@ -0,0 +1,58 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 3 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
              <title>The page you were looking for doesn't exist (404)</title>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <style>
         
     | 
| 
      
 6 
     | 
    
         
            +
              body {
         
     | 
| 
      
 7 
     | 
    
         
            +
                background-color: #EFEFEF;
         
     | 
| 
      
 8 
     | 
    
         
            +
                color: #2E2F30;
         
     | 
| 
      
 9 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 10 
     | 
    
         
            +
                font-family: arial, sans-serif;
         
     | 
| 
      
 11 
     | 
    
         
            +
              }
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              div.dialog {
         
     | 
| 
      
 14 
     | 
    
         
            +
                width: 25em;
         
     | 
| 
      
 15 
     | 
    
         
            +
                margin: 4em auto 0 auto;
         
     | 
| 
      
 16 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 17 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 18 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 19 
     | 
    
         
            +
                border-bottom-color: #BBB;
         
     | 
| 
      
 20 
     | 
    
         
            +
                border-top: #B00100 solid 4px;
         
     | 
| 
      
 21 
     | 
    
         
            +
                border-top-left-radius: 9px;
         
     | 
| 
      
 22 
     | 
    
         
            +
                border-top-right-radius: 9px;
         
     | 
| 
      
 23 
     | 
    
         
            +
                background-color: white;
         
     | 
| 
      
 24 
     | 
    
         
            +
                padding: 7px 4em 0 4em;
         
     | 
| 
      
 25 
     | 
    
         
            +
              }
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
              h1 {
         
     | 
| 
      
 28 
     | 
    
         
            +
                font-size: 100%;
         
     | 
| 
      
 29 
     | 
    
         
            +
                color: #730E15;
         
     | 
| 
      
 30 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 31 
     | 
    
         
            +
              }
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
              body > p {
         
     | 
| 
      
 34 
     | 
    
         
            +
                width: 33em;
         
     | 
| 
      
 35 
     | 
    
         
            +
                margin: 0 auto 1em;
         
     | 
| 
      
 36 
     | 
    
         
            +
                padding: 1em 0;
         
     | 
| 
      
 37 
     | 
    
         
            +
                background-color: #F7F7F7;
         
     | 
| 
      
 38 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 39 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 40 
     | 
    
         
            +
                border-bottom-color: #999;
         
     | 
| 
      
 41 
     | 
    
         
            +
                border-bottom-left-radius: 4px;
         
     | 
| 
      
 42 
     | 
    
         
            +
                border-bottom-right-radius: 4px;
         
     | 
| 
      
 43 
     | 
    
         
            +
                border-top-color: #DADADA;
         
     | 
| 
      
 44 
     | 
    
         
            +
                color: #666;
         
     | 
| 
      
 45 
     | 
    
         
            +
                box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 46 
     | 
    
         
            +
              }
         
     | 
| 
      
 47 
     | 
    
         
            +
              </style>
         
     | 
| 
      
 48 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 51 
     | 
    
         
            +
              <!-- This file lives in public/404.html -->
         
     | 
| 
      
 52 
     | 
    
         
            +
              <div class="dialog">
         
     | 
| 
      
 53 
     | 
    
         
            +
                <h1>The page you were looking for doesn't exist.</h1>
         
     | 
| 
      
 54 
     | 
    
         
            +
                <p>You may have mistyped the address or the page may have moved.</p>
         
     | 
| 
      
 55 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 56 
     | 
    
         
            +
              <p>If you are the application owner check the logs for more information.</p>
         
     | 
| 
      
 57 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 58 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -0,0 +1,58 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 3 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
              <title>The change you wanted was rejected (422)</title>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <style>
         
     | 
| 
      
 6 
     | 
    
         
            +
              body {
         
     | 
| 
      
 7 
     | 
    
         
            +
                background-color: #EFEFEF;
         
     | 
| 
      
 8 
     | 
    
         
            +
                color: #2E2F30;
         
     | 
| 
      
 9 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 10 
     | 
    
         
            +
                font-family: arial, sans-serif;
         
     | 
| 
      
 11 
     | 
    
         
            +
              }
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              div.dialog {
         
     | 
| 
      
 14 
     | 
    
         
            +
                width: 25em;
         
     | 
| 
      
 15 
     | 
    
         
            +
                margin: 4em auto 0 auto;
         
     | 
| 
      
 16 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 17 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 18 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 19 
     | 
    
         
            +
                border-bottom-color: #BBB;
         
     | 
| 
      
 20 
     | 
    
         
            +
                border-top: #B00100 solid 4px;
         
     | 
| 
      
 21 
     | 
    
         
            +
                border-top-left-radius: 9px;
         
     | 
| 
      
 22 
     | 
    
         
            +
                border-top-right-radius: 9px;
         
     | 
| 
      
 23 
     | 
    
         
            +
                background-color: white;
         
     | 
| 
      
 24 
     | 
    
         
            +
                padding: 7px 4em 0 4em;
         
     | 
| 
      
 25 
     | 
    
         
            +
              }
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
              h1 {
         
     | 
| 
      
 28 
     | 
    
         
            +
                font-size: 100%;
         
     | 
| 
      
 29 
     | 
    
         
            +
                color: #730E15;
         
     | 
| 
      
 30 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 31 
     | 
    
         
            +
              }
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
              body > p {
         
     | 
| 
      
 34 
     | 
    
         
            +
                width: 33em;
         
     | 
| 
      
 35 
     | 
    
         
            +
                margin: 0 auto 1em;
         
     | 
| 
      
 36 
     | 
    
         
            +
                padding: 1em 0;
         
     | 
| 
      
 37 
     | 
    
         
            +
                background-color: #F7F7F7;
         
     | 
| 
      
 38 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 39 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 40 
     | 
    
         
            +
                border-bottom-color: #999;
         
     | 
| 
      
 41 
     | 
    
         
            +
                border-bottom-left-radius: 4px;
         
     | 
| 
      
 42 
     | 
    
         
            +
                border-bottom-right-radius: 4px;
         
     | 
| 
      
 43 
     | 
    
         
            +
                border-top-color: #DADADA;
         
     | 
| 
      
 44 
     | 
    
         
            +
                color: #666;
         
     | 
| 
      
 45 
     | 
    
         
            +
                box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 46 
     | 
    
         
            +
              }
         
     | 
| 
      
 47 
     | 
    
         
            +
              </style>
         
     | 
| 
      
 48 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 51 
     | 
    
         
            +
              <!-- This file lives in public/422.html -->
         
     | 
| 
      
 52 
     | 
    
         
            +
              <div class="dialog">
         
     | 
| 
      
 53 
     | 
    
         
            +
                <h1>The change you wanted was rejected.</h1>
         
     | 
| 
      
 54 
     | 
    
         
            +
                <p>Maybe you tried to change something you didn't have access to.</p>
         
     | 
| 
      
 55 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 56 
     | 
    
         
            +
              <p>If you are the application owner check the logs for more information.</p>
         
     | 
| 
      
 57 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 58 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -0,0 +1,57 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 3 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
              <title>We're sorry, but something went wrong (500)</title>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <style>
         
     | 
| 
      
 6 
     | 
    
         
            +
              body {
         
     | 
| 
      
 7 
     | 
    
         
            +
                background-color: #EFEFEF;
         
     | 
| 
      
 8 
     | 
    
         
            +
                color: #2E2F30;
         
     | 
| 
      
 9 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 10 
     | 
    
         
            +
                font-family: arial, sans-serif;
         
     | 
| 
      
 11 
     | 
    
         
            +
              }
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              div.dialog {
         
     | 
| 
      
 14 
     | 
    
         
            +
                width: 25em;
         
     | 
| 
      
 15 
     | 
    
         
            +
                margin: 4em auto 0 auto;
         
     | 
| 
      
 16 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 17 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 18 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 19 
     | 
    
         
            +
                border-bottom-color: #BBB;
         
     | 
| 
      
 20 
     | 
    
         
            +
                border-top: #B00100 solid 4px;
         
     | 
| 
      
 21 
     | 
    
         
            +
                border-top-left-radius: 9px;
         
     | 
| 
      
 22 
     | 
    
         
            +
                border-top-right-radius: 9px;
         
     | 
| 
      
 23 
     | 
    
         
            +
                background-color: white;
         
     | 
| 
      
 24 
     | 
    
         
            +
                padding: 7px 4em 0 4em;
         
     | 
| 
      
 25 
     | 
    
         
            +
              }
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
              h1 {
         
     | 
| 
      
 28 
     | 
    
         
            +
                font-size: 100%;
         
     | 
| 
      
 29 
     | 
    
         
            +
                color: #730E15;
         
     | 
| 
      
 30 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 31 
     | 
    
         
            +
              }
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
              body > p {
         
     | 
| 
      
 34 
     | 
    
         
            +
                width: 33em;
         
     | 
| 
      
 35 
     | 
    
         
            +
                margin: 0 auto 1em;
         
     | 
| 
      
 36 
     | 
    
         
            +
                padding: 1em 0;
         
     | 
| 
      
 37 
     | 
    
         
            +
                background-color: #F7F7F7;
         
     | 
| 
      
 38 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 39 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 40 
     | 
    
         
            +
                border-bottom-color: #999;
         
     | 
| 
      
 41 
     | 
    
         
            +
                border-bottom-left-radius: 4px;
         
     | 
| 
      
 42 
     | 
    
         
            +
                border-bottom-right-radius: 4px;
         
     | 
| 
      
 43 
     | 
    
         
            +
                border-top-color: #DADADA;
         
     | 
| 
      
 44 
     | 
    
         
            +
                color: #666;
         
     | 
| 
      
 45 
     | 
    
         
            +
                box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 46 
     | 
    
         
            +
              }
         
     | 
| 
      
 47 
     | 
    
         
            +
              </style>
         
     | 
| 
      
 48 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 51 
     | 
    
         
            +
              <!-- This file lives in public/500.html -->
         
     | 
| 
      
 52 
     | 
    
         
            +
              <div class="dialog">
         
     | 
| 
      
 53 
     | 
    
         
            +
                <h1>We're sorry, but something went wrong.</h1>
         
     | 
| 
      
 54 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 55 
     | 
    
         
            +
              <p>If you are the application owner check the logs for more information.</p>
         
     | 
| 
      
 56 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 57 
     | 
    
         
            +
            </html>
         
     | 
| 
         
            File without changes
         
     | 
    
        data/test/test_helper.rb
    ADDED
    
    | 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 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
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            def assert_file(filename, contents)
         
     | 
| 
      
 18 
     | 
    
         
            +
              assert_equal File.read("#{Rails::root}/#{filename}"), contents
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
    
        data/test/yaddl_test.rb
    ADDED
    
    | 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'test_helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            class YaddlTest < ActiveSupport::TestCase
         
     | 
| 
      
 4 
     | 
    
         
            +
              test "defined" do
         
     | 
| 
      
 5 
     | 
    
         
            +
                assert_kind_of Module, Yaddl
         
     | 
| 
      
 6 
     | 
    
         
            +
              end
         
     | 
| 
      
 7 
     | 
    
         
            +
              test "create test model" do
         
     | 
| 
      
 8 
     | 
    
         
            +
                y = Yaddl::Yaddl.new
         
     | 
| 
      
 9 
     | 
    
         
            +
                y.markup = "TestModel"
         
     | 
| 
      
 10 
     | 
    
         
            +
                y.generate("--no-scaffolds --quiet")
         
     | 
| 
      
 11 
     | 
    
         
            +
                assert_file "app/models/test_model.rb", "class TestModel < ActiveRecord::Base
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
| 
      
 14 
     | 
    
         
            +
            "
         
     | 
| 
      
 15 
     | 
    
         
            +
                assert_file "db/schema.yaml", "---
         
     | 
| 
      
 16 
     | 
    
         
            +
            TestModel: {}
         
     | 
| 
      
 17 
     | 
    
         
            +
            "
         
     | 
| 
      
 18 
     | 
    
         
            +
              end
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,153 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: yaddl
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.1
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
      
 6 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 7 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 8 
     | 
    
         
            +
            - Brant Wedel
         
     | 
| 
      
 9 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 10 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 11 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2014-03-17 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: 4.0.0
         
     | 
| 
      
 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: 4.0.0
         
     | 
| 
      
 30 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 31 
     | 
    
         
            +
              name: sqlite3
         
     | 
| 
      
 32 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 33 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 34 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 35 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 37 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 38 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 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 
     | 
    
         
            +
            description: A concise data definition language and generator for active record with
         
     | 
| 
      
 47 
     | 
    
         
            +
              the ability to properly map model associations
         
     | 
| 
      
 48 
     | 
    
         
            +
            email:
         
     | 
| 
      
 49 
     | 
    
         
            +
            - brant@bitbased.net
         
     | 
| 
      
 50 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 51 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 52 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 53 
     | 
    
         
            +
            files:
         
     | 
| 
      
 54 
     | 
    
         
            +
            - lib/tasks/yaddl_tasks.rake
         
     | 
| 
      
 55 
     | 
    
         
            +
            - lib/yaddl/version.rb
         
     | 
| 
      
 56 
     | 
    
         
            +
            - lib/yaddl.rb
         
     | 
| 
      
 57 
     | 
    
         
            +
            - MIT-LICENSE
         
     | 
| 
      
 58 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 59 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 60 
     | 
    
         
            +
            - test/dummy/app/assets/javascripts/application.js
         
     | 
| 
      
 61 
     | 
    
         
            +
            - test/dummy/app/assets/stylesheets/application.css
         
     | 
| 
      
 62 
     | 
    
         
            +
            - test/dummy/app/controllers/application_controller.rb
         
     | 
| 
      
 63 
     | 
    
         
            +
            - test/dummy/app/helpers/application_helper.rb
         
     | 
| 
      
 64 
     | 
    
         
            +
            - test/dummy/app/views/layouts/application.html.erb
         
     | 
| 
      
 65 
     | 
    
         
            +
            - test/dummy/bin/bundle
         
     | 
| 
      
 66 
     | 
    
         
            +
            - test/dummy/bin/rails
         
     | 
| 
      
 67 
     | 
    
         
            +
            - test/dummy/bin/rake
         
     | 
| 
      
 68 
     | 
    
         
            +
            - test/dummy/config/application.rb
         
     | 
| 
      
 69 
     | 
    
         
            +
            - test/dummy/config/boot.rb
         
     | 
| 
      
 70 
     | 
    
         
            +
            - test/dummy/config/database.yml
         
     | 
| 
      
 71 
     | 
    
         
            +
            - test/dummy/config/environment.rb
         
     | 
| 
      
 72 
     | 
    
         
            +
            - test/dummy/config/environments/development.rb
         
     | 
| 
      
 73 
     | 
    
         
            +
            - test/dummy/config/environments/production.rb
         
     | 
| 
      
 74 
     | 
    
         
            +
            - test/dummy/config/environments/test.rb
         
     | 
| 
      
 75 
     | 
    
         
            +
            - test/dummy/config/initializers/backtrace_silencers.rb
         
     | 
| 
      
 76 
     | 
    
         
            +
            - test/dummy/config/initializers/filter_parameter_logging.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
            - test/dummy/config/initializers/inflections.rb
         
     | 
| 
      
 78 
     | 
    
         
            +
            - test/dummy/config/initializers/mime_types.rb
         
     | 
| 
      
 79 
     | 
    
         
            +
            - test/dummy/config/initializers/secret_token.rb
         
     | 
| 
      
 80 
     | 
    
         
            +
            - test/dummy/config/initializers/session_store.rb
         
     | 
| 
      
 81 
     | 
    
         
            +
            - test/dummy/config/initializers/wrap_parameters.rb
         
     | 
| 
      
 82 
     | 
    
         
            +
            - test/dummy/config/locales/en.yml
         
     | 
| 
      
 83 
     | 
    
         
            +
            - test/dummy/config/routes.rb
         
     | 
| 
      
 84 
     | 
    
         
            +
            - test/dummy/config.ru
         
     | 
| 
      
 85 
     | 
    
         
            +
            - test/dummy/db/test.sqlite3
         
     | 
| 
      
 86 
     | 
    
         
            +
            - test/dummy/public/404.html
         
     | 
| 
      
 87 
     | 
    
         
            +
            - test/dummy/public/422.html
         
     | 
| 
      
 88 
     | 
    
         
            +
            - test/dummy/public/500.html
         
     | 
| 
      
 89 
     | 
    
         
            +
            - test/dummy/public/favicon.ico
         
     | 
| 
      
 90 
     | 
    
         
            +
            - test/dummy/Rakefile
         
     | 
| 
      
 91 
     | 
    
         
            +
            - test/dummy/README.rdoc
         
     | 
| 
      
 92 
     | 
    
         
            +
            - test/test_helper.rb
         
     | 
| 
      
 93 
     | 
    
         
            +
            - test/yaddl_test.rb
         
     | 
| 
      
 94 
     | 
    
         
            +
            homepage: http://yaddl.org
         
     | 
| 
      
 95 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 96 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 97 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 98 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 99 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 100 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 101 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 102 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 103 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 104 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 105 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 106 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 107 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 108 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 109 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 110 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 111 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 112 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 113 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 114 
     | 
    
         
            +
            rubygems_version: 1.8.24
         
     | 
| 
      
 115 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 116 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 117 
     | 
    
         
            +
            summary: Yet Another Data Definition Language
         
     | 
| 
      
 118 
     | 
    
         
            +
            test_files:
         
     | 
| 
      
 119 
     | 
    
         
            +
            - test/dummy/app/assets/javascripts/application.js
         
     | 
| 
      
 120 
     | 
    
         
            +
            - test/dummy/app/assets/stylesheets/application.css
         
     | 
| 
      
 121 
     | 
    
         
            +
            - test/dummy/app/controllers/application_controller.rb
         
     | 
| 
      
 122 
     | 
    
         
            +
            - test/dummy/app/helpers/application_helper.rb
         
     | 
| 
      
 123 
     | 
    
         
            +
            - test/dummy/app/views/layouts/application.html.erb
         
     | 
| 
      
 124 
     | 
    
         
            +
            - test/dummy/bin/bundle
         
     | 
| 
      
 125 
     | 
    
         
            +
            - test/dummy/bin/rails
         
     | 
| 
      
 126 
     | 
    
         
            +
            - test/dummy/bin/rake
         
     | 
| 
      
 127 
     | 
    
         
            +
            - test/dummy/config/application.rb
         
     | 
| 
      
 128 
     | 
    
         
            +
            - test/dummy/config/boot.rb
         
     | 
| 
      
 129 
     | 
    
         
            +
            - test/dummy/config/database.yml
         
     | 
| 
      
 130 
     | 
    
         
            +
            - test/dummy/config/environment.rb
         
     | 
| 
      
 131 
     | 
    
         
            +
            - test/dummy/config/environments/development.rb
         
     | 
| 
      
 132 
     | 
    
         
            +
            - test/dummy/config/environments/production.rb
         
     | 
| 
      
 133 
     | 
    
         
            +
            - test/dummy/config/environments/test.rb
         
     | 
| 
      
 134 
     | 
    
         
            +
            - test/dummy/config/initializers/backtrace_silencers.rb
         
     | 
| 
      
 135 
     | 
    
         
            +
            - test/dummy/config/initializers/filter_parameter_logging.rb
         
     | 
| 
      
 136 
     | 
    
         
            +
            - test/dummy/config/initializers/inflections.rb
         
     | 
| 
      
 137 
     | 
    
         
            +
            - test/dummy/config/initializers/mime_types.rb
         
     | 
| 
      
 138 
     | 
    
         
            +
            - test/dummy/config/initializers/secret_token.rb
         
     | 
| 
      
 139 
     | 
    
         
            +
            - test/dummy/config/initializers/session_store.rb
         
     | 
| 
      
 140 
     | 
    
         
            +
            - test/dummy/config/initializers/wrap_parameters.rb
         
     | 
| 
      
 141 
     | 
    
         
            +
            - test/dummy/config/locales/en.yml
         
     | 
| 
      
 142 
     | 
    
         
            +
            - test/dummy/config/routes.rb
         
     | 
| 
      
 143 
     | 
    
         
            +
            - test/dummy/config.ru
         
     | 
| 
      
 144 
     | 
    
         
            +
            - test/dummy/db/test.sqlite3
         
     | 
| 
      
 145 
     | 
    
         
            +
            - test/dummy/public/404.html
         
     | 
| 
      
 146 
     | 
    
         
            +
            - test/dummy/public/422.html
         
     | 
| 
      
 147 
     | 
    
         
            +
            - test/dummy/public/500.html
         
     | 
| 
      
 148 
     | 
    
         
            +
            - test/dummy/public/favicon.ico
         
     | 
| 
      
 149 
     | 
    
         
            +
            - test/dummy/Rakefile
         
     | 
| 
      
 150 
     | 
    
         
            +
            - test/dummy/README.rdoc
         
     | 
| 
      
 151 
     | 
    
         
            +
            - test/test_helper.rb
         
     | 
| 
      
 152 
     | 
    
         
            +
            - test/yaddl_test.rb
         
     | 
| 
      
 153 
     | 
    
         
            +
            has_rdoc: 
         
     |