sequenced 3.1.0 → 4.0.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 (100) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ci.yml +100 -0
  3. data/Appraisals +19 -0
  4. data/CHANGELOG.md +22 -2
  5. data/Gemfile +8 -5
  6. data/MIT-LICENSE +1 -1
  7. data/README.md +31 -4
  8. data/Rakefile +18 -18
  9. data/gemfiles/rails_5_2.gemfile +17 -0
  10. data/gemfiles/rails_5_2.gemfile.lock +193 -0
  11. data/gemfiles/rails_6.gemfile +17 -0
  12. data/gemfiles/rails_6.gemfile.lock +204 -0
  13. data/gemfiles/rails_6_1.gemfile +17 -0
  14. data/gemfiles/rails_6_1.gemfile.lock +207 -0
  15. data/gemfiles/rails_7.gemfile +17 -0
  16. data/gemfiles/rails_7.gemfile.lock +206 -0
  17. data/gemfiles/rails_master.gemfile +17 -0
  18. data/gemfiles/rails_master.gemfile.lock +215 -0
  19. data/lib/sequenced/acts_as_sequenced.rb +5 -6
  20. data/lib/sequenced/generator.rb +13 -11
  21. data/lib/sequenced/version.rb +1 -1
  22. data/lib/sequenced.rb +5 -3
  23. data/sequenced.gemspec +8 -9
  24. metadata +29 -165
  25. data/.travis.yml +0 -13
  26. data/test/acts_as_sequenced_test.rb +0 -132
  27. data/test/concurrency_test.rb +0 -82
  28. data/test/dummy/README.rdoc +0 -261
  29. data/test/dummy/Rakefile +0 -7
  30. data/test/dummy/app/assets/javascripts/application.js +0 -15
  31. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  32. data/test/dummy/app/controllers/application_controller.rb +0 -3
  33. data/test/dummy/app/helpers/application_helper.rb +0 -2
  34. data/test/dummy/app/mailers/.gitkeep +0 -0
  35. data/test/dummy/app/models/.gitkeep +0 -0
  36. data/test/dummy/app/models/account.rb +0 -6
  37. data/test/dummy/app/models/address.rb +0 -4
  38. data/test/dummy/app/models/answer.rb +0 -4
  39. data/test/dummy/app/models/comment.rb +0 -8
  40. data/test/dummy/app/models/concurrent_badger.rb +0 -3
  41. data/test/dummy/app/models/doppelganger.rb +0 -4
  42. data/test/dummy/app/models/email.rb +0 -4
  43. data/test/dummy/app/models/invoice.rb +0 -4
  44. data/test/dummy/app/models/monster.rb +0 -3
  45. data/test/dummy/app/models/order.rb +0 -4
  46. data/test/dummy/app/models/policeman.rb +0 -5
  47. data/test/dummy/app/models/product.rb +0 -8
  48. data/test/dummy/app/models/question.rb +0 -4
  49. data/test/dummy/app/models/rating.rb +0 -3
  50. data/test/dummy/app/models/subscription.rb +0 -3
  51. data/test/dummy/app/models/user.rb +0 -4
  52. data/test/dummy/app/models/werewolf.rb +0 -2
  53. data/test/dummy/app/models/zombie.rb +0 -2
  54. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  55. data/test/dummy/config/application.rb +0 -56
  56. data/test/dummy/config/boot.rb +0 -10
  57. data/test/dummy/config/database.yml +0 -29
  58. data/test/dummy/config/environment.rb +0 -5
  59. data/test/dummy/config/environments/development.rb +0 -33
  60. data/test/dummy/config/environments/production.rb +0 -67
  61. data/test/dummy/config/environments/test.rb +0 -43
  62. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  63. data/test/dummy/config/initializers/inflections.rb +0 -15
  64. data/test/dummy/config/initializers/mime_types.rb +0 -5
  65. data/test/dummy/config/initializers/secret_token.rb +0 -7
  66. data/test/dummy/config/initializers/session_store.rb +0 -8
  67. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  68. data/test/dummy/config/locales/en.yml +0 -5
  69. data/test/dummy/config/routes.rb +0 -58
  70. data/test/dummy/config.ru +0 -4
  71. data/test/dummy/db/development.sqlite3 +0 -0
  72. data/test/dummy/db/migrate/20120219165346_create_questions.rb +0 -10
  73. data/test/dummy/db/migrate/20120219165548_create_answers.rb +0 -13
  74. data/test/dummy/db/migrate/20120219171957_create_accounts.rb +0 -9
  75. data/test/dummy/db/migrate/20120219172039_create_invoices.rb +0 -12
  76. data/test/dummy/db/migrate/20120219172922_create_orders.rb +0 -10
  77. data/test/dummy/db/migrate/20120219174931_create_subscriptions.rb +0 -10
  78. data/test/dummy/db/migrate/20120219175744_create_users.rb +0 -12
  79. data/test/dummy/db/migrate/20120219232323_create_addresses.rb +0 -9
  80. data/test/dummy/db/migrate/20120220000804_create_comments.rb +0 -12
  81. data/test/dummy/db/migrate/20130411225444_create_emails.rb +0 -12
  82. data/test/dummy/db/migrate/20130715002029_create_ratings.rb +0 -10
  83. data/test/dummy/db/migrate/20130730004055_create_products.rb +0 -9
  84. data/test/dummy/db/migrate/20131226000000_create_monsters.rb +0 -9
  85. data/test/dummy/db/migrate/20140404195334_create_policemen.rb +0 -9
  86. data/test/dummy/db/migrate/20151120190645_create_concurrent_badgers.rb +0 -10
  87. data/test/dummy/db/migrate/20160118182655_create_doppelgangers.rb +0 -10
  88. data/test/dummy/db/schema.rb +0 -142
  89. data/test/dummy/db/test.sqlite3 +0 -0
  90. data/test/dummy/lib/assets/.gitkeep +0 -0
  91. data/test/dummy/log/.gitkeep +0 -0
  92. data/test/dummy/log/development.log +0 -62
  93. data/test/dummy/log/test.log +0 -32690
  94. data/test/dummy/public/404.html +0 -26
  95. data/test/dummy/public/422.html +0 -26
  96. data/test/dummy/public/500.html +0 -25
  97. data/test/dummy/public/favicon.ico +0 -0
  98. data/test/dummy/script/rails +0 -6
  99. data/test/multiple_sequences_test.rb +0 -20
  100. data/test/test_helper.rb +0 -13
