rails_db 1.5.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -2
- data/Gemfile.lock +51 -58
- data/app/assets/javascripts/rails_db/application.js +5 -21
- data/app/assets/javascripts/rails_db/{vendor/jquery.js → jquery.js} +0 -0
- data/app/assets/javascripts/rails_db/rails-ujs.js +685 -0
- data/app/assets/stylesheets/rails_db/{app.scss → app.css} +2 -2
- data/lib/rails_db.rb +0 -1
- data/lib/rails_db/engine.rb +2 -3
- data/lib/rails_db/version.rb +1 -1
- data/rails_db.gemspec +0 -2
- data/test/dummy/db/rails_db.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +52 -47
- data/test/standalone/Gemfile +0 -1
- data/test/standalone/Gemfile.lock +0 -5
- metadata +113 -167
- data/app/assets/images/rails_db/down_arrow.gif +0 -0
- data/app/assets/images/rails_db/up_arrow.gif +0 -0
- data/app/assets/javascripts/rails_db/foundation/foundation.abide.js +0 -426
- data/app/assets/javascripts/rails_db/foundation/foundation.accordion.js +0 -125
- data/app/assets/javascripts/rails_db/foundation/foundation.alert.js +0 -43
- data/app/assets/javascripts/rails_db/foundation/foundation.clearing.js +0 -586
- data/app/assets/javascripts/rails_db/foundation/foundation.dropdown.js +0 -468
- data/app/assets/javascripts/rails_db/foundation/foundation.equalizer.js +0 -104
- data/app/assets/javascripts/rails_db/foundation/foundation.interchange.js +0 -360
- data/app/assets/javascripts/rails_db/foundation/foundation.joyride.js +0 -935
- data/app/assets/javascripts/rails_db/foundation/foundation.js +0 -732
- data/app/assets/javascripts/rails_db/foundation/foundation.magellan.js +0 -214
- data/app/assets/javascripts/rails_db/foundation/foundation.offcanvas.js +0 -225
- data/app/assets/javascripts/rails_db/foundation/foundation.orbit.js +0 -476
- data/app/assets/javascripts/rails_db/foundation/foundation.reveal.js +0 -522
- data/app/assets/javascripts/rails_db/foundation/foundation.slider.js +0 -296
- data/app/assets/javascripts/rails_db/foundation/foundation.tab.js +0 -247
- data/app/assets/javascripts/rails_db/foundation/foundation.tooltip.js +0 -348
- data/app/assets/javascripts/rails_db/foundation/foundation.topbar.js +0 -458
- data/app/assets/javascripts/rails_db/vendor/fastclick.js +0 -8
- data/app/assets/javascripts/rails_db/vendor/jquery.cookie.js +0 -8
- data/app/assets/javascripts/rails_db/vendor/modernizr.js +0 -8
- data/app/assets/javascripts/rails_db/vendor/placeholder.js +0 -2
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/rails_db_dev.sqlite3 +0 -0
data/lib/rails_db.rb
CHANGED
data/lib/rails_db/engine.rb
CHANGED
@@ -3,9 +3,8 @@ module RailsDb
|
|
3
3
|
isolate_namespace RailsDb
|
4
4
|
config.autoload_paths += Dir["#{config.root}/lib"]
|
5
5
|
|
6
|
-
initializer '
|
7
|
-
app.config.assets.precompile += ['rails_db/
|
8
|
-
app.config.assets.precompile += ["codemirror*", "codemirror/**/*"]
|
6
|
+
initializer 'rails_db.assets_precompile', :group => :all do |app|
|
7
|
+
app.config.assets.precompile += ['rails_db/application.js', 'rails_db/application.css', 'rails_db/*.png']
|
9
8
|
end
|
10
9
|
|
11
10
|
initializer 'rails_db.helpers' do
|
data/lib/rails_db/version.rb
CHANGED
data/rails_db.gemspec
CHANGED
@@ -18,7 +18,6 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.executables = ["railsdb", "rails_db", 'runsql']
|
19
19
|
|
20
20
|
s.add_dependency 'rails', ">= 3.1.0"
|
21
|
-
s.add_dependency 'jquery-rails'
|
22
21
|
s.add_dependency 'codemirror-rails'
|
23
22
|
s.add_dependency 'terminal-table'
|
24
23
|
s.add_dependency 'simple_form'
|
@@ -28,7 +27,6 @@ Gem::Specification.new do |s|
|
|
28
27
|
else
|
29
28
|
s.add_dependency 'kaminari'
|
30
29
|
end
|
31
|
-
s.add_dependency 'sass'
|
32
30
|
|
33
31
|
s.add_development_dependency "launchy"
|
34
32
|
s.add_development_dependency "sqlite3"
|
Binary file
|
data/test/dummy/db/schema.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
# encoding: UTF-8
|
1
2
|
# This file is auto-generated from the current state of the database. Instead
|
2
3
|
# of editing this file, please use the migrations feature of Active Record to
|
3
4
|
# incrementally modify your database, and then regenerate this schema definition.
|
@@ -32,9 +33,10 @@ ActiveRecord::Schema.define(version: 20170126124628) do
|
|
32
33
|
t.text "message"
|
33
34
|
t.datetime "created_at", null: false
|
34
35
|
t.datetime "updated_at", null: false
|
35
|
-
t.index ["name", "email"], name: "index_contacts_on_name_and_email"
|
36
36
|
end
|
37
37
|
|
38
|
+
add_index "contacts", ["name", "email"], name: "index_contacts_on_name_and_email"
|
39
|
+
|
38
40
|
create_table "legacy_accounts", primary_key: "uuid", force: :cascade do |t|
|
39
41
|
t.string "name"
|
40
42
|
end
|
@@ -44,51 +46,52 @@ ActiveRecord::Schema.define(version: 20170126124628) do
|
|
44
46
|
t.integer "project_id"
|
45
47
|
t.datetime "created_at", null: false
|
46
48
|
t.datetime "updated_at", null: false
|
47
|
-
t.index ["project_id"], name: "index_payments_on_project_id"
|
48
49
|
end
|
49
50
|
|
51
|
+
add_index "payments", ["project_id"], name: "index_payments_on_project_id"
|
52
|
+
|
50
53
|
create_table "projects", force: :cascade do |t|
|
51
54
|
t.string "name"
|
52
|
-
t.string "
|
53
|
-
t.string "
|
54
|
-
t.string "
|
55
|
-
t.string "
|
56
|
-
t.string "
|
57
|
-
t.string "
|
58
|
-
t.string "
|
59
|
-
t.string "
|
60
|
-
t.string "
|
61
|
-
t.string "
|
62
|
-
t.string "
|
63
|
-
t.string "
|
64
|
-
t.string "
|
65
|
-
t.string "
|
66
|
-
t.string "
|
67
|
-
t.string "
|
68
|
-
t.string "
|
69
|
-
t.string "
|
70
|
-
t.string "
|
71
|
-
t.string "
|
72
|
-
t.integer "
|
73
|
-
t.integer "
|
74
|
-
t.integer "
|
75
|
-
t.integer "
|
76
|
-
t.integer "
|
77
|
-
t.integer "
|
78
|
-
t.integer "
|
79
|
-
t.integer "
|
80
|
-
t.integer "
|
81
|
-
t.integer "
|
82
|
-
t.integer "
|
83
|
-
t.integer "
|
84
|
-
t.integer "
|
85
|
-
t.integer "
|
86
|
-
t.integer "
|
87
|
-
t.integer "
|
88
|
-
t.integer "
|
89
|
-
t.integer "
|
90
|
-
t.integer "
|
91
|
-
t.integer "
|
55
|
+
t.string "description_492106"
|
56
|
+
t.string "description_200949"
|
57
|
+
t.string "description_180665"
|
58
|
+
t.string "description_806273"
|
59
|
+
t.string "description_93256"
|
60
|
+
t.string "description_191220"
|
61
|
+
t.string "description_147227"
|
62
|
+
t.string "description_18924"
|
63
|
+
t.string "description_280694"
|
64
|
+
t.string "description_398815"
|
65
|
+
t.string "description_552891"
|
66
|
+
t.string "description_30028"
|
67
|
+
t.string "description_492900"
|
68
|
+
t.string "description_925333"
|
69
|
+
t.string "description_418541"
|
70
|
+
t.string "description_703855"
|
71
|
+
t.string "description_25680"
|
72
|
+
t.string "description_273217"
|
73
|
+
t.string "description_235296"
|
74
|
+
t.string "description_398291"
|
75
|
+
t.integer "amount_723167"
|
76
|
+
t.integer "amount_973995"
|
77
|
+
t.integer "amount_10079"
|
78
|
+
t.integer "amount_478676"
|
79
|
+
t.integer "amount_293483"
|
80
|
+
t.integer "amount_99616"
|
81
|
+
t.integer "amount_449220"
|
82
|
+
t.integer "amount_715853"
|
83
|
+
t.integer "amount_235541"
|
84
|
+
t.integer "amount_427091"
|
85
|
+
t.integer "amount_782579"
|
86
|
+
t.integer "amount_358029"
|
87
|
+
t.integer "amount_930716"
|
88
|
+
t.integer "amount_27449"
|
89
|
+
t.integer "amount_935730"
|
90
|
+
t.integer "amount_545041"
|
91
|
+
t.integer "amount_81780"
|
92
|
+
t.integer "amount_206186"
|
93
|
+
t.integer "amount_68814"
|
94
|
+
t.integer "amount_962381"
|
92
95
|
t.datetime "created_at", null: false
|
93
96
|
t.datetime "updated_at", null: false
|
94
97
|
end
|
@@ -96,10 +99,11 @@ ActiveRecord::Schema.define(version: 20170126124628) do
|
|
96
99
|
create_table "projects_users", id: false, force: :cascade do |t|
|
97
100
|
t.integer "project_id"
|
98
101
|
t.integer "user_id"
|
99
|
-
t.index ["project_id"], name: "index_projects_users_on_project_id"
|
100
|
-
t.index ["user_id"], name: "index_projects_users_on_user_id"
|
101
102
|
end
|
102
103
|
|
104
|
+
add_index "projects_users", ["project_id"], name: "index_projects_users_on_project_id"
|
105
|
+
add_index "projects_users", ["user_id"], name: "index_projects_users_on_user_id"
|
106
|
+
|
103
107
|
create_table "users", force: :cascade do |t|
|
104
108
|
t.string "name"
|
105
109
|
t.integer "age"
|
@@ -111,9 +115,10 @@ ActiveRecord::Schema.define(version: 20170126124628) do
|
|
111
115
|
t.date "dob"
|
112
116
|
t.boolean "active", default: true
|
113
117
|
t.string "type"
|
114
|
-
t.index ["account_id"], name: "index_users_on_account_id"
|
115
|
-
t.index ["name"], name: "index_users_on_name"
|
116
|
-
t.index ["salary"], name: "index_users_on_salary"
|
117
118
|
end
|
118
119
|
|
120
|
+
add_index "users", ["account_id"], name: "index_users_on_account_id"
|
121
|
+
add_index "users", ["name"], name: "index_users_on_name"
|
122
|
+
add_index "users", ["salary"], name: "index_users_on_salary"
|
123
|
+
|
119
124
|
end
|
data/test/standalone/Gemfile
CHANGED
@@ -54,10 +54,6 @@ GEM
|
|
54
54
|
activesupport (>= 4.1.0)
|
55
55
|
htmlentities (4.3.4)
|
56
56
|
i18n (0.7.0)
|
57
|
-
jquery-rails (4.1.0)
|
58
|
-
rails-dom-testing (~> 1.0)
|
59
|
-
railties (>= 4.2.0)
|
60
|
-
thor (>= 0.14, < 2.0)
|
61
57
|
json (1.8.3)
|
62
58
|
kaminari (0.16.3)
|
63
59
|
actionpack (>= 3.0.0)
|
@@ -133,7 +129,6 @@ PLATFORMS
|
|
133
129
|
DEPENDENCIES
|
134
130
|
axlsx_rails
|
135
131
|
codemirror-rails
|
136
|
-
jquery-rails
|
137
132
|
kaminari
|
138
133
|
rails
|
139
134
|
ransack
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_db
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Igor Kasyanchuk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -24,20 +24,6 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 3.1.0
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: jquery-rails
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: codemirror-rails
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,20 +94,6 @@ dependencies:
|
|
108
94
|
- - ">="
|
109
95
|
- !ruby/object:Gem::Version
|
110
96
|
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: sass
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :runtime
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
97
|
- !ruby/object:Gem::Dependency
|
126
98
|
name: launchy
|
127
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -237,41 +209,19 @@ files:
|
|
237
209
|
- Rakefile
|
238
210
|
- app/assets/images/rails_db/data_table.png
|
239
211
|
- app/assets/images/rails_db/data_table_code.png
|
240
|
-
- app/assets/images/rails_db/down_arrow.gif
|
241
212
|
- app/assets/images/rails_db/logo.png
|
242
213
|
- app/assets/images/rails_db/logo_mini.png
|
243
214
|
- app/assets/images/rails_db/railsdb.png
|
244
215
|
- app/assets/images/rails_db/runsql.png
|
245
|
-
- app/assets/images/rails_db/up_arrow.gif
|
246
216
|
- app/assets/javascripts/rails_db/application.js
|
247
217
|
- app/assets/javascripts/rails_db/foundation.min.js
|
248
|
-
- app/assets/javascripts/rails_db/foundation/foundation.abide.js
|
249
|
-
- app/assets/javascripts/rails_db/foundation/foundation.accordion.js
|
250
|
-
- app/assets/javascripts/rails_db/foundation/foundation.alert.js
|
251
|
-
- app/assets/javascripts/rails_db/foundation/foundation.clearing.js
|
252
|
-
- app/assets/javascripts/rails_db/foundation/foundation.dropdown.js
|
253
|
-
- app/assets/javascripts/rails_db/foundation/foundation.equalizer.js
|
254
|
-
- app/assets/javascripts/rails_db/foundation/foundation.interchange.js
|
255
|
-
- app/assets/javascripts/rails_db/foundation/foundation.joyride.js
|
256
|
-
- app/assets/javascripts/rails_db/foundation/foundation.js
|
257
|
-
- app/assets/javascripts/rails_db/foundation/foundation.magellan.js
|
258
|
-
- app/assets/javascripts/rails_db/foundation/foundation.offcanvas.js
|
259
|
-
- app/assets/javascripts/rails_db/foundation/foundation.orbit.js
|
260
|
-
- app/assets/javascripts/rails_db/foundation/foundation.reveal.js
|
261
|
-
- app/assets/javascripts/rails_db/foundation/foundation.slider.js
|
262
|
-
- app/assets/javascripts/rails_db/foundation/foundation.tab.js
|
263
|
-
- app/assets/javascripts/rails_db/foundation/foundation.tooltip.js
|
264
|
-
- app/assets/javascripts/rails_db/foundation/foundation.topbar.js
|
265
218
|
- app/assets/javascripts/rails_db/jquery.cookie.js
|
219
|
+
- app/assets/javascripts/rails_db/jquery.js
|
220
|
+
- app/assets/javascripts/rails_db/rails-ujs.js
|
266
221
|
- app/assets/javascripts/rails_db/search.js
|
267
222
|
- app/assets/javascripts/rails_db/show_hide_columns.js
|
268
223
|
- app/assets/javascripts/rails_db/sticky.js
|
269
|
-
- app/assets/
|
270
|
-
- app/assets/javascripts/rails_db/vendor/jquery.cookie.js
|
271
|
-
- app/assets/javascripts/rails_db/vendor/jquery.js
|
272
|
-
- app/assets/javascripts/rails_db/vendor/modernizr.js
|
273
|
-
- app/assets/javascripts/rails_db/vendor/placeholder.js
|
274
|
-
- app/assets/stylesheets/rails_db/app.scss
|
224
|
+
- app/assets/stylesheets/rails_db/app.css
|
275
225
|
- app/assets/stylesheets/rails_db/application.css
|
276
226
|
- app/assets/stylesheets/rails_db/forms.css
|
277
227
|
- app/assets/stylesheets/rails_db/foundation.css
|
@@ -420,7 +370,6 @@ files:
|
|
420
370
|
- test/dummy/config/locales/en.yml
|
421
371
|
- test/dummy/config/routes.rb
|
422
372
|
- test/dummy/config/secrets.yml
|
423
|
-
- test/dummy/db/development.sqlite3
|
424
373
|
- test/dummy/db/migrate/20151013203739_create_users.rb
|
425
374
|
- test/dummy/db/migrate/20151013203757_create_comments.rb
|
426
375
|
- test/dummy/db/migrate/20151013204027_populate_data.rb
|
@@ -436,7 +385,6 @@ files:
|
|
436
385
|
- test/dummy/db/migrate/20151121125538_add_boolean_field_to_user.rb
|
437
386
|
- test/dummy/db/migrate/20170126124628_add_sti_model.rb
|
438
387
|
- test/dummy/db/rails_db.sqlite3
|
439
|
-
- test/dummy/db/rails_db_dev.sqlite3
|
440
388
|
- test/dummy/db/schema.rb
|
441
389
|
- test/dummy/public/404.html
|
442
390
|
- test/dummy/public/422.html
|
@@ -531,151 +479,149 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
531
479
|
version: '0'
|
532
480
|
requirements: []
|
533
481
|
rubyforge_project:
|
534
|
-
rubygems_version: 2.
|
482
|
+
rubygems_version: 2.5.2
|
535
483
|
signing_key:
|
536
484
|
specification_version: 4
|
537
485
|
summary: Inspect your Rails DB (table content viewer, execute sql queries, export
|
538
486
|
& import data
|
539
487
|
test_files:
|
540
|
-
- test/
|
488
|
+
- test/test_sql_mysql.sql
|
489
|
+
- test/sql_import_test.rb
|
490
|
+
- test/test_sql_postgres.sql
|
541
491
|
- test/database_test.rb
|
542
|
-
- test/
|
543
|
-
- test/
|
544
|
-
- test/
|
545
|
-
- test/
|
546
|
-
- test/
|
547
|
-
- test/
|
548
|
-
- test/
|
549
|
-
- test/
|
550
|
-
- test/
|
551
|
-
- test/
|
552
|
-
- test/
|
492
|
+
- test/standalone/Gemfile.lock
|
493
|
+
- test/standalone/app/helpers/application_helper.rb
|
494
|
+
- test/standalone/app/assets/javascripts/application.js
|
495
|
+
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff
|
496
|
+
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.ttf
|
497
|
+
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.svg
|
498
|
+
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.eot
|
499
|
+
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff2
|
500
|
+
- test/standalone/app/assets/stylesheets/bootstrap.min.css
|
501
|
+
- test/standalone/app/assets/stylesheets/bootstrap-theme.min.css
|
502
|
+
- test/standalone/app/assets/stylesheets/application.css
|
503
|
+
- test/standalone/app/views/home/index.html.erb
|
504
|
+
- test/standalone/app/views/layouts/application.html.erb
|
505
|
+
- test/standalone/app/controllers/application_controller.rb
|
506
|
+
- test/standalone/app/controllers/home_controller.rb
|
507
|
+
- test/standalone/public/404.html
|
508
|
+
- test/standalone/public/favicon.ico
|
509
|
+
- test/standalone/public/500.html
|
510
|
+
- test/standalone/public/422.html
|
511
|
+
- test/standalone/config/boot.rb
|
512
|
+
- test/standalone/config/database.yml
|
513
|
+
- test/standalone/config/application.rb
|
514
|
+
- test/standalone/config/locales/en.yml
|
515
|
+
- test/standalone/config/routes.rb
|
516
|
+
- test/standalone/config/environments/development.rb
|
517
|
+
- test/standalone/config/environments/test.rb
|
518
|
+
- test/standalone/config/environments/production.rb
|
519
|
+
- test/standalone/config/secrets.yml
|
520
|
+
- test/standalone/config/environment.rb
|
521
|
+
- test/standalone/config/initializers/session_store.rb
|
522
|
+
- test/standalone/config/initializers/cookies_serializer.rb
|
523
|
+
- test/standalone/config/initializers/inflections.rb
|
524
|
+
- test/standalone/config/initializers/backtrace_silencers.rb
|
525
|
+
- test/standalone/config/initializers/mime_types.rb
|
526
|
+
- test/standalone/config/initializers/assets.rb
|
527
|
+
- test/standalone/config/initializers/rails_db.rb
|
528
|
+
- test/standalone/config/initializers/quiet_assets.rb
|
529
|
+
- test/standalone/config/initializers/wrap_parameters.rb
|
530
|
+
- test/standalone/config/initializers/filter_parameter_logging.rb
|
531
|
+
- test/standalone/Rakefile
|
532
|
+
- test/standalone/config.ru
|
533
|
+
- test/standalone/bin/rails
|
534
|
+
- test/standalone/bin/rake
|
535
|
+
- test/standalone/bin/bundle
|
536
|
+
- test/standalone/bin/setup
|
537
|
+
- test/standalone/Gemfile
|
538
|
+
- test/standalone/README.rdoc
|
539
|
+
- test/test_helper.rb
|
553
540
|
- test/dummy/app/helpers/application_helper.rb
|
554
|
-
- test/dummy/app/models/
|
555
|
-
- test/dummy/app/models/comment.rb
|
541
|
+
- test/dummy/app/models/user.rb
|
556
542
|
- test/dummy/app/models/contact.rb
|
557
543
|
- test/dummy/app/models/customer.rb
|
558
|
-
- test/dummy/app/models/legacy_account.rb
|
559
|
-
- test/dummy/app/models/payment.rb
|
560
544
|
- test/dummy/app/models/populate.rb
|
545
|
+
- test/dummy/app/models/payment.rb
|
546
|
+
- test/dummy/app/models/legacy_account.rb
|
561
547
|
- test/dummy/app/models/project.rb
|
562
|
-
- test/dummy/app/models/
|
548
|
+
- test/dummy/app/models/account.rb
|
549
|
+
- test/dummy/app/models/comment.rb
|
550
|
+
- test/dummy/app/assets/javascripts/application.js
|
551
|
+
- test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff
|
552
|
+
- test/dummy/app/assets/fonts/glyphicons-halflings-regular.ttf
|
553
|
+
- test/dummy/app/assets/fonts/glyphicons-halflings-regular.svg
|
554
|
+
- test/dummy/app/assets/fonts/glyphicons-halflings-regular.eot
|
555
|
+
- test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff2
|
556
|
+
- test/dummy/app/assets/stylesheets/bootstrap.min.css
|
557
|
+
- test/dummy/app/assets/stylesheets/bootstrap-theme.min.css
|
558
|
+
- test/dummy/app/assets/stylesheets/application.css
|
563
559
|
- test/dummy/app/views/home/index.html.erb
|
564
560
|
- test/dummy/app/views/layouts/application.html.erb
|
565
|
-
- test/dummy/
|
566
|
-
- test/dummy/
|
567
|
-
- test/dummy/
|
568
|
-
- test/dummy/
|
569
|
-
- test/dummy/
|
561
|
+
- test/dummy/app/controllers/application_controller.rb
|
562
|
+
- test/dummy/app/controllers/home_controller.rb
|
563
|
+
- test/dummy/public/404.html
|
564
|
+
- test/dummy/public/favicon.ico
|
565
|
+
- test/dummy/public/500.html
|
566
|
+
- test/dummy/public/422.html
|
570
567
|
- test/dummy/config/boot.rb
|
571
568
|
- test/dummy/config/database.yml
|
572
|
-
- test/dummy/config/
|
569
|
+
- test/dummy/config/application.rb
|
570
|
+
- test/dummy/config/locales/en.yml
|
571
|
+
- test/dummy/config/routes.rb
|
573
572
|
- test/dummy/config/environments/development.rb
|
574
|
-
- test/dummy/config/environments/production.rb
|
575
573
|
- test/dummy/config/environments/test.rb
|
576
|
-
- test/dummy/config/
|
577
|
-
- test/dummy/config/
|
574
|
+
- test/dummy/config/environments/production.rb
|
575
|
+
- test/dummy/config/secrets.yml
|
576
|
+
- test/dummy/config/environment.rb
|
577
|
+
- test/dummy/config/initializers/session_store.rb
|
578
578
|
- test/dummy/config/initializers/cookies_serializer.rb
|
579
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
580
579
|
- test/dummy/config/initializers/inflections.rb
|
580
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
581
581
|
- test/dummy/config/initializers/mime_types.rb
|
582
|
+
- test/dummy/config/initializers/assets.rb
|
582
583
|
- test/dummy/config/initializers/rails_db.rb
|
583
|
-
- test/dummy/config/initializers/session_store.rb
|
584
584
|
- test/dummy/config/initializers/wrap_parameters.rb
|
585
|
-
- test/dummy/config/
|
586
|
-
- test/dummy/
|
587
|
-
- test/dummy/
|
588
|
-
- test/dummy/
|
589
|
-
- test/dummy/db/development.sqlite3
|
590
|
-
- test/dummy/db/migrate/20151013203739_create_users.rb
|
591
|
-
- test/dummy/db/migrate/20151013203757_create_comments.rb
|
592
|
-
- test/dummy/db/migrate/20151013204027_populate_data.rb
|
593
|
-
- test/dummy/db/migrate/20151014074454_create_accounts.rb
|
594
|
-
- test/dummy/db/migrate/20151014074655_create_contacts.rb
|
595
|
-
- test/dummy/db/migrate/20151014152932_add_bd.rb
|
585
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
586
|
+
- test/dummy/Rakefile
|
587
|
+
- test/dummy/db/schema.rb
|
588
|
+
- test/dummy/db/rails_db.sqlite3
|
596
589
|
- test/dummy/db/migrate/20151014183823_create_projects.rb
|
597
|
-
- test/dummy/db/migrate/
|
590
|
+
- test/dummy/db/migrate/20170126124628_add_sti_model.rb
|
591
|
+
- test/dummy/db/migrate/20151014074454_create_accounts.rb
|
598
592
|
- test/dummy/db/migrate/20151015145740_populate_db.rb
|
593
|
+
- test/dummy/db/migrate/20151014184243_add_long_text.rb
|
594
|
+
- test/dummy/db/migrate/20151013204027_populate_data.rb
|
595
|
+
- test/dummy/db/migrate/20151014152932_add_bd.rb
|
596
|
+
- test/dummy/db/migrate/20151013203739_create_users.rb
|
597
|
+
- test/dummy/db/migrate/20151013203757_create_comments.rb
|
599
598
|
- test/dummy/db/migrate/20151027192250_create_payments.rb
|
600
|
-
- test/dummy/db/migrate/20151027223149_add_non_pk_table.rb
|
601
599
|
- test/dummy/db/migrate/20151028191429_create_legacy_accounts.rb
|
600
|
+
- test/dummy/db/migrate/20151027223149_add_non_pk_table.rb
|
601
|
+
- test/dummy/db/migrate/20151014074655_create_contacts.rb
|
602
602
|
- test/dummy/db/migrate/20151121125538_add_boolean_field_to_user.rb
|
603
|
-
- test/dummy/
|
604
|
-
- test/dummy/
|
605
|
-
- test/dummy/
|
606
|
-
- test/dummy/
|
607
|
-
- test/dummy/
|
608
|
-
- test/dummy/
|
609
|
-
- test/dummy/public/500.html
|
610
|
-
- test/dummy/public/favicon.ico
|
611
|
-
- test/dummy/Rakefile
|
612
|
-
- test/dummy/README.rdoc
|
603
|
+
- test/dummy/config.ru
|
604
|
+
- test/dummy/bin/rails
|
605
|
+
- test/dummy/bin/rake
|
606
|
+
- test/dummy/bin/bundle
|
607
|
+
- test/dummy/bin/setup
|
608
|
+
- test/dummy/test/fixtures/users.yml
|
613
609
|
- test/dummy/test/fixtures/accounts.yml
|
610
|
+
- test/dummy/test/fixtures/projects.yml
|
614
611
|
- test/dummy/test/fixtures/comments.yml
|
615
|
-
- test/dummy/test/fixtures/contacts.yml
|
616
612
|
- test/dummy/test/fixtures/legacy_accounts.yml
|
617
|
-
- test/dummy/test/fixtures/
|
618
|
-
- test/dummy/test/fixtures/users.yml
|
619
|
-
- test/dummy/test/models/account_test.rb
|
613
|
+
- test/dummy/test/fixtures/contacts.yml
|
620
614
|
- test/dummy/test/models/comment_test.rb
|
615
|
+
- test/dummy/test/models/account_test.rb
|
621
616
|
- test/dummy/test/models/contact_test.rb
|
622
617
|
- test/dummy/test/models/legacy_account_test.rb
|
623
618
|
- test/dummy/test/models/project_test.rb
|
624
619
|
- test/dummy/test/models/user_test.rb
|
625
|
-
- test/
|
626
|
-
- test/rails_db_test.rb
|
627
|
-
- test/sql_import_test.rb
|
620
|
+
- test/dummy/README.rdoc
|
628
621
|
- test/sql_query_test.rb
|
629
|
-
- test/
|
630
|
-
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.svg
|
631
|
-
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.ttf
|
632
|
-
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff
|
633
|
-
- test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff2
|
634
|
-
- test/standalone/app/assets/javascripts/application.js
|
635
|
-
- test/standalone/app/assets/stylesheets/application.css
|
636
|
-
- test/standalone/app/assets/stylesheets/bootstrap-theme.min.css
|
637
|
-
- test/standalone/app/assets/stylesheets/bootstrap.min.css
|
638
|
-
- test/standalone/app/controllers/application_controller.rb
|
639
|
-
- test/standalone/app/controllers/home_controller.rb
|
640
|
-
- test/standalone/app/helpers/application_helper.rb
|
641
|
-
- test/standalone/app/views/home/index.html.erb
|
642
|
-
- test/standalone/app/views/layouts/application.html.erb
|
643
|
-
- test/standalone/bin/bundle
|
644
|
-
- test/standalone/bin/rails
|
645
|
-
- test/standalone/bin/rake
|
646
|
-
- test/standalone/bin/setup
|
647
|
-
- test/standalone/config/application.rb
|
648
|
-
- test/standalone/config/boot.rb
|
649
|
-
- test/standalone/config/database.yml
|
650
|
-
- test/standalone/config/environment.rb
|
651
|
-
- test/standalone/config/environments/development.rb
|
652
|
-
- test/standalone/config/environments/production.rb
|
653
|
-
- test/standalone/config/environments/test.rb
|
654
|
-
- test/standalone/config/initializers/assets.rb
|
655
|
-
- test/standalone/config/initializers/backtrace_silencers.rb
|
656
|
-
- test/standalone/config/initializers/cookies_serializer.rb
|
657
|
-
- test/standalone/config/initializers/filter_parameter_logging.rb
|
658
|
-
- test/standalone/config/initializers/inflections.rb
|
659
|
-
- test/standalone/config/initializers/mime_types.rb
|
660
|
-
- test/standalone/config/initializers/quiet_assets.rb
|
661
|
-
- test/standalone/config/initializers/rails_db.rb
|
662
|
-
- test/standalone/config/initializers/session_store.rb
|
663
|
-
- test/standalone/config/initializers/wrap_parameters.rb
|
664
|
-
- test/standalone/config/locales/en.yml
|
665
|
-
- test/standalone/config/routes.rb
|
666
|
-
- test/standalone/config/secrets.yml
|
667
|
-
- test/standalone/config.ru
|
668
|
-
- test/standalone/Gemfile
|
669
|
-
- test/standalone/Gemfile.lock
|
670
|
-
- test/standalone/public/404.html
|
671
|
-
- test/standalone/public/422.html
|
672
|
-
- test/standalone/public/500.html
|
673
|
-
- test/standalone/public/favicon.ico
|
674
|
-
- test/standalone/Rakefile
|
675
|
-
- test/standalone/README.rdoc
|
676
|
-
- test/table_test.rb
|
622
|
+
- test/dashboard_controller_test.rb
|
677
623
|
- test/tables_helper_test.rb
|
678
|
-
- test/test_helper.rb
|
679
|
-
- test/test_sql_mysql.sql
|
680
|
-
- test/test_sql_postgres.sql
|
681
624
|
- test/test_sql_sqlite.sql
|
625
|
+
- test/rails_db_test.rb
|
626
|
+
- test/table_test.rb
|
627
|
+
- test/rails_db_data_table_helper_test.rb
|