active_record_simple_execute 0.9.0 → 0.9.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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -1
  3. data/README.md +23 -34
  4. data/lib/active_record_simple_execute/version.rb +1 -1
  5. data/lib/active_record_simple_execute.rb +22 -20
  6. metadata +7 -69
  7. data/test/dummy_app/Rakefile +0 -7
  8. data/test/dummy_app/app/assets/config/manifest.js +0 -3
  9. data/test/dummy_app/app/assets/javascripts/application.js +0 -0
  10. data/test/dummy_app/app/assets/stylesheets/application.css +0 -3
  11. data/test/dummy_app/app/controllers/application_controller.rb +0 -3
  12. data/test/dummy_app/app/models/application_record.rb +0 -3
  13. data/test/dummy_app/app/models/post.rb +0 -3
  14. data/test/dummy_app/app/views/layouts/application.html.erb +0 -14
  15. data/test/dummy_app/config/application.rb +0 -70
  16. data/test/dummy_app/config/boot.rb +0 -10
  17. data/test/dummy_app/config/database.yml +0 -20
  18. data/test/dummy_app/config/environment.rb +0 -5
  19. data/test/dummy_app/config/environments/development.rb +0 -30
  20. data/test/dummy_app/config/environments/production.rb +0 -60
  21. data/test/dummy_app/config/environments/test.rb +0 -41
  22. data/test/dummy_app/config/initializers/backtrace_silencers.rb +0 -7
  23. data/test/dummy_app/config/initializers/inflections.rb +0 -10
  24. data/test/dummy_app/config/initializers/mime_types.rb +0 -5
  25. data/test/dummy_app/config/initializers/secret_token.rb +0 -11
  26. data/test/dummy_app/config/initializers/session_store.rb +0 -8
  27. data/test/dummy_app/config/initializers/wrap_parameters.rb +0 -14
  28. data/test/dummy_app/config/locales/en.yml +0 -5
  29. data/test/dummy_app/config/routes.rb +0 -6
  30. data/test/dummy_app/config/secrets.yml +0 -22
  31. data/test/dummy_app/config.ru +0 -4
  32. data/test/dummy_app/db/migrate/20210128155312_set_up_test_tables.rb +0 -28
  33. data/test/dummy_app/db/test +0 -0
  34. data/test/dummy_app/db/test.sqlite3 +0 -0
  35. data/test/dummy_app/log/test.log +0 -612
  36. data/test/test_helper.rb +0 -43
  37. data/test/unit/active_record_simple_execute_test.rb +0 -63
@@ -1,22 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
8
- # You can use `rake secret` to generate a secure secret key.
9
-
10
- # Make sure the secrets in this file are kept private
11
- # if you're sharing your code publicly.
12
-
13
- development:
14
- secret_key_base: d28054e102cd55dcd684cee239d31ddf1e1acd83bd879dd5f671e989f5c9d94ec1ede00e7fcf9b6bde4cd115f93c54e3ba6c5dc05d233292542f27a79706fcb4
15
-
16
- test:
17
- secret_key_base: 378b4f2309d4898f5170b41624e19bf60ce8a154ad87c100e8846bddcf4c28b72b533f2e73738ef8f6eabb7a773a0a0e7c32c0649916c5f280eb7ac621fc318c
18
-
19
- # Do not keep production secrets in the repository,
20
- # instead read values from the environment.
21
- production:
22
- secret_key_base: 5e73c057b92f67f980fbea4c1c2c495b25def0048f8c1c040fed9c08f49cd50a2ebf872dd87857afc0861479e9382fceb7d9837a0bce546c2f7594e2f4da45e3
@@ -1,4 +0,0 @@
1
- # This file is used by Rack-based servers to start the application.
2
-
3
- require ::File.expand_path('../config/environment', __FILE__)
4
- run Dummy::Application
@@ -1,28 +0,0 @@
1
- if defined?(ActiveRecord::Migration::Current)
2
- migration_klass = ActiveRecord::Migration::Current
3
- else
4
- migration_klass = ActiveRecord::Migration
5
- end
6
-
7
- class SetUpTestTables < migration_klass
8
-
9
- def change
10
- create_table :posts do |t|
11
- t.string :title, :content
12
- t.integer :number
13
- t.timestamps
14
- end
15
-
16
- create_table :comments do |t|
17
- t.text :content
18
- t.references :user, :post
19
- t.timestamps
20
- end
21
-
22
- create_table :users do |t|
23
- t.string :name
24
- t.timestamps
25
- end
26
- end
27
-
28
- end
Binary file
Binary file