conduit 0.2.6 → 0.2.7
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.
- checksums.yaml +4 -4
- data/db/migrate/20140305202729_create_conduit_subscriptions.rb +1 -1
- data/lib/conduit/version.rb +1 -1
- data/spec/dummy/config/database.yml +8 -16
- data/spec/dummy/log/development.log +22 -0
- data/spec/dummy/log/test.log +2418 -0
- metadata +2 -4
- data/spec/dummy/db/schema.rb +0 -46
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: conduit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Kelley
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 4.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: sqlite3
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '>='
|
@@ -213,7 +213,6 @@ files:
|
|
213
213
|
- spec/dummy/config/locales/en.yml
|
214
214
|
- spec/dummy/config/routes.rb
|
215
215
|
- spec/dummy/config.ru
|
216
|
-
- spec/dummy/db/schema.rb
|
217
216
|
- spec/dummy/lib/conduit/drivers/my_driver/actions/foo.rb
|
218
217
|
- spec/dummy/lib/conduit/drivers/my_driver/driver.rb
|
219
218
|
- spec/dummy/lib/conduit/drivers/my_driver/parsers/foo.rb
|
@@ -288,7 +287,6 @@ test_files:
|
|
288
287
|
- spec/dummy/config/locales/en.yml
|
289
288
|
- spec/dummy/config/routes.rb
|
290
289
|
- spec/dummy/config.ru
|
291
|
-
- spec/dummy/db/schema.rb
|
292
290
|
- spec/dummy/lib/conduit/drivers/my_driver/actions/foo.rb
|
293
291
|
- spec/dummy/lib/conduit/drivers/my_driver/driver.rb
|
294
292
|
- spec/dummy/lib/conduit/drivers/my_driver/parsers/foo.rb
|
data/spec/dummy/db/schema.rb
DELETED
@@ -1,46 +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: 20140305202729) do
|
15
|
-
|
16
|
-
create_table "conduit_requests", force: true do |t|
|
17
|
-
t.string "driver"
|
18
|
-
t.string "action"
|
19
|
-
t.text "options"
|
20
|
-
t.string "file"
|
21
|
-
t.string "status"
|
22
|
-
t.datetime "created_at"
|
23
|
-
t.datetime "updated_at"
|
24
|
-
end
|
25
|
-
|
26
|
-
create_table "conduit_responses", force: true do |t|
|
27
|
-
t.string "file"
|
28
|
-
t.integer "request_id"
|
29
|
-
t.datetime "created_at"
|
30
|
-
t.datetime "updated_at"
|
31
|
-
end
|
32
|
-
|
33
|
-
add_index "conduit_responses", ["request_id"], name: "index_conduit_responses_on_request_id", using: :btree
|
34
|
-
|
35
|
-
create_table "conduit_subscriptions", force: true do |t|
|
36
|
-
t.integer "request_id"
|
37
|
-
t.integer "subscriber_id"
|
38
|
-
t.string "subscriber_type"
|
39
|
-
t.datetime "created_at"
|
40
|
-
t.datetime "updated_at"
|
41
|
-
end
|
42
|
-
|
43
|
-
add_index "conduit_subscriptions", ["request_id"], name: "index_conduit_subscriptions_on_request_id", using: :btree
|
44
|
-
add_index "conduit_subscriptions", ["subscriber_type", "subscriber_id"], name: "index_conduit_subscriptions_on_subscriber_type_and_subscriber_id", using: :btree
|
45
|
-
|
46
|
-
end
|