allport 0.1.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.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +37 -0
  4. data/app/assets/javascripts/allport/application.js +13 -0
  5. data/app/assets/stylesheets/allport/application.css +15 -0
  6. data/app/controllers/allport/application_controller.rb +4 -0
  7. data/app/helpers/allport/application_helper.rb +4 -0
  8. data/app/models/allport/concerns/contactable.rb +11 -0
  9. data/app/models/allport/contact.rb +10 -0
  10. data/app/views/layouts/allport/application.html.erb +14 -0
  11. data/config/routes.rb +2 -0
  12. data/db/migrate/20160310002533_create_allport_contacts.rb +12 -0
  13. data/db/migrate/20160310012110_add_contactable_to_contact.rb +5 -0
  14. data/lib/allport/contactable.rb +7 -0
  15. data/lib/allport/engine.rb +5 -0
  16. data/lib/allport/version.rb +3 -0
  17. data/lib/allport.rb +4 -0
  18. data/lib/tasks/allport_tasks.rake +4 -0
  19. data/test/allport_test.rb +7 -0
  20. data/test/dummy/README.rdoc +28 -0
  21. data/test/dummy/Rakefile +6 -0
  22. data/test/dummy/app/assets/javascripts/application.js +13 -0
  23. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  24. data/test/dummy/app/controllers/application_controller.rb +5 -0
  25. data/test/dummy/app/helpers/application_helper.rb +2 -0
  26. data/test/dummy/app/models/user.rb +3 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/bin/bundle +3 -0
  29. data/test/dummy/bin/rails +4 -0
  30. data/test/dummy/bin/rake +4 -0
  31. data/test/dummy/bin/setup +29 -0
  32. data/test/dummy/config/application.rb +26 -0
  33. data/test/dummy/config/boot.rb +5 -0
  34. data/test/dummy/config/database.yml +25 -0
  35. data/test/dummy/config/environment.rb +5 -0
  36. data/test/dummy/config/environments/development.rb +41 -0
  37. data/test/dummy/config/environments/production.rb +79 -0
  38. data/test/dummy/config/environments/test.rb +42 -0
  39. data/test/dummy/config/initializers/assets.rb +11 -0
  40. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  42. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/test/dummy/config/initializers/inflections.rb +16 -0
  44. data/test/dummy/config/initializers/mime_types.rb +4 -0
  45. data/test/dummy/config/initializers/session_store.rb +3 -0
  46. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  47. data/test/dummy/config/locales/en.yml +23 -0
  48. data/test/dummy/config/routes.rb +4 -0
  49. data/test/dummy/config/secrets.yml +22 -0
  50. data/test/dummy/config.ru +4 -0
  51. data/test/dummy/db/development.sqlite3 +0 -0
  52. data/test/dummy/db/migrate/20160310014136_create_user.rb +7 -0
  53. data/test/dummy/db/schema.rb +29 -0
  54. data/test/dummy/db/test.sqlite3 +0 -0
  55. data/test/dummy/log/development.log +88 -0
  56. data/test/dummy/log/test.log +9389 -0
  57. data/test/dummy/public/404.html +67 -0
  58. data/test/dummy/public/422.html +67 -0
  59. data/test/dummy/public/500.html +66 -0
  60. data/test/dummy/public/favicon.ico +0 -0
  61. data/test/fixtures/allport/contacts.yml +13 -0
  62. data/test/integration/navigation_test.rb +8 -0
  63. data/test/models/allport/concerns/contactable_test.rb +22 -0
  64. data/test/models/allport/contact_test.rb +31 -0
  65. data/test/test_helper.rb +21 -0
  66. metadata +183 -0
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Allport::Engine => "/allport"
4
+ end
@@ -0,0 +1,22 @@
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: ad4eae3b6ca19940a12131f8fee2a09a0a544321a257a4d2bc1cbe2b051c715881ff0df99da18300c5bc4a124febd49675bfe45abadbe8614a77f44c5434a1ca
15
+
16
+ test:
17
+ secret_key_base: 7af3903595fb84b248c2bcbd0f01da18ac0861705293a9e6d8fd2505b56abe455bf5714f56ec0b7f49db35b24cc020d6be415a307ee5dbcc9af7f1c50dddc0d1
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
Binary file
@@ -0,0 +1,7 @@
1
+ class CreateUser < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :username
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,29 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20160310012110) do
15
+
16
+ create_table "allport_contacts", force: :cascade do |t|
17
+ t.string "first_name"
18
+ t.string "middle_name"
19
+ t.string "last_name"
20
+ t.string "email"
21
+ t.datetime "created_at", null: false
22
+ t.datetime "updated_at", null: false
23
+ t.integer "contactable_id"
24
+ t.string "contactable_type"
25
+ end
26
+
27
+ add_index "allport_contacts", ["contactable_type", "contactable_id"], name: "index_allport_contacts_on_contactable_type_and_contactable_id"
28
+
29
+ end
Binary file
@@ -0,0 +1,88 @@
1
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateAllportContacts (20160310002533)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "allport_contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar, "middle_name" varchar, "last_name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160310002533"]]
9
+  (1.5ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ Migrating to AddContactableToContact (20160310012110)
13
+  (0.1ms) begin transaction
14
+  (0.2ms) ALTER TABLE "contacts" ADD "contactable_id" integer
15
+  (0.1ms) rollback transaction
16
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
+ Migrating to AddContactableToContact (20160310012110)
18
+  (0.1ms) begin transaction
19
+  (0.4ms) ALTER TABLE "allport_contacts" ADD "contactable_id" integer
20
+  (0.1ms) ALTER TABLE "allport_contacts" ADD "contactable_type" varchar
21
+  (0.0ms) select sqlite_version(*)
22
+  (1.3ms) CREATE INDEX "index_allport_contacts_on_contactable_type_and_contactable_id" ON "allport_contacts" ("contactable_type", "contactable_id")
23
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160310012110"]]
24
+  (1.5ms) commit transaction
25
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26
+  (0.1ms) SELECT sql
27
+ FROM sqlite_master
28
+ WHERE name='index_allport_contacts_on_contactable_type_and_contactable_id' AND type='index'
29
+ UNION ALL
30
+ SELECT sql
31
+ FROM sqlite_temp_master
32
+ WHERE name='index_allport_contacts_on_contactable_type_and_contactable_id' AND type='index'
33
+
34
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
35
+  (0.1ms) select sqlite_version(*)
36
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
37
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
+ Migrating to CreateAllportContacts (20160310002533)
39
+  (0.1ms) begin transaction
40
+  (0.6ms) CREATE TABLE "allport_contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar, "middle_name" varchar, "last_name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
41
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160310002533"]]
42
+  (1.6ms) commit transaction
43
+ Migrating to AddContactableToContact (20160310012110)
44
+  (0.1ms) begin transaction
45
+  (0.3ms) ALTER TABLE "allport_contacts" ADD "contactable_id" integer
46
+  (0.1ms) ALTER TABLE "allport_contacts" ADD "contactable_type" varchar
47
+  (0.1ms) CREATE INDEX "index_allport_contacts_on_contactable_type_and_contactable_id" ON "allport_contacts" ("contactable_type", "contactable_id")
48
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160310012110"]]
49
+  (1.6ms) commit transaction
50
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
51
+  (0.1ms) SELECT sql
52
+ FROM sqlite_master
53
+ WHERE name='index_allport_contacts_on_contactable_type_and_contactable_id' AND type='index'
54
+ UNION ALL
55
+ SELECT sql
56
+ FROM sqlite_temp_master
57
+ WHERE name='index_allport_contacts_on_contactable_type_and_contactable_id' AND type='index'
58
+
59
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
60
+  (0.1ms) select sqlite_version(*)
61
+  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
63
+ Migrating to CreateAllportContacts (20160310002533)
64
+  (0.1ms) begin transaction
65
+  (0.4ms) CREATE TABLE "allport_contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar, "middle_name" varchar, "last_name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
66
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160310002533"]]
67
+  (1.5ms) commit transaction
68
+ Migrating to AddContactableToContact (20160310012110)
69
+  (0.1ms) begin transaction
70
+  (0.3ms) ALTER TABLE "allport_contacts" ADD "contactable_id" integer
71
+  (0.1ms) ALTER TABLE "allport_contacts" ADD "contactable_type" varchar
72
+  (0.1ms) CREATE INDEX "index_allport_contacts_on_contactable_type_and_contactable_id" ON "allport_contacts" ("contactable_type", "contactable_id")
73
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160310012110"]]
74
+  (1.6ms) commit transaction
75
+ Migrating to CreateUser (20160310014136)
76
+  (0.3ms) begin transaction
77
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar)
78
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160310014136"]]
79
+  (1.6ms) commit transaction
80
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
81
+  (0.1ms) SELECT sql
82
+ FROM sqlite_master
83
+ WHERE name='index_allport_contacts_on_contactable_type_and_contactable_id' AND type='index'
84
+ UNION ALL
85
+ SELECT sql
86
+ FROM sqlite_temp_master
87
+ WHERE name='index_allport_contacts_on_contactable_type_and_contactable_id' AND type='index'
88
+