@@ -1,142 +0,0 @@
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: 20160118182655) do
15
-
16
- create_table "accounts", force: :cascade do |t|
17
- t.string "name"
18
- t.datetime "created_at"
19
- t.datetime "updated_at"
20
- end
21
-
22
- create_table "addresses", force: :cascade do |t|
23
- t.integer "account_id"
24
- t.string "city"
25
- t.datetime "created_at"
26
- t.datetime "updated_at"
27
- end
28
-
29
- create_table "answers", force: :cascade do |t|
30
- t.integer "question_id"
31
- t.text "body"
32
- t.integer "sequential_id"
33
- t.datetime "created_at"
34
- t.datetime "updated_at"
35
- end
36
-
37
- add_index "answers", ["question_id"], name: "index_answers_on_question_id"
38
- add_index "answers", ["sequential_id"], name: "index_answers_on_sequential_id"
39
-
40
- create_table "comments", force: :cascade do |t|
41
- t.integer "question_id"
42
- t.text "body"
43
- t.integer "sequential_id"
44
- t.datetime "created_at"
45
- t.datetime "updated_at"
46
- end
47
-
48
- add_index "comments", ["question_id"], name: "index_comments_on_question_id"
49
-
50
- create_table "concurrent_badgers", force: :cascade do |t|
51
- t.integer "sequential_id", null: false
52
- t.integer "burrow_id"
53
- end
54
-
55
- add_index "concurrent_badgers", ["sequential_id", "burrow_id"], name: "unique_concurrent", unique: true
56
-
57
- create_table "doppelgangers", force: :cascade do |t|
58
- t.integer "sequential_id_one"
59
- t.integer "sequential_id_two"
60
- t.datetime "created_at", null: false
61
- t.datetime "updated_at", null: false
62
- end
63
-
64
- create_table "emails", force: :cascade do |t|
65
- t.string "emailable_type"
66
- t.integer "emailable_id"
67
- t.integer "sequential_id"
68
- t.string "address"
69
- t.datetime "created_at"
70
- t.datetime "updated_at"
71
- end
72
-
73
- create_table "invoices", force: :cascade do |t|
74
- t.integer "amount"
75
- t.integer "sequential_id"
76
- t.integer "account_id"
77
- t.datetime "created_at"
78
- t.datetime "updated_at"
79
- end
80
-
81
- add_index "invoices", ["account_id"], name: "index_invoices_on_account_id"
82
-
83
- create_table "monsters", force: :cascade do |t|
84
- t.integer "sequential_id"
85
- t.string "type"
86
- t.datetime "created_at"
87
- t.datetime "updated_at"
88
- end
89
-
90
- create_table "orders", force: :cascade do |t|
91
- t.string "product"
92
- t.integer "account_id"
93
- t.datetime "created_at"
94
- t.datetime "updated_at"
95
- end
96
-
97
- create_table "policemen", force: :cascade do |t|
98
- t.integer "sequential_id"
99
- t.datetime "created_at"
100
- t.datetime "updated_at"
101
- end
102
-
103
- create_table "products", force: :cascade do |t|
104
- t.integer "account_id"
105
- t.integer "sequential_id"
106
- t.datetime "created_at"
107
- t.datetime "updated_at"
108
- end
109
-
110
- create_table "questions", force: :cascade do |t|
111
- t.string "summary"
112
- t.text "body"
113
- t.datetime "created_at"
114
- t.datetime "updated_at"
115
- end
116
-
117
- create_table "ratings", force: :cascade do |t|
118
- t.integer "comment_id"
119
- t.integer "score"
120
- t.integer "sequential_id"
121
- t.datetime "created_at"
122
- t.datetime "updated_at"
123
- end
124
-
125
- create_table "subscriptions", force: :cascade do |t|
126
- t.string "plan"
127
- t.integer "sequential_id"
128
- t.datetime "created_at"
129
- t.datetime "updated_at"
130
- end
131
-
132
- create_table "users", force: :cascade do |t|
133
- t.integer "account_id"
134
- t.string "name"
135
- t.integer "custom_sequential_id"
136
- t.datetime "created_at"
137
- t.datetime "updated_at"
138
- end
139
-
140
- add_index "users", ["account_id"], name: "index_users_on_account_id"
141
-
142
- end
Binary file
File without changes
File without changes
@@ -1,62 +0,0 @@
1
-  (0.1ms) select sqlite_version(*)
2
-  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
-  (0.0ms) PRAGMA index_list("schema_migrations")
4
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
- Migrating to CreateQuestions (20120219165346)
7
-  (0.0ms) begin transaction
8
-  (0.4ms) CREATE TABLE "questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "summary" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219165346')
10
-  (1.0ms) commit transaction
11
- Migrating to CreateAnswers (20120219165548)
12
-  (0.0ms) begin transaction
13
-  (0.4ms) CREATE TABLE "answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "question_id" integer, "body" text, "sequential_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
14
-  (0.0ms) PRAGMA index_list("answers")
15
-  (0.2ms) CREATE INDEX "index_answers_on_question_id" ON "answers" ("question_id")
16
-  (0.0ms) PRAGMA index_list("answers")
17
-  (0.0ms) PRAGMA index_info('index_answers_on_question_id')
18
-  (0.2ms) CREATE INDEX "index_answers_on_sequential_id" ON "answers" ("sequential_id")
19
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219165548')
20
-  (1.2ms) commit transaction
21
- Migrating to CreateAccounts (20120219171957)
22
-  (0.0ms) begin transaction
23
-  (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
24
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219171957')
25
-  (1.0ms) commit transaction
26
- Migrating to CreateInvoices (20120219172039)
27
-  (0.1ms) begin transaction
28
-  (0.4ms) CREATE TABLE "invoices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sequential_id" integer, "account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
29
-  (0.0ms) PRAGMA index_list("invoices")
30
-  (0.1ms) CREATE INDEX "index_invoices_on_account_id" ON "invoices" ("account_id")
31
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219172039')
32
-  (1.1ms) commit transaction
33
- Migrating to CreateOrders (20120219172922)
34
-  (0.0ms) begin transaction
35
-  (0.4ms) CREATE TABLE "orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product" varchar(255), "account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
36
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219172922')
37
-  (1.2ms) commit transaction
38
- Migrating to CreateSubscriptions (20120219174931)
39
-  (0.0ms) begin transaction
40
-  (0.4ms) CREATE TABLE "subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan" varchar(255), "sequential_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
41
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219174931')
42
-  (0.8ms) commit transaction
43
- Migrating to CreateUsers (20120219175744)
44
-  (0.0ms) begin transaction
45
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_id" integer, "name" varchar(255), "custom_sequential_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
46
-  (0.0ms) PRAGMA index_list("users")
47
-  (0.2ms) CREATE INDEX "index_users_on_account_id" ON "users" ("account_id")
48
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219175744')
49
-  (1.1ms) commit transaction
50
-  (0.5ms) select sqlite_version(*)
51
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
52
-  (0.0ms) PRAGMA index_list("accounts")
53
-  (0.0ms) PRAGMA index_list("answers")
54
-  (0.0ms) PRAGMA index_info('index_answers_on_sequential_id')
55
-  (0.0ms) PRAGMA index_info('index_answers_on_question_id')
56
-  (0.0ms) PRAGMA index_list("invoices")
57
-  (0.0ms) PRAGMA index_info('index_invoices_on_account_id')
58
-  (0.0ms) PRAGMA index_list("orders")
59
-  (0.0ms) PRAGMA index_list("questions")
60
-  (0.0ms) PRAGMA index_list("subscriptions")
61
-  (0.0ms) PRAGMA index_list("users")
62
-  (0.0ms) PRAGMA index_info('index_users_on_account_id')