visual_migrate 4.0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (207) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +1 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/images/visual_migrate/bg_pagetop.gif +0 -0
  6. data/app/assets/javascripts/common.js +21 -0
  7. data/app/assets/javascripts/jquery.cookie.js +95 -0
  8. data/app/assets/javascripts/jquery.js +4 -0
  9. data/app/assets/javascripts/visual_migrate/application.js +13 -0
  10. data/app/assets/javascripts/visual_migrate/dialog.js +2 -0
  11. data/app/assets/javascripts/visual_migrate/index.js +2 -0
  12. data/app/assets/javascripts/vm-application.js +35 -0
  13. data/app/assets/stylesheets/visual_migrate/application.css +13 -0
  14. data/app/assets/stylesheets/visual_migrate/dialog.css +4 -0
  15. data/app/assets/stylesheets/visual_migrate/index.css +4 -0
  16. data/app/assets/stylesheets/vm-application.css +40 -0
  17. data/app/assets/stylesheets/vm-common.css +335 -0
  18. data/app/assets/template/sim003_blue.zip +0 -0
  19. data/app/assets/template/sim003_blue/src/css/common.css +329 -0
  20. data/app/assets/template/sim003_blue/src/images/bg_pagetop.gif +0 -0
  21. data/app/assets/template/sim003_blue/src/index.html +153 -0
  22. data/app/assets/template/sim003_blue/src/js/common.js +21 -0
  23. data/app/assets/template/sim003_blue/src/js/jquery.js +4 -0
  24. data/app/controllers/visual_migrate/application_controller.rb +5 -0
  25. data/app/controllers/visual_migrate/dialog_controller.rb +9 -0
  26. data/app/controllers/visual_migrate/index_controller.rb +174 -0
  27. data/app/helpers/visual_migrate/application_helper.rb +97 -0
  28. data/app/helpers/visual_migrate/dialog_helper.rb +4 -0
  29. data/app/helpers/visual_migrate/index_helper.rb +4 -0
  30. data/app/models/schema_migration.rb +2 -0
  31. data/app/views/layouts/visual_migrate/_columns.html.erb +133 -0
  32. data/app/views/layouts/visual_migrate/_func_add_column.html.erb +24 -0
  33. data/app/views/layouts/visual_migrate/_func_add_index.html.erb +20 -0
  34. data/app/views/layouts/visual_migrate/_func_add_timestamps.html.erb +8 -0
  35. data/app/views/layouts/visual_migrate/_func_change_column.html.erb +24 -0
  36. data/app/views/layouts/visual_migrate/_func_change_column_default.html.erb +12 -0
  37. data/app/views/layouts/visual_migrate/_func_create_table.html.erb +33 -0
  38. data/app/views/layouts/visual_migrate/_func_drop_table.html.erb +8 -0
  39. data/app/views/layouts/visual_migrate/_func_remove_column.html.erb +9 -0
  40. data/app/views/layouts/visual_migrate/_func_remove_index.html.erb +17 -0
  41. data/app/views/layouts/visual_migrate/_func_remove_timestamps.html.erb +8 -0
  42. data/app/views/layouts/visual_migrate/_func_rename_column.html.erb +12 -0
  43. data/app/views/layouts/visual_migrate/_func_rename_index.html.erb +10 -0
  44. data/app/views/layouts/visual_migrate/_func_rename_table.html.erb +9 -0
  45. data/app/views/layouts/visual_migrate/_migration_class.html.erb +20 -0
  46. data/app/views/layouts/visual_migrate/_migration_method.html.erb +40 -0
  47. data/app/views/layouts/visual_migrate/application.html.erb +68 -0
  48. data/app/views/layouts/visual_migrate/dialog.html.erb +28 -0
  49. data/app/views/visual_migrate/dialog/add_new_func.html.erb +45 -0
  50. data/app/views/visual_migrate/index/_section_migrations.html.erb +19 -0
  51. data/app/views/visual_migrate/index/_section_tables.html.erb +10 -0
  52. data/app/views/visual_migrate/index/command_line.html.erb +34 -0
  53. data/app/views/visual_migrate/index/direct_edit.html.erb +9 -0
  54. data/app/views/visual_migrate/index/edit_migration.html.erb +15 -0
  55. data/app/views/visual_migrate/index/modify_table.html.erb +1 -0
  56. data/config/routes.rb +70 -0
  57. data/lib/class_filter.rb +126 -0
  58. data/lib/func_filter.rb +560 -0
  59. data/lib/method_filter.rb +104 -0
  60. data/lib/migration_defs.rb +626 -0
  61. data/lib/tasks/visual-migrate_tasks.rake +4 -0
  62. data/lib/tasks/visual_migrate_tasks.rake +4 -0
  63. data/lib/visual_migrate.rb +6 -0
  64. data/lib/visual_migrate/activerecord.rb +23 -0
  65. data/lib/visual_migrate/engine.rb +5 -0
  66. data/lib/visual_migrate/migration.rb +15 -0
  67. data/lib/visual_migrate/version.rb +3 -0
  68. data/lib/visual_migrate_ripper.rb +157 -0
  69. data/test/dummy/Gemfile +84 -0
  70. data/test/dummy/Gemfile.lock +218 -0
  71. data/test/dummy/README.rdoc +28 -0
  72. data/test/dummy/Rakefile +6 -0
  73. data/test/dummy/app/assets/javascripts/application.js +13 -0
  74. data/test/dummy/app/assets/javascripts/index.js +2 -0
  75. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  76. data/test/dummy/app/assets/stylesheets/index.css +4 -0
  77. data/test/dummy/app/controllers/application_controller.rb +5 -0
  78. data/test/dummy/app/controllers/index_controller.rb +9 -0
  79. data/test/dummy/app/helpers/application_helper.rb +2 -0
  80. data/test/dummy/app/helpers/index_helper.rb +2 -0
  81. data/test/dummy/app/models/test_table.rb +2 -0
  82. data/test/dummy/app/views/index/index.html.erb +23 -0
  83. data/test/dummy/app/views/layouts/application.html.erb +43 -0
  84. data/test/dummy/bin/bundle +3 -0
  85. data/test/dummy/bin/rails +4 -0
  86. data/test/dummy/bin/rake +4 -0
  87. data/test/dummy/config.ru +4 -0
  88. data/test/dummy/config/application.rb +23 -0
  89. data/test/dummy/config/boot.rb +5 -0
  90. data/test/dummy/config/database.yml +30 -0
  91. data/test/dummy/config/environment.rb +5 -0
  92. data/test/dummy/config/environments/development.rb +29 -0
  93. data/test/dummy/config/environments/production.rb +80 -0
  94. data/test/dummy/config/environments/test.rb +36 -0
  95. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  96. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  97. data/test/dummy/config/initializers/inflections.rb +16 -0
  98. data/test/dummy/config/initializers/mime_types.rb +5 -0
  99. data/test/dummy/config/initializers/secret_token.rb +12 -0
  100. data/test/dummy/config/initializers/session_store.rb +3 -0
  101. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/test/dummy/config/locales/en.yml +23 -0
  103. data/test/dummy/config/routes.rb +6 -0
  104. data/test/dummy/db/development.sqlite3 +0 -0
  105. data/test/dummy/db/migrate/20131006135044_create_test_tables.rb +9 -0
  106. data/test/dummy/db/migrate/20131007030825_add_column_test_table.rb +13 -0
  107. data/test/dummy/db/migrate/20131026214458_rename_column_test_table.rb +5 -0
  108. data/test/dummy/db/migrate/20131030105601_change_column_test.rb +10 -0
  109. data/test/dummy/db/migrate/20131104225745_index_test.rb +9 -0
  110. data/test/dummy/db/migrate/20131105025821_rename_index_test.rb +5 -0
  111. data/test/dummy/db/migrate/20131105042853_remove_timestamps_test.rb +9 -0
  112. data/test/dummy/db/schema.rb +28 -0
  113. data/test/dummy/db/seeds.rb +20 -0
  114. data/test/dummy/db/test.sqlite3 +0 -0
  115. data/test/dummy/log/development.log +90374 -0
  116. data/test/dummy/log/production.log +329 -0
  117. data/test/dummy/log/test.log +489 -0
  118. data/test/dummy/public/404.html +58 -0
  119. data/test/dummy/public/422.html +58 -0
  120. data/test/dummy/public/500.html +57 -0
  121. data/test/dummy/public/favicon.ico +0 -0
  122. data/test/dummy/public/index.html.bak +38 -0
  123. data/test/dummy/spec/controllers/index_controller_spec.rb +19 -0
  124. data/test/dummy/spec/spec_helper.rb +46 -0
  125. data/test/dummy/spec/views/index/index.html.erb_spec.rb +17 -0
  126. data/test/dummy/test/controllers/index_controller_test.rb +7 -0
  127. data/test/dummy/test/fixtures/test_tables.yml +11 -0
  128. data/test/dummy/test/helpers/index_helper_test.rb +4 -0
  129. data/test/dummy/test/models/test_table_test.rb +7 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/021fe5e1eadff30885806b7245f7e66e +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/0a9126be05e74d1b89f024c687b7dbfd +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/0b682b760de6f7c47a7236f024fee55d +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/0caf4a7a233e329f7d3bfe3fc2f37910 +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/0e059cd92931990c10b6c5b78014ec92 +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/178af67c2277a751289e81fc2f96dc7d +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/18650e945a1a2ad87b3d8997d1ccac10 +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/19bf9cd3f01562cdecb4b5c825c8f36d +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/1b5f6c8780c3fcb34d2bbbabe38c3d94 +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/1df2ccc1ade2cfe4a9d0ce8b0ec2dadf +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/272853fd0642f08e38174a609a2be457 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/2aff43fdd4d59cb6a75288268ec363ee +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/2c853768baf811357d81d41bdfd05dcf +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/314d48e543146f617c4d3439a4d8d40d +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/320853225bbf3512349dc1ef4ea80874 +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/32f1a742d35f7250e984b1de0554a894 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/3807e3adca7677de6842a8048ad6d83b +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/42ad84505ad8dfc0a4a724e8c889c607 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/46c5c46e37f5a22449050d7fc6f1dc26 +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/4fbe2f2c44de1e405b3562e4935176b9 +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/52d191f68c69ae795e8da63ef51ca640 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/54cf088ee215412d3800d9b1e0263c30 +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/55165e8d7dcda66caf51df6c6417142d +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/576fe10a40538bd3999a2b1b3fe334d1 +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/5793e837a2934ce3b84aac8785a874ce +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/5900a8937fa5118d2a6ee8289614c854 +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/5a9053557c1035de31eb2162db5b9d34 +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/5df80a6ab7f25724f11ce3179173ad60 +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/6373000f4849668f51493aaf8503c8e8 +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/65048e3e4fd096e06f7ca69a5af7ab9f +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/6bb983076781d92edbb1da256023c14b +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/6dfaf2d0d571c61e96bce5377fcddf7f +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/6efc50a7f372f50e09a67daa7ac00940 +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/6f7dfedc6e14ea8772e0284497539f90 +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/70f64d1c4421c935f01a8d5aa647d792 +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/7999e525c88173c1beb785f002effc1d +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/7c188f2b1cb38e1b55dc8a8bb8785fe8 +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/7d48e39953ffcdd70751e98d08d1282c +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/7ddca3ef38a810d93ddc026ee5fa7959 +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/7fecd8a0b0c56f928c31450f839c4731 +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/842d637730ce4255c6beacff60b80157 +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/89cd476f554d26de50608ac9ce6d0606 +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/9519989fc45811670fa6b1184fedecc7 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/99cdbaecd1b34008d0853764ec707246 +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/a093237e72888c88a730f537a544e03b +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/a7c148cd78906c44016fdeb236569b5b +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/a83bebd10c561b2264affb4ed6a9f83b +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/b3ed09e62124bd9cf5f7a1ac14298d4f +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/be45f47d31b8e7fd54a0b6087eeaf5de +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/c00bfe3da0096cbd0434a6c66262fe23 +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/c78109332f6461183a94718da0068da6 +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/cee8c6b09c33d2b276753e959712724e +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/d08ae02c560f15a5cb4d0447b0da29ad +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/d990155237ca59ccb96cf2253f8059ae +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/df600f50f002512c95d93bcfbab891ed +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/e2a3afc837465539886843291aedd0f3 +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/eb7b0ec5bff36142ba070d1a39e194b1 +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/f3aee0380718ef20b2e587a842ce697e +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/f408c68444462a9ae2effa5230b43edf +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/f898358aceb33227eb4403237acca034 +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/fc7201c6cbef32453aa4175c520c8eae +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/fca81105f7109a6a96f05aedd0f1b883 +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/fdd7a6a4d56761d6463b3c34768fbc78 +0 -0
  199. data/test/dummy/tmp/restart.txt +0 -0
  200. data/test/dummy/tmp/visual-migrate_tmp.rb +5 -0
  201. data/test/dummy/tmp/visual_migrate_tmp.rb +10 -0
  202. data/test/fixtures/visual_migrate/schema_migrations.yml +11 -0
  203. data/test/integration/navigation_test.rb +10 -0
  204. data/test/models/visual_migrate/schema_migration_test.rb +9 -0
  205. data/test/test_helper.rb +15 -0
  206. data/test/visual_migrate_test.rb +7 -0
  207. metadata +487 -0
File without changes
@@ -0,0 +1,5 @@
1
+ class AddColumnTestTable < ActiveRecord::Migration
2
+ def change
3
+ # do nothing
4
+ end
5
+ end
@@ -0,0 +1,10 @@
1
+ class ChangeColumnTest < ActiveRecord::Migration
2
+ def up
3
+ change_column_default(:test_tables, :id, nil)
4
+ change_column(:test_tables, :id, :text, :limit => 32, :null => (false))
5
+ end
6
+
7
+ def down
8
+ change_column(:test_tables, :id, :string, :limit => 16, :default => "xyz", :null => (false))
9
+ end
10
+ end
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module VisualMigrate
4
+ class SchemaMigrationTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class VisualMigrateTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, VisualMigrate
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,487 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: visual_migrate
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Jun'ya Shimoda(JironBach)
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: ruby_parser
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
+ - !ruby/object:Gem::Dependency
42
+ name: file-tail
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sourcify
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: ruby2ruby
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jquery-ui-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: systemu
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: Brings easy way to edit migration files of Ruby on Rails.
112
+ email:
113
+ - jironbach@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - app/assets/images/visual_migrate/bg_pagetop.gif
119
+ - app/assets/javascripts/common.js
120
+ - app/assets/javascripts/jquery.cookie.js
121
+ - app/assets/javascripts/jquery.js
122
+ - app/assets/javascripts/visual_migrate/application.js
123
+ - app/assets/javascripts/visual_migrate/dialog.js
124
+ - app/assets/javascripts/visual_migrate/index.js
125
+ - app/assets/javascripts/vm-application.js
126
+ - app/assets/stylesheets/visual_migrate/application.css
127
+ - app/assets/stylesheets/visual_migrate/dialog.css
128
+ - app/assets/stylesheets/visual_migrate/index.css
129
+ - app/assets/stylesheets/vm-application.css
130
+ - app/assets/stylesheets/vm-common.css
131
+ - app/assets/template/sim003_blue/src/css/common.css
132
+ - app/assets/template/sim003_blue/src/images/bg_pagetop.gif
133
+ - app/assets/template/sim003_blue/src/index.html
134
+ - app/assets/template/sim003_blue/src/js/common.js
135
+ - app/assets/template/sim003_blue/src/js/jquery.js
136
+ - app/assets/template/sim003_blue.zip
137
+ - app/controllers/visual_migrate/application_controller.rb
138
+ - app/controllers/visual_migrate/dialog_controller.rb
139
+ - app/controllers/visual_migrate/index_controller.rb
140
+ - app/helpers/visual_migrate/application_helper.rb
141
+ - app/helpers/visual_migrate/dialog_helper.rb
142
+ - app/helpers/visual_migrate/index_helper.rb
143
+ - app/models/schema_migration.rb
144
+ - app/views/layouts/visual_migrate/_columns.html.erb
145
+ - app/views/layouts/visual_migrate/_func_add_column.html.erb
146
+ - app/views/layouts/visual_migrate/_func_add_index.html.erb
147
+ - app/views/layouts/visual_migrate/_func_add_timestamps.html.erb
148
+ - app/views/layouts/visual_migrate/_func_change_column.html.erb
149
+ - app/views/layouts/visual_migrate/_func_change_column_default.html.erb
150
+ - app/views/layouts/visual_migrate/_func_create_table.html.erb
151
+ - app/views/layouts/visual_migrate/_func_drop_table.html.erb
152
+ - app/views/layouts/visual_migrate/_func_remove_column.html.erb
153
+ - app/views/layouts/visual_migrate/_func_remove_index.html.erb
154
+ - app/views/layouts/visual_migrate/_func_remove_timestamps.html.erb
155
+ - app/views/layouts/visual_migrate/_func_rename_column.html.erb
156
+ - app/views/layouts/visual_migrate/_func_rename_index.html.erb
157
+ - app/views/layouts/visual_migrate/_func_rename_table.html.erb
158
+ - app/views/layouts/visual_migrate/_migration_class.html.erb
159
+ - app/views/layouts/visual_migrate/_migration_method.html.erb
160
+ - app/views/layouts/visual_migrate/application.html.erb
161
+ - app/views/layouts/visual_migrate/dialog.html.erb
162
+ - app/views/visual_migrate/dialog/add_new_func.html.erb
163
+ - app/views/visual_migrate/index/_section_migrations.html.erb
164
+ - app/views/visual_migrate/index/_section_tables.html.erb
165
+ - app/views/visual_migrate/index/command_line.html.erb
166
+ - app/views/visual_migrate/index/direct_edit.html.erb
167
+ - app/views/visual_migrate/index/edit_migration.html.erb
168
+ - app/views/visual_migrate/index/modify_table.html.erb
169
+ - config/routes.rb
170
+ - lib/class_filter.rb
171
+ - lib/func_filter.rb
172
+ - lib/method_filter.rb
173
+ - lib/migration_defs.rb
174
+ - lib/tasks/visual-migrate_tasks.rake
175
+ - lib/tasks/visual_migrate_tasks.rake
176
+ - lib/visual_migrate/activerecord.rb
177
+ - lib/visual_migrate/engine.rb
178
+ - lib/visual_migrate/migration.rb
179
+ - lib/visual_migrate/version.rb
180
+ - lib/visual_migrate.rb
181
+ - lib/visual_migrate_ripper.rb
182
+ - MIT-LICENSE
183
+ - Rakefile
184
+ - README.rdoc
185
+ - test/dummy/app/assets/javascripts/application.js
186
+ - test/dummy/app/assets/javascripts/index.js
187
+ - test/dummy/app/assets/stylesheets/application.css
188
+ - test/dummy/app/assets/stylesheets/index.css
189
+ - test/dummy/app/controllers/application_controller.rb
190
+ - test/dummy/app/controllers/index_controller.rb
191
+ - test/dummy/app/helpers/application_helper.rb
192
+ - test/dummy/app/helpers/index_helper.rb
193
+ - test/dummy/app/models/test_table.rb
194
+ - test/dummy/app/views/index/index.html.erb
195
+ - test/dummy/app/views/layouts/application.html.erb
196
+ - test/dummy/bin/bundle
197
+ - test/dummy/bin/rails
198
+ - test/dummy/bin/rake
199
+ - test/dummy/config/application.rb
200
+ - test/dummy/config/boot.rb
201
+ - test/dummy/config/database.yml
202
+ - test/dummy/config/environment.rb
203
+ - test/dummy/config/environments/development.rb
204
+ - test/dummy/config/environments/production.rb
205
+ - test/dummy/config/environments/test.rb
206
+ - test/dummy/config/initializers/backtrace_silencers.rb
207
+ - test/dummy/config/initializers/filter_parameter_logging.rb
208
+ - test/dummy/config/initializers/inflections.rb
209
+ - test/dummy/config/initializers/mime_types.rb
210
+ - test/dummy/config/initializers/secret_token.rb
211
+ - test/dummy/config/initializers/session_store.rb
212
+ - test/dummy/config/initializers/wrap_parameters.rb
213
+ - test/dummy/config/locales/en.yml
214
+ - test/dummy/config/routes.rb
215
+ - test/dummy/config.ru
216
+ - test/dummy/db/development.sqlite3
217
+ - test/dummy/db/migrate/20131006135044_create_test_tables.rb
218
+ - test/dummy/db/migrate/20131007030825_add_column_test_table.rb
219
+ - test/dummy/db/migrate/20131026214458_rename_column_test_table.rb
220
+ - test/dummy/db/migrate/20131030105601_change_column_test.rb
221
+ - test/dummy/db/migrate/20131104225745_index_test.rb
222
+ - test/dummy/db/migrate/20131105025821_rename_index_test.rb
223
+ - test/dummy/db/migrate/20131105042853_remove_timestamps_test.rb
224
+ - test/dummy/db/schema.rb
225
+ - test/dummy/db/seeds.rb
226
+ - test/dummy/db/test.sqlite3
227
+ - test/dummy/Gemfile
228
+ - test/dummy/Gemfile.lock
229
+ - test/dummy/log/development.log
230
+ - test/dummy/log/production.log
231
+ - test/dummy/log/test.log
232
+ - test/dummy/public/404.html
233
+ - test/dummy/public/422.html
234
+ - test/dummy/public/500.html
235
+ - test/dummy/public/favicon.ico
236
+ - test/dummy/public/index.html.bak
237
+ - test/dummy/Rakefile
238
+ - test/dummy/README.rdoc
239
+ - test/dummy/spec/controllers/index_controller_spec.rb
240
+ - test/dummy/spec/spec_helper.rb
241
+ - test/dummy/spec/views/index/index.html.erb_spec.rb
242
+ - test/dummy/test/controllers/index_controller_test.rb
243
+ - test/dummy/test/fixtures/test_tables.yml
244
+ - test/dummy/test/helpers/index_helper_test.rb
245
+ - test/dummy/test/models/test_table_test.rb
246
+ - test/dummy/tmp/cache/assets/development/sprockets/021fe5e1eadff30885806b7245f7e66e
247
+ - test/dummy/tmp/cache/assets/development/sprockets/0a9126be05e74d1b89f024c687b7dbfd
248
+ - test/dummy/tmp/cache/assets/development/sprockets/0b682b760de6f7c47a7236f024fee55d
249
+ - test/dummy/tmp/cache/assets/development/sprockets/0caf4a7a233e329f7d3bfe3fc2f37910
250
+ - test/dummy/tmp/cache/assets/development/sprockets/0e059cd92931990c10b6c5b78014ec92
251
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
252
+ - test/dummy/tmp/cache/assets/development/sprockets/178af67c2277a751289e81fc2f96dc7d
253
+ - test/dummy/tmp/cache/assets/development/sprockets/18650e945a1a2ad87b3d8997d1ccac10
254
+ - test/dummy/tmp/cache/assets/development/sprockets/19bf9cd3f01562cdecb4b5c825c8f36d
255
+ - test/dummy/tmp/cache/assets/development/sprockets/1b5f6c8780c3fcb34d2bbbabe38c3d94
256
+ - test/dummy/tmp/cache/assets/development/sprockets/1df2ccc1ade2cfe4a9d0ce8b0ec2dadf
257
+ - test/dummy/tmp/cache/assets/development/sprockets/272853fd0642f08e38174a609a2be457
258
+ - test/dummy/tmp/cache/assets/development/sprockets/2aff43fdd4d59cb6a75288268ec363ee
259
+ - test/dummy/tmp/cache/assets/development/sprockets/2c853768baf811357d81d41bdfd05dcf
260
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
261
+ - test/dummy/tmp/cache/assets/development/sprockets/314d48e543146f617c4d3439a4d8d40d
262
+ - test/dummy/tmp/cache/assets/development/sprockets/320853225bbf3512349dc1ef4ea80874
263
+ - test/dummy/tmp/cache/assets/development/sprockets/32f1a742d35f7250e984b1de0554a894
264
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
265
+ - test/dummy/tmp/cache/assets/development/sprockets/3807e3adca7677de6842a8048ad6d83b
266
+ - test/dummy/tmp/cache/assets/development/sprockets/42ad84505ad8dfc0a4a724e8c889c607
267
+ - test/dummy/tmp/cache/assets/development/sprockets/46c5c46e37f5a22449050d7fc6f1dc26
268
+ - test/dummy/tmp/cache/assets/development/sprockets/4fbe2f2c44de1e405b3562e4935176b9
269
+ - test/dummy/tmp/cache/assets/development/sprockets/52d191f68c69ae795e8da63ef51ca640
270
+ - test/dummy/tmp/cache/assets/development/sprockets/54cf088ee215412d3800d9b1e0263c30
271
+ - test/dummy/tmp/cache/assets/development/sprockets/55165e8d7dcda66caf51df6c6417142d
272
+ - test/dummy/tmp/cache/assets/development/sprockets/576fe10a40538bd3999a2b1b3fe334d1
273
+ - test/dummy/tmp/cache/assets/development/sprockets/5793e837a2934ce3b84aac8785a874ce
274
+ - test/dummy/tmp/cache/assets/development/sprockets/5900a8937fa5118d2a6ee8289614c854
275
+ - test/dummy/tmp/cache/assets/development/sprockets/5a9053557c1035de31eb2162db5b9d34
276
+ - test/dummy/tmp/cache/assets/development/sprockets/5df80a6ab7f25724f11ce3179173ad60
277
+ - test/dummy/tmp/cache/assets/development/sprockets/6373000f4849668f51493aaf8503c8e8
278
+ - test/dummy/tmp/cache/assets/development/sprockets/65048e3e4fd096e06f7ca69a5af7ab9f
279
+ - test/dummy/tmp/cache/assets/development/sprockets/6bb983076781d92edbb1da256023c14b
280
+ - test/dummy/tmp/cache/assets/development/sprockets/6dfaf2d0d571c61e96bce5377fcddf7f
281
+ - test/dummy/tmp/cache/assets/development/sprockets/6efc50a7f372f50e09a67daa7ac00940
282
+ - test/dummy/tmp/cache/assets/development/sprockets/6f7dfedc6e14ea8772e0284497539f90
283
+ - test/dummy/tmp/cache/assets/development/sprockets/70f64d1c4421c935f01a8d5aa647d792
284
+ - test/dummy/tmp/cache/assets/development/sprockets/7999e525c88173c1beb785f002effc1d
285
+ - test/dummy/tmp/cache/assets/development/sprockets/7c188f2b1cb38e1b55dc8a8bb8785fe8
286
+ - test/dummy/tmp/cache/assets/development/sprockets/7d48e39953ffcdd70751e98d08d1282c
287
+ - test/dummy/tmp/cache/assets/development/sprockets/7ddca3ef38a810d93ddc026ee5fa7959
288
+ - test/dummy/tmp/cache/assets/development/sprockets/7fecd8a0b0c56f928c31450f839c4731
289
+ - test/dummy/tmp/cache/assets/development/sprockets/842d637730ce4255c6beacff60b80157
290
+ - test/dummy/tmp/cache/assets/development/sprockets/89cd476f554d26de50608ac9ce6d0606
291
+ - test/dummy/tmp/cache/assets/development/sprockets/9519989fc45811670fa6b1184fedecc7
292
+ - test/dummy/tmp/cache/assets/development/sprockets/99cdbaecd1b34008d0853764ec707246
293
+ - test/dummy/tmp/cache/assets/development/sprockets/a093237e72888c88a730f537a544e03b
294
+ - test/dummy/tmp/cache/assets/development/sprockets/a7c148cd78906c44016fdeb236569b5b
295
+ - test/dummy/tmp/cache/assets/development/sprockets/a83bebd10c561b2264affb4ed6a9f83b
296
+ - test/dummy/tmp/cache/assets/development/sprockets/b3ed09e62124bd9cf5f7a1ac14298d4f
297
+ - test/dummy/tmp/cache/assets/development/sprockets/be45f47d31b8e7fd54a0b6087eeaf5de
298
+ - test/dummy/tmp/cache/assets/development/sprockets/c00bfe3da0096cbd0434a6c66262fe23
299
+ - test/dummy/tmp/cache/assets/development/sprockets/c78109332f6461183a94718da0068da6
300
+ - test/dummy/tmp/cache/assets/development/sprockets/cee8c6b09c33d2b276753e959712724e
301
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
302
+ - test/dummy/tmp/cache/assets/development/sprockets/d08ae02c560f15a5cb4d0447b0da29ad
303
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
304
+ - test/dummy/tmp/cache/assets/development/sprockets/d990155237ca59ccb96cf2253f8059ae
305
+ - test/dummy/tmp/cache/assets/development/sprockets/df600f50f002512c95d93bcfbab891ed
306
+ - test/dummy/tmp/cache/assets/development/sprockets/e2a3afc837465539886843291aedd0f3
307
+ - test/dummy/tmp/cache/assets/development/sprockets/eb7b0ec5bff36142ba070d1a39e194b1
308
+ - test/dummy/tmp/cache/assets/development/sprockets/f3aee0380718ef20b2e587a842ce697e
309
+ - test/dummy/tmp/cache/assets/development/sprockets/f408c68444462a9ae2effa5230b43edf
310
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
311
+ - test/dummy/tmp/cache/assets/development/sprockets/f898358aceb33227eb4403237acca034
312
+ - test/dummy/tmp/cache/assets/development/sprockets/fc7201c6cbef32453aa4175c520c8eae
313
+ - test/dummy/tmp/cache/assets/development/sprockets/fca81105f7109a6a96f05aedd0f1b883
314
+ - test/dummy/tmp/cache/assets/development/sprockets/fdd7a6a4d56761d6463b3c34768fbc78
315
+ - test/dummy/tmp/restart.txt
316
+ - test/dummy/tmp/visual-migrate_tmp.rb
317
+ - test/dummy/tmp/visual_migrate_tmp.rb
318
+ - test/fixtures/visual_migrate/schema_migrations.yml
319
+ - test/integration/navigation_test.rb
320
+ - test/models/visual_migrate/schema_migration_test.rb
321
+ - test/test_helper.rb
322
+ - test/visual_migrate_test.rb
323
+ homepage: https://github.com/JironBach/visual_migrate
324
+ licenses:
325
+ - MIT
326
+ - GPL-2
327
+ metadata: {}
328
+ post_install_message:
329
+ rdoc_options: []
330
+ require_paths:
331
+ - lib
332
+ required_ruby_version: !ruby/object:Gem::Requirement
333
+ requirements:
334
+ - - '>='
335
+ - !ruby/object:Gem::Version
336
+ version: '0'
337
+ required_rubygems_version: !ruby/object:Gem::Requirement
338
+ requirements:
339
+ - - '>='
340
+ - !ruby/object:Gem::Version
341
+ version: '0'
342
+ requirements: []
343
+ rubyforge_project:
344
+ rubygems_version: 2.1.5
345
+ signing_key:
346
+ specification_version: 4
347
+ summary: Visual editor for migration files of Ruby on Rails.
348
+ test_files:
349
+ - test/dummy/app/assets/javascripts/application.js
350
+ - test/dummy/app/assets/javascripts/index.js
351
+ - test/dummy/app/assets/stylesheets/application.css
352
+ - test/dummy/app/assets/stylesheets/index.css
353
+ - test/dummy/app/controllers/application_controller.rb
354
+ - test/dummy/app/controllers/index_controller.rb
355
+ - test/dummy/app/helpers/application_helper.rb
356
+ - test/dummy/app/helpers/index_helper.rb
357
+ - test/dummy/app/models/test_table.rb
358
+ - test/dummy/app/views/index/index.html.erb
359
+ - test/dummy/app/views/layouts/application.html.erb
360
+ - test/dummy/bin/bundle
361
+ - test/dummy/bin/rails
362
+ - test/dummy/bin/rake
363
+ - test/dummy/config/application.rb
364
+ - test/dummy/config/boot.rb
365
+ - test/dummy/config/database.yml
366
+ - test/dummy/config/environment.rb
367
+ - test/dummy/config/environments/development.rb
368
+ - test/dummy/config/environments/production.rb
369
+ - test/dummy/config/environments/test.rb
370
+ - test/dummy/config/initializers/backtrace_silencers.rb
371
+ - test/dummy/config/initializers/filter_parameter_logging.rb
372
+ - test/dummy/config/initializers/inflections.rb
373
+ - test/dummy/config/initializers/mime_types.rb
374
+ - test/dummy/config/initializers/secret_token.rb
375
+ - test/dummy/config/initializers/session_store.rb
376
+ - test/dummy/config/initializers/wrap_parameters.rb
377
+ - test/dummy/config/locales/en.yml
378
+ - test/dummy/config/routes.rb
379
+ - test/dummy/config.ru
380
+ - test/dummy/db/development.sqlite3
381
+ - test/dummy/db/migrate/20131006135044_create_test_tables.rb
382
+ - test/dummy/db/migrate/20131007030825_add_column_test_table.rb
383
+ - test/dummy/db/migrate/20131026214458_rename_column_test_table.rb
384
+ - test/dummy/db/migrate/20131030105601_change_column_test.rb
385
+ - test/dummy/db/migrate/20131104225745_index_test.rb
386
+ - test/dummy/db/migrate/20131105025821_rename_index_test.rb
387
+ - test/dummy/db/migrate/20131105042853_remove_timestamps_test.rb
388
+ - test/dummy/db/schema.rb
389
+ - test/dummy/db/seeds.rb
390
+ - test/dummy/db/test.sqlite3
391
+ - test/dummy/Gemfile
392
+ - test/dummy/Gemfile.lock
393
+ - test/dummy/log/development.log
394
+ - test/dummy/log/production.log
395
+ - test/dummy/log/test.log
396
+ - test/dummy/public/404.html
397
+ - test/dummy/public/422.html
398
+ - test/dummy/public/500.html
399
+ - test/dummy/public/favicon.ico
400
+ - test/dummy/public/index.html.bak
401
+ - test/dummy/Rakefile
402
+ - test/dummy/README.rdoc
403
+ - test/dummy/spec/controllers/index_controller_spec.rb
404
+ - test/dummy/spec/spec_helper.rb
405
+ - test/dummy/spec/views/index/index.html.erb_spec.rb
406
+ - test/dummy/test/controllers/index_controller_test.rb
407
+ - test/dummy/test/fixtures/test_tables.yml
408
+ - test/dummy/test/helpers/index_helper_test.rb
409
+ - test/dummy/test/models/test_table_test.rb
410
+ - test/dummy/tmp/cache/assets/development/sprockets/021fe5e1eadff30885806b7245f7e66e
411
+ - test/dummy/tmp/cache/assets/development/sprockets/0a9126be05e74d1b89f024c687b7dbfd
412
+ - test/dummy/tmp/cache/assets/development/sprockets/0b682b760de6f7c47a7236f024fee55d
413
+ - test/dummy/tmp/cache/assets/development/sprockets/0caf4a7a233e329f7d3bfe3fc2f37910
414
+ - test/dummy/tmp/cache/assets/development/sprockets/0e059cd92931990c10b6c5b78014ec92
415
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
416
+ - test/dummy/tmp/cache/assets/development/sprockets/178af67c2277a751289e81fc2f96dc7d
417
+ - test/dummy/tmp/cache/assets/development/sprockets/18650e945a1a2ad87b3d8997d1ccac10
418
+ - test/dummy/tmp/cache/assets/development/sprockets/19bf9cd3f01562cdecb4b5c825c8f36d
419
+ - test/dummy/tmp/cache/assets/development/sprockets/1b5f6c8780c3fcb34d2bbbabe38c3d94
420
+ - test/dummy/tmp/cache/assets/development/sprockets/1df2ccc1ade2cfe4a9d0ce8b0ec2dadf
421
+ - test/dummy/tmp/cache/assets/development/sprockets/272853fd0642f08e38174a609a2be457
422
+ - test/dummy/tmp/cache/assets/development/sprockets/2aff43fdd4d59cb6a75288268ec363ee
423
+ - test/dummy/tmp/cache/assets/development/sprockets/2c853768baf811357d81d41bdfd05dcf
424
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
425
+ - test/dummy/tmp/cache/assets/development/sprockets/314d48e543146f617c4d3439a4d8d40d
426
+ - test/dummy/tmp/cache/assets/development/sprockets/320853225bbf3512349dc1ef4ea80874
427
+ - test/dummy/tmp/cache/assets/development/sprockets/32f1a742d35f7250e984b1de0554a894
428
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
429
+ - test/dummy/tmp/cache/assets/development/sprockets/3807e3adca7677de6842a8048ad6d83b
430
+ - test/dummy/tmp/cache/assets/development/sprockets/42ad84505ad8dfc0a4a724e8c889c607
431
+ - test/dummy/tmp/cache/assets/development/sprockets/46c5c46e37f5a22449050d7fc6f1dc26
432
+ - test/dummy/tmp/cache/assets/development/sprockets/4fbe2f2c44de1e405b3562e4935176b9
433
+ - test/dummy/tmp/cache/assets/development/sprockets/52d191f68c69ae795e8da63ef51ca640
434
+ - test/dummy/tmp/cache/assets/development/sprockets/54cf088ee215412d3800d9b1e0263c30
435
+ - test/dummy/tmp/cache/assets/development/sprockets/55165e8d7dcda66caf51df6c6417142d
436
+ - test/dummy/tmp/cache/assets/development/sprockets/576fe10a40538bd3999a2b1b3fe334d1
437
+ - test/dummy/tmp/cache/assets/development/sprockets/5793e837a2934ce3b84aac8785a874ce
438
+ - test/dummy/tmp/cache/assets/development/sprockets/5900a8937fa5118d2a6ee8289614c854
439
+ - test/dummy/tmp/cache/assets/development/sprockets/5a9053557c1035de31eb2162db5b9d34
440
+ - test/dummy/tmp/cache/assets/development/sprockets/5df80a6ab7f25724f11ce3179173ad60
441
+ - test/dummy/tmp/cache/assets/development/sprockets/6373000f4849668f51493aaf8503c8e8
442
+ - test/dummy/tmp/cache/assets/development/sprockets/65048e3e4fd096e06f7ca69a5af7ab9f
443
+ - test/dummy/tmp/cache/assets/development/sprockets/6bb983076781d92edbb1da256023c14b
444
+ - test/dummy/tmp/cache/assets/development/sprockets/6dfaf2d0d571c61e96bce5377fcddf7f
445
+ - test/dummy/tmp/cache/assets/development/sprockets/6efc50a7f372f50e09a67daa7ac00940
446
+ - test/dummy/tmp/cache/assets/development/sprockets/6f7dfedc6e14ea8772e0284497539f90
447
+ - test/dummy/tmp/cache/assets/development/sprockets/70f64d1c4421c935f01a8d5aa647d792
448
+ - test/dummy/tmp/cache/assets/development/sprockets/7999e525c88173c1beb785f002effc1d
449
+ - test/dummy/tmp/cache/assets/development/sprockets/7c188f2b1cb38e1b55dc8a8bb8785fe8
450
+ - test/dummy/tmp/cache/assets/development/sprockets/7d48e39953ffcdd70751e98d08d1282c
451
+ - test/dummy/tmp/cache/assets/development/sprockets/7ddca3ef38a810d93ddc026ee5fa7959
452
+ - test/dummy/tmp/cache/assets/development/sprockets/7fecd8a0b0c56f928c31450f839c4731
453
+ - test/dummy/tmp/cache/assets/development/sprockets/842d637730ce4255c6beacff60b80157
454
+ - test/dummy/tmp/cache/assets/development/sprockets/89cd476f554d26de50608ac9ce6d0606
455
+ - test/dummy/tmp/cache/assets/development/sprockets/9519989fc45811670fa6b1184fedecc7
456
+ - test/dummy/tmp/cache/assets/development/sprockets/99cdbaecd1b34008d0853764ec707246
457
+ - test/dummy/tmp/cache/assets/development/sprockets/a093237e72888c88a730f537a544e03b
458
+ - test/dummy/tmp/cache/assets/development/sprockets/a7c148cd78906c44016fdeb236569b5b
459
+ - test/dummy/tmp/cache/assets/development/sprockets/a83bebd10c561b2264affb4ed6a9f83b
460
+ - test/dummy/tmp/cache/assets/development/sprockets/b3ed09e62124bd9cf5f7a1ac14298d4f
461
+ - test/dummy/tmp/cache/assets/development/sprockets/be45f47d31b8e7fd54a0b6087eeaf5de
462
+ - test/dummy/tmp/cache/assets/development/sprockets/c00bfe3da0096cbd0434a6c66262fe23
463
+ - test/dummy/tmp/cache/assets/development/sprockets/c78109332f6461183a94718da0068da6
464
+ - test/dummy/tmp/cache/assets/development/sprockets/cee8c6b09c33d2b276753e959712724e
465
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
466
+ - test/dummy/tmp/cache/assets/development/sprockets/d08ae02c560f15a5cb4d0447b0da29ad
467
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
468
+ - test/dummy/tmp/cache/assets/development/sprockets/d990155237ca59ccb96cf2253f8059ae
469
+ - test/dummy/tmp/cache/assets/development/sprockets/df600f50f002512c95d93bcfbab891ed
470
+ - test/dummy/tmp/cache/assets/development/sprockets/e2a3afc837465539886843291aedd0f3
471
+ - test/dummy/tmp/cache/assets/development/sprockets/eb7b0ec5bff36142ba070d1a39e194b1
472
+ - test/dummy/tmp/cache/assets/development/sprockets/f3aee0380718ef20b2e587a842ce697e
473
+ - test/dummy/tmp/cache/assets/development/sprockets/f408c68444462a9ae2effa5230b43edf
474
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
475
+ - test/dummy/tmp/cache/assets/development/sprockets/f898358aceb33227eb4403237acca034
476
+ - test/dummy/tmp/cache/assets/development/sprockets/fc7201c6cbef32453aa4175c520c8eae
477
+ - test/dummy/tmp/cache/assets/development/sprockets/fca81105f7109a6a96f05aedd0f1b883
478
+ - test/dummy/tmp/cache/assets/development/sprockets/fdd7a6a4d56761d6463b3c34768fbc78
479
+ - test/dummy/tmp/restart.txt
480
+ - test/dummy/tmp/visual-migrate_tmp.rb
481
+ - test/dummy/tmp/visual_migrate_tmp.rb
482
+ - test/fixtures/visual_migrate/schema_migrations.yml
483
+ - test/integration/navigation_test.rb
484
+ - test/models/visual_migrate/schema_migration_test.rb
485
+ - test/test_helper.rb
486
+ - test/visual_migrate_test.rb
487
+ has_rdoc: