localtower 0.2.2 → 0.2.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 173cfbbb7586b74e2b52c7a2cf17afe58627f545
4
- data.tar.gz: 0b4089ec63d56ec6adecbd359001f82255747217
3
+ metadata.gz: cb98edd013a8dd3adffd7ec30785cf4e6371a788
4
+ data.tar.gz: '093b0a9efd88f6223b95c22a513217198138df2d'
5
5
  SHA512:
6
- metadata.gz: 4206e0c4968ee79a9655fda1325e351d270dde98acc59902bd3c4c91b3e848719d5323b75f3b92ca3f536a35f3e2133c44cd8e9f5bfe38753fb6ae3dd54e3739
7
- data.tar.gz: 2deb5b2e2459e1c8e0edf56d8886f145af525a89194b23879a3f9cf62738947359f0af27619a22212fae987675a6b3e46a642da043b295e8af855018a710f551
6
+ metadata.gz: 11fbdc9b9580686adbd0c8c78a3904a753479fb4110ea0e04e1784ce9fcfa240a3d8063769c6da37a4edfc042d8675a9b52f5a0bea42ac91a806ce25a6a6c68f
7
+ data.tar.gz: 52ecc1ff573680f0a9879c13b2b5539b0aef4a214b44a2106d385efb83e7196fcc7059756c3468ffd96378bc79eb872f96a2c94d71594b2936e31f6cee78ef0b
data/README.md CHANGED
@@ -42,7 +42,7 @@ bundle install
42
42
  Add to your `config/routes.rb`:
43
43
  ```ruby
44
44
  MyApp::Application.routes.draw do
45
- if Rails.env.development?
45
+ if Rails.env.development? and defined?(Localtower)
46
46
  mount Localtower::Engine, at: "localtower"
47
47
  end
48
48
 
@@ -105,6 +105,6 @@ Thanks for reporting issues, I'll do my best.
105
105
 
106
106
  ## Deploy
107
107
 
108
- rm *.gem | gem build localtower.gemspec | gem push localtower*.gem
108
+ rm *.gem | gem build localtower.gemspec | gem push localtower-*.gem
109
109
 
110
110
 
@@ -34,7 +34,7 @@
34
34
  <div class="col-md-12">
35
35
  <div class="card">
36
36
  <div class="header">
37
- <h4 class="title"></h4>
37
+ <h4 class="title"><pre>Localtower::Plugins::Capture.new(self, binding).save</pre></h4>
38
38
  </div>
39
39
 
40
40
  <div class="content">
@@ -1,7 +1,7 @@
1
1
  module Localtower
2
2
  module Plugins
3
3
  class Capture
4
- LOG_FILE = "#{Rails.root}/log/localtower_capture.log"
4
+ LOG_FILE = lambda { "#{Rails.root}/log/localtower_capture.log" }
5
5
  EXCLUDE_INSTANCE_VARIABLES = [
6
6
  "@_action_has_layout",
7
7
  "@_routes",
@@ -42,13 +42,13 @@ module Localtower
42
42
  end
43
43
 
44
44
  def initialize(context = nil, context_binding = nil)
45
- @context = context
46
- @context_binding = context_binding
45
+ @context = context # self
46
+ @context_binding = context_binding # binding
47
47
  end
48
48
 
49
49
  def logs
50
- if File.exist?(LOG_FILE)
51
- content = File.open(LOG_FILE).read
50
+ if File.exist?(LOG_FILE.call)
51
+ content = File.open(LOG_FILE.call).read
52
52
  else
53
53
  content = nil
54
54
  end
@@ -59,7 +59,7 @@ module Localtower
59
59
  end
60
60
 
61
61
  def my_logger
62
- @@my_logger ||= Logger.new(LOG_FILE)
62
+ @@my_logger ||= Logger.new(LOG_FILE.call)
63
63
  @@my_logger.formatter = proc do |severity, datetime, progname, msg|
64
64
  "#{msg}\n"
65
65
  end
@@ -146,19 +146,23 @@ module Localtower
146
146
 
147
147
  def init
148
148
  # Clear the logs
149
- if File.exist?(LOG_FILE)
150
- File.open(LOG_FILE, 'w') { |f| f.write("") }
151
- end
152
-
153
- self
149
+ File.open(LOG_FILE.call, 'w') { |f| f.write("{}") }
154
150
  end
155
151
 
156
152
  def save
157
153
  return nil if Rails.env.production?
158
154
 
159
155
  self.init
160
- json = self.values.to_json
161
- log "#{json}\n"
156
+
157
+ data = self.values
158
+ data.each do |value|
159
+ puts value
160
+ end
161
+
162
+ json = data.to_json
163
+
164
+ File.open(LOG_FILE.call, 'w') { |f| f.write(json) }
165
+ # log "#{json}\n"
162
166
  end
163
167
 
164
168
  def log(str)
@@ -1,3 +1,3 @@
1
1
  module Localtower
2
- VERSION = '0.2.2'.freeze
2
+ VERSION = '0.2.3'.freeze
3
3
  end
data/spec/dummy/Gemfile CHANGED
@@ -5,7 +5,7 @@ git_source(:github) do |repo_name|
5
5
  "https://github.com/#{repo_name}.git"
6
6
  end
7
7
 
8
- gem 'rails', '>= 5.1.0'
8
+ gem 'rails', '~> 5.0.0'
9
9
  # gem 'rails', '>= 5.0.1'
10
10
  gem 'pg'
11
11
  gem 'puma'
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: /Users/damln/Work/localtower
3
3
  specs:
4
- localtower (0.2.1)
4
+ localtower (0.2.2)
5
5
  active_link_to
6
6
  pg
7
- rails (>= 4.2.0)
7
+ rails (~> 5.0.0)
8
8
  rubyzip
9
9
  sqlite3
10
10
  thor
@@ -12,49 +12,49 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- actioncable (5.1.2)
16
- actionpack (= 5.1.2)
17
- nio4r (~> 2.0)
15
+ actioncable (5.0.4)
16
+ actionpack (= 5.0.4)
17
+ nio4r (>= 1.2, < 3.0)
18
18
  websocket-driver (~> 0.6.1)
19
- actionmailer (5.1.2)
20
- actionpack (= 5.1.2)
21
- actionview (= 5.1.2)
22
- activejob (= 5.1.2)
19
+ actionmailer (5.0.4)
20
+ actionpack (= 5.0.4)
21
+ actionview (= 5.0.4)
22
+ activejob (= 5.0.4)
23
23
  mail (~> 2.5, >= 2.5.4)
24
24
  rails-dom-testing (~> 2.0)
25
- actionpack (5.1.2)
26
- actionview (= 5.1.2)
27
- activesupport (= 5.1.2)
25
+ actionpack (5.0.4)
26
+ actionview (= 5.0.4)
27
+ activesupport (= 5.0.4)
28
28
  rack (~> 2.0)
29
29
  rack-test (~> 0.6.3)
30
30
  rails-dom-testing (~> 2.0)
31
31
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
32
- actionview (5.1.2)
33
- activesupport (= 5.1.2)
32
+ actionview (5.0.4)
33
+ activesupport (= 5.0.4)
34
34
  builder (~> 3.1)
35
- erubi (~> 1.4)
35
+ erubis (~> 2.7.0)
36
36
  rails-dom-testing (~> 2.0)
37
37
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
38
38
  active_link_to (1.0.4)
39
39
  actionpack
40
40
  addressable
41
- activejob (5.1.2)
42
- activesupport (= 5.1.2)
41
+ activejob (5.0.4)
42
+ activesupport (= 5.0.4)
43
43
  globalid (>= 0.3.6)
44
- activemodel (5.1.2)
45
- activesupport (= 5.1.2)
46
- activerecord (5.1.2)
47
- activemodel (= 5.1.2)
48
- activesupport (= 5.1.2)
49
- arel (~> 8.0)
50
- activesupport (5.1.2)
44
+ activemodel (5.0.4)
45
+ activesupport (= 5.0.4)
46
+ activerecord (5.0.4)
47
+ activemodel (= 5.0.4)
48
+ activesupport (= 5.0.4)
49
+ arel (~> 7.0)
50
+ activesupport (5.0.4)
51
51
  concurrent-ruby (~> 1.0, >= 1.0.2)
52
52
  i18n (~> 0.7)
53
53
  minitest (~> 5.1)
54
54
  tzinfo (~> 1.1)
55
55
  addressable (2.5.1)
56
56
  public_suffix (~> 2.0, >= 2.0.2)
57
- arel (8.0.0)
57
+ arel (7.1.4)
58
58
  better_errors (2.1.1)
59
59
  coderay (>= 1.0.0)
60
60
  erubis (>= 2.6.6)
@@ -76,7 +76,6 @@ GEM
76
76
  dotenv-rails (2.2.1)
77
77
  dotenv (= 2.2.1)
78
78
  railties (>= 3.2, < 5.2)
79
- erubi (1.6.1)
80
79
  erubis (2.7.0)
81
80
  execjs (2.7.0)
82
81
  ffi (1.9.18)
@@ -113,31 +112,31 @@ GEM
113
112
  rack (2.0.3)
114
113
  rack-test (0.6.3)
115
114
  rack (>= 1.0)
116
- rails (5.1.2)
117
- actioncable (= 5.1.2)
118
- actionmailer (= 5.1.2)
119
- actionpack (= 5.1.2)
120
- actionview (= 5.1.2)
121
- activejob (= 5.1.2)
122
- activemodel (= 5.1.2)
123
- activerecord (= 5.1.2)
124
- activesupport (= 5.1.2)
115
+ rails (5.0.4)
116
+ actioncable (= 5.0.4)
117
+ actionmailer (= 5.0.4)
118
+ actionpack (= 5.0.4)
119
+ actionview (= 5.0.4)
120
+ activejob (= 5.0.4)
121
+ activemodel (= 5.0.4)
122
+ activerecord (= 5.0.4)
123
+ activesupport (= 5.0.4)
125
124
  bundler (>= 1.3.0, < 2.0)
126
- railties (= 5.1.2)
125
+ railties (= 5.0.4)
127
126
  sprockets-rails (>= 2.0.0)
128
127
  rails-dom-testing (2.0.3)
129
128
  activesupport (>= 4.2.0)
130
129
  nokogiri (>= 1.6)
131
130
  rails-html-sanitizer (1.0.3)
132
131
  loofah (~> 2.0)
133
- railties (5.1.2)
134
- actionpack (= 5.1.2)
135
- activesupport (= 5.1.2)
132
+ railties (5.0.4)
133
+ actionpack (= 5.0.4)
134
+ activesupport (= 5.0.4)
136
135
  method_source
137
136
  rake (>= 0.8.7)
138
137
  thor (>= 0.18.1, < 2.0)
139
138
  rake (12.0.0)
140
- rb-fsevent (0.10.1)
139
+ rb-fsevent (0.10.2)
141
140
  rb-inotify (0.9.10)
142
141
  ffi (>= 0.5.0, < 2)
143
142
  require_reloader (0.2.1)
@@ -186,7 +185,7 @@ DEPENDENCIES
186
185
  pg
187
186
  pry
188
187
  puma
189
- rails (>= 5.1.0)
188
+ rails (~> 5.0.0)
190
189
  require_reloader
191
190
  sass-rails (~> 5.0)
192
191
  turbolinks (~> 5)
@@ -194,4 +193,4 @@ DEPENDENCIES
194
193
  uglifier (>= 1.3.0)
195
194
 
196
195
  BUNDLED WITH
197
- 1.14.4
196
+ 1.15.1
@@ -130,3 +130,29 @@ DEPRECATION WARNING: ActiveSupport.halt_callback_chains_on_return_false= is depr
130
130
  ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]
131
131
   (0.2ms) BEGIN
132
132
   (0.2ms) COMMIT
133
+  (194.8ms) DROP DATABASE IF EXISTS "localtower_dummy"
134
+  (667.3ms) CREATE DATABASE "localtower_dummy" ENCODING = 'utf8'
135
+  (15.8ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
136
+  (0.5ms) SELECT version FROM "schema_migrations"
137
+  (5.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
138
+  (24.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
139
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
140
+  (0.2ms) BEGIN
141
+ SQL (7.0ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2017-07-01 23:18:31.345515"], ["updated_at", "2017-07-01 23:18:31.345515"]]
142
+  (11.8ms) COMMIT
143
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
144
+  (0.3ms) BEGIN
145
+  (0.2ms) COMMIT
146
+  (193.3ms) DROP DATABASE IF EXISTS "localtower_dummy"
147
+  (601.0ms) CREATE DATABASE "localtower_dummy" ENCODING = 'utf8'
148
+  (3.9ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
149
+  (0.4ms) SELECT version FROM "schema_migrations"
150
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (0)
151
+  (19.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
152
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
153
+  (0.3ms) BEGIN
154
+ SQL (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2017-07-01 23:20:23.679002"], ["updated_at", "2017-07-01 23:20:23.679002"]]
155
+  (6.4ms) COMMIT
156
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
157
+  (0.2ms) BEGIN
158
+  (0.1ms) COMMIT
@@ -2538,3 +2538,230 @@
2538
2538
 
2539
2539
 
2540
2540
  [2017-06-29 23:25:29 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate in 2.596988 sec
2541
+ [2017-07-02 01:18:33 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951113
2542
+ [2017-07-02 01:18:35 +0200] - invoke active_record
2543
+ create db/migrate/20170701231835_change_the_model_post_at_time1498951113.rb
2544
+
2545
+ [2017-07-02 01:18:35 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951113 in 1.899301 sec
2546
+ [2017-07-02 01:18:35 +0200] - DOING...: bundle exec rake db:migrate
2547
+ [2017-07-02 01:18:37 +0200] - No Pry.
2548
+
2549
+ [2017-07-02 01:18:37 +0200] - DONE: bundle exec rake db:migrate in 1.457426 sec
2550
+ [2017-07-02 01:18:37 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelUserAtTime1498951117
2551
+ [2017-07-02 01:18:37 +0200] -
2552
+ [2017-07-02 01:18:37 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelUserAtTime1498951117 in 0.13282 sec
2553
+ [2017-07-02 01:18:37 +0200] - DOING...: bundle exec rake db:migrate
2554
+ [2017-07-02 01:18:38 +0200] - No Pry.
2555
+
2556
+ [2017-07-02 01:18:38 +0200] - DONE: bundle exec rake db:migrate in 1.381497 sec
2557
+ [2017-07-02 01:20:26 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951226
2558
+ [2017-07-02 01:20:28 +0200] - invoke active_record
2559
+ create db/migrate/20170701232028_change_the_model_post_at_time1498951226.rb
2560
+
2561
+ [2017-07-02 01:20:28 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951226 in 2.125988 sec
2562
+ [2017-07-02 01:20:28 +0200] - DOING...: bundle exec rake db:migrate
2563
+ [2017-07-02 01:20:29 +0200] - No Pry.
2564
+
2565
+ [2017-07-02 01:20:29 +0200] - DONE: bundle exec rake db:migrate in 1.461328 sec
2566
+ [2017-07-02 01:20:29 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelUserAtTime1498951229
2567
+ [2017-07-02 01:20:31 +0200] - invoke active_record
2568
+ create db/migrate/20170701232031_change_the_model_user_at_time1498951229.rb
2569
+
2570
+ [2017-07-02 01:20:31 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelUserAtTime1498951229 in 2.107639 sec
2571
+ [2017-07-02 01:20:31 +0200] - DOING...: bundle exec rake db:migrate
2572
+ [2017-07-02 01:20:33 +0200] - No Pry.
2573
+
2574
+ [2017-07-02 01:20:33 +0200] - DONE: bundle exec rake db:migrate in 1.548562 sec
2575
+ [2017-07-02 01:20:33 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951233
2576
+ [2017-07-02 01:20:35 +0200] - invoke active_record
2577
+ create db/migrate/20170701232035_change_the_model_post_at_time1498951233.rb
2578
+
2579
+ [2017-07-02 01:20:35 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951233 in 2.014036 sec
2580
+ [2017-07-02 01:20:35 +0200] - DOING...: bundle exec rake db:migrate
2581
+ [2017-07-02 01:20:36 +0200] - No Pry.
2582
+
2583
+ [2017-07-02 01:20:36 +0200] - DONE: bundle exec rake db:migrate in 1.310354 sec
2584
+ [2017-07-02 01:20:36 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951236
2585
+ [2017-07-02 01:20:38 +0200] - invoke active_record
2586
+ create db/migrate/20170701232038_change_the_model_post_at_time1498951236.rb
2587
+
2588
+ [2017-07-02 01:20:38 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951236 in 1.93781 sec
2589
+ [2017-07-02 01:20:38 +0200] - DOING...: bundle exec rake db:migrate
2590
+ [2017-07-02 01:20:40 +0200] - No Pry.
2591
+
2592
+ [2017-07-02 01:20:40 +0200] - DONE: bundle exec rake db:migrate in 1.393256 sec
2593
+ [2017-07-02 01:20:40 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951240
2594
+ [2017-07-02 01:20:42 +0200] - invoke active_record
2595
+ create db/migrate/20170701232042_change_the_model_post_at_time1498951240.rb
2596
+
2597
+ [2017-07-02 01:20:42 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951240 in 2.048824 sec
2598
+ [2017-07-02 01:20:42 +0200] - DOING...: bundle exec rake db:migrate
2599
+ [2017-07-02 01:20:43 +0200] - No Pry.
2600
+
2601
+ [2017-07-02 01:20:43 +0200] - DONE: bundle exec rake db:migrate in 1.338645 sec
2602
+ [2017-07-02 01:20:43 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951243
2603
+ [2017-07-02 01:20:45 +0200] - invoke active_record
2604
+ create db/migrate/20170701232045_change_the_model_post_at_time1498951243.rb
2605
+
2606
+ [2017-07-02 01:20:45 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951243 in 1.891342 sec
2607
+ [2017-07-02 01:20:45 +0200] - DOING...: bundle exec rake db:migrate
2608
+ [2017-07-02 01:20:46 +0200] - No Pry.
2609
+
2610
+ [2017-07-02 01:20:46 +0200] - DONE: bundle exec rake db:migrate in 1.405274 sec
2611
+ [2017-07-02 01:20:46 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951246
2612
+ [2017-07-02 01:20:48 +0200] - invoke active_record
2613
+ create db/migrate/20170701232048_change_the_model_post_at_time1498951246.rb
2614
+
2615
+ [2017-07-02 01:20:48 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951246 in 2.163143 sec
2616
+ [2017-07-02 01:20:48 +0200] - DOING...: bundle exec rake db:migrate
2617
+ [2017-07-02 01:20:50 +0200] - No Pry.
2618
+
2619
+ [2017-07-02 01:20:50 +0200] - DONE: bundle exec rake db:migrate in 1.620148 sec
2620
+ [2017-07-02 01:20:50 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951250
2621
+ [2017-07-02 01:20:52 +0200] - invoke active_record
2622
+ create db/migrate/20170701232052_change_the_model_post_at_time1498951250.rb
2623
+
2624
+ [2017-07-02 01:20:52 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951250 in 2.194204 sec
2625
+ [2017-07-02 01:20:52 +0200] - DOING...: bundle exec rake db:migrate
2626
+ [2017-07-02 01:20:54 +0200] - No Pry.
2627
+
2628
+ [2017-07-02 01:20:54 +0200] - DONE: bundle exec rake db:migrate in 1.348928 sec
2629
+ [2017-07-02 01:20:54 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951254
2630
+ [2017-07-02 01:20:56 +0200] - invoke active_record
2631
+ create db/migrate/20170701232056_change_the_model_post_at_time1498951254.rb
2632
+
2633
+ [2017-07-02 01:20:56 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951254 in 1.86391 sec
2634
+ [2017-07-02 01:20:56 +0200] - DOING...: bundle exec rake db:migrate
2635
+ [2017-07-02 01:20:57 +0200] - No Pry.
2636
+
2637
+ [2017-07-02 01:20:57 +0200] - DONE: bundle exec rake db:migrate in 1.347832 sec
2638
+ [2017-07-02 01:20:57 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951257
2639
+ [2017-07-02 01:20:59 +0200] - invoke active_record
2640
+ create db/migrate/20170701232059_change_the_model_post_at_time1498951257.rb
2641
+
2642
+ [2017-07-02 01:20:59 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951257 in 1.837303 sec
2643
+ [2017-07-02 01:20:59 +0200] - DOING...: bundle exec rake db:migrate
2644
+ [2017-07-02 01:21:00 +0200] - No Pry.
2645
+
2646
+ [2017-07-02 01:21:00 +0200] - DONE: bundle exec rake db:migrate in 1.301399 sec
2647
+ [2017-07-02 01:21:00 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model Post title:string:index content:text
2648
+ [2017-07-02 01:21:02 +0200] - invoke active_record
2649
+ create db/migrate/20170701232102_create_posts.rb
2650
+ create app/models/application_record.rb
2651
+ create app/models/post.rb
2652
+
2653
+ [2017-07-02 01:21:02 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model Post title:string:index content:text in 1.822899 sec
2654
+ [2017-07-02 01:21:02 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate
2655
+ [2017-07-02 01:21:04 +0200] - No Pry.
2656
+ == 20170701232102 CreatePosts: migrating ======================================
2657
+ -- create_table(:posts)
2658
+ -> 0.0312s
2659
+ -- add_index(:posts, :title)
2660
+ -> 0.0051s
2661
+ == 20170701232102 CreatePosts: migrated (0.0365s) =============================
2662
+
2663
+
2664
+ [2017-07-02 01:21:04 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate in 1.91203 sec
2665
+ [2017-07-02 01:21:04 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model User name:string:index metadata:jsonb
2666
+ [2017-07-02 01:21:05 +0200] - invoke active_record
2667
+ create db/migrate/20170701232105_create_users.rb
2668
+ create app/models/user.rb
2669
+
2670
+ [2017-07-02 01:21:05 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model User name:string:index metadata:jsonb in 1.625428 sec
2671
+ [2017-07-02 01:21:05 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate
2672
+ [2017-07-02 01:21:07 +0200] - No Pry.
2673
+ == 20170701232105 CreateUsers: migrating ======================================
2674
+ -- create_table(:users)
2675
+ -> 0.0129s
2676
+ -- add_index(:users, :name)
2677
+ -> 0.0045s
2678
+ == 20170701232105 CreateUsers: migrated (0.0176s) =============================
2679
+
2680
+
2681
+ [2017-07-02 01:21:07 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate in 1.546668 sec
2682
+ [2017-07-02 01:21:07 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model Post title:string:index content:text
2683
+ [2017-07-02 01:21:09 +0200] - invoke active_record
2684
+ create db/migrate/20170701232109_create_posts.rb
2685
+ create app/models/application_record.rb
2686
+ create app/models/post.rb
2687
+
2688
+ [2017-07-02 01:21:09 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model Post title:string:index content:text in 1.638588 sec
2689
+ [2017-07-02 01:21:09 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate
2690
+ [2017-07-02 01:21:10 +0200] - No Pry.
2691
+ == 20170701232109 CreatePosts: migrating ======================================
2692
+ -- create_table(:posts)
2693
+ -> 0.0046s
2694
+ -- add_index(:posts, :title)
2695
+ -> 0.0035s
2696
+ == 20170701232109 CreatePosts: migrated (0.0083s) =============================
2697
+
2698
+
2699
+ [2017-07-02 01:21:10 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate in 1.617479 sec
2700
+ [2017-07-02 01:21:10 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model User name:string:index metadata:jsonb
2701
+ [2017-07-02 01:21:12 +0200] - invoke active_record
2702
+ create db/migrate/20170701232112_create_users.rb
2703
+ create app/models/user.rb
2704
+
2705
+ [2017-07-02 01:21:12 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model User name:string:index metadata:jsonb in 1.844842 sec
2706
+ [2017-07-02 01:21:12 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate
2707
+ [2017-07-02 01:21:14 +0200] - No Pry.
2708
+ == 20170701232112 CreateUsers: migrating ======================================
2709
+ -- create_table(:users)
2710
+ -> 0.0148s
2711
+ -- add_index(:users, :name)
2712
+ -> 0.0054s
2713
+ == 20170701232112 CreateUsers: migrated (0.0204s) =============================
2714
+
2715
+
2716
+ [2017-07-02 01:21:14 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate in 1.827699 sec
2717
+ [2017-07-02 01:21:14 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951274
2718
+ [2017-07-02 01:21:16 +0200] - invoke active_record
2719
+ create db/migrate/20170701232116_change_the_model_post_at_time1498951274.rb
2720
+
2721
+ [2017-07-02 01:21:16 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g migration ChangeTheModelPostAtTime1498951274 in 1.98607 sec
2722
+ [2017-07-02 01:21:16 +0200] - DOING...: bundle exec rake db:migrate
2723
+ [2017-07-02 01:21:17 +0200] - No Pry.
2724
+
2725
+ [2017-07-02 01:21:17 +0200] - DONE: bundle exec rake db:migrate in 1.399854 sec
2726
+ [2017-07-02 01:21:17 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model Post title:string:index content:text
2727
+ [2017-07-02 01:21:20 +0200] - invoke active_record
2728
+ create db/migrate/20170701232120_create_posts.rb
2729
+ create app/models/application_record.rb
2730
+ create app/models/post.rb
2731
+
2732
+ [2017-07-02 01:21:20 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model Post title:string:index content:text in 2.335796 sec
2733
+ [2017-07-02 01:21:20 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model User name:string:index metadata:jsonb
2734
+ [2017-07-02 01:21:22 +0200] - invoke active_record
2735
+ create db/migrate/20170701232122_create_users.rb
2736
+ create app/models/user.rb
2737
+
2738
+ [2017-07-02 01:21:22 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model User name:string:index metadata:jsonb in 2.278182 sec
2739
+ [2017-07-02 01:21:22 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model UserPost user:references post:references
2740
+ [2017-07-02 01:21:24 +0200] - invoke active_record
2741
+ create db/migrate/20170701232124_create_user_posts.rb
2742
+ create app/models/user_post.rb
2743
+
2744
+ [2017-07-02 01:21:24 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rails g model UserPost user:references post:references in 2.144073 sec
2745
+ [2017-07-02 01:21:24 +0200] - DOING...: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate
2746
+ [2017-07-02 01:21:26 +0200] - No Pry.
2747
+ == 20170701232120 CreatePosts: migrating ======================================
2748
+ -- create_table(:posts)
2749
+ -> 0.0039s
2750
+ -- add_index(:posts, :title)
2751
+ -> 0.0026s
2752
+ == 20170701232120 CreatePosts: migrated (0.0066s) =============================
2753
+
2754
+ == 20170701232122 CreateUsers: migrating ======================================
2755
+ -- create_table(:users)
2756
+ -> 0.0030s
2757
+ -- add_index(:users, :name)
2758
+ -> 0.0022s
2759
+ == 20170701232122 CreateUsers: migrated (0.0053s) =============================
2760
+
2761
+ == 20170701232124 CreateUserPosts: migrating ==================================
2762
+ -- create_table(:user_posts)
2763
+ -> 0.0116s
2764
+ == 20170701232124 CreateUserPosts: migrated (0.0117s) =========================
2765
+
2766
+
2767
+ [2017-07-02 01:21:26 +0200] - DONE: cd '/Users/damln/Work/localtower/spec/dummy' && bundle exec rake db:migrate in 2.141662 sec
@@ -2471,3 +2471,113 @@ FOREIGN KEY ("post_id")
2471
2471
   (7.2ms) DROP TABLE if exists USERS cascade;
2472
2472
   (2.9ms) DROP TABLE if exists POSTS cascade;
2473
2473
   (2.2ms) DROP TABLE if exists USER_POSTS cascade;
2474
+  (3.6ms) DROP TABLE if exists SCHEMA_MIGRATIONS cascade;
2475
+  (13.6ms) DROP TABLE if exists AR_INTERNAL_METADATA cascade;
2476
+  (7.5ms) DROP TABLE if exists SCHEMA_MIGRATIONS cascade;
2477
+  (8.2ms) DROP TABLE if exists AR_INTERNAL_METADATA cascade;
2478
+  (23.5ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
2479
+  (20.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2480
+  (1.4ms) SELECT pg_try_advisory_lock(268089350951355045);
2481
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2482
+ Migrating to CreatePosts (20170701232102)
2483
+  (0.3ms) BEGIN
2484
+  (30.2ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "content" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2485
+  (1.6ms) CREATE INDEX "index_posts_on_title" ON "posts" ("title")
2486
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170701232102"]]
2487
+  (0.7ms) COMMIT
2488
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2489
+  (0.2ms) BEGIN
2490
+ SQL (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2017-07-01 23:21:04.148005"], ["updated_at", "2017-07-01 23:21:04.148005"]]
2491
+  (0.6ms) COMMIT
2492
+  (0.4ms) SELECT pg_advisory_unlock(268089350951355045)
2493
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2494
+  (0.3ms) SELECT pg_try_advisory_lock(268089350951355045);
2495
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2496
+ Migrating to CreateUsers (20170701232105)
2497
+  (0.2ms) BEGIN
2498
+  (12.3ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying, "metadata" jsonb, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2499
+  (1.3ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
2500
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170701232105"]]
2501
+  (0.6ms) COMMIT
2502
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2503
+  (0.2ms) BEGIN
2504
+  (0.1ms) COMMIT
2505
+  (0.2ms) SELECT pg_advisory_unlock(268089350951355045)
2506
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2507
+  (7.4ms) DROP TABLE if exists SCHEMA_MIGRATIONS cascade;
2508
+  (7.4ms) DROP TABLE if exists AR_INTERNAL_METADATA cascade;
2509
+  (11.9ms) DROP TABLE if exists POSTS cascade;
2510
+  (2.5ms) DROP TABLE if exists USERS cascade;
2511
+  (5.6ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
2512
+  (3.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2513
+  (0.4ms) SELECT pg_try_advisory_lock(268089350951355045);
2514
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2515
+ Migrating to CreatePosts (20170701232109)
2516
+  (0.2ms) BEGIN
2517
+  (4.2ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "content" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2518
+  (1.1ms) CREATE INDEX "index_posts_on_title" ON "posts" ("title")
2519
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170701232109"]]
2520
+  (0.7ms) COMMIT
2521
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2522
+  (0.3ms) BEGIN
2523
+ SQL (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2017-07-01 23:21:10.651696"], ["updated_at", "2017-07-01 23:21:10.651696"]]
2524
+  (0.4ms) COMMIT
2525
+  (0.3ms) SELECT pg_advisory_unlock(268089350951355045)
2526
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2527
+  (0.2ms) SELECT pg_try_advisory_lock(268089350951355045);
2528
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
2529
+ Migrating to CreateUsers (20170701232112)
2530
+  (0.3ms) BEGIN
2531
+  (14.0ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying, "metadata" jsonb, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2532
+  (1.6ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
2533
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170701232112"]]
2534
+  (0.5ms) COMMIT
2535
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2536
+  (0.3ms) BEGIN
2537
+  (0.1ms) COMMIT
2538
+  (0.2ms) SELECT pg_advisory_unlock(268089350951355045)
2539
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2540
+  (8.4ms) DROP TABLE if exists USERS cascade;
2541
+  (7.9ms) DROP TABLE if exists SCHEMA_MIGRATIONS cascade;
2542
+  (7.7ms) DROP TABLE if exists AR_INTERNAL_METADATA cascade;
2543
+  (2.7ms) DROP TABLE if exists POSTS cascade;
2544
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
2545
+  (2.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2546
+  (0.2ms) SELECT pg_try_advisory_lock(268089350951355045);
2547
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2548
+ Migrating to CreatePosts (20170701232120)
2549
+  (0.2ms) BEGIN
2550
+  (3.5ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "content" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2551
+  (0.8ms) CREATE INDEX "index_posts_on_title" ON "posts" ("title")
2552
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170701232120"]]
2553
+  (0.4ms) COMMIT
2554
+ Migrating to CreateUsers (20170701232122)
2555
+  (0.3ms) BEGIN
2556
+  (2.7ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying, "metadata" jsonb, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2557
+  (0.7ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
2558
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170701232122"]]
2559
+  (0.3ms) COMMIT
2560
+ Migrating to CreateUserPosts (20170701232124)
2561
+  (0.3ms) BEGIN
2562
+  (6.5ms) CREATE TABLE "user_posts" ("id" serial primary key, "user_id" integer, "post_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, CONSTRAINT "fk_rails_6c6a346128"
2563
+ FOREIGN KEY ("user_id")
2564
+ REFERENCES "users" ("id")
2565
+ , CONSTRAINT "fk_rails_38a7c4b06f"
2566
+ FOREIGN KEY ("post_id")
2567
+ REFERENCES "posts" ("id")
2568
+ )
2569
+  (0.8ms) CREATE INDEX "index_user_posts_on_user_id" ON "user_posts" ("user_id")
2570
+  (0.7ms) CREATE INDEX "index_user_posts_on_post_id" ON "user_posts" ("post_id")
2571
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170701232124"]]
2572
+  (0.5ms) COMMIT
2573
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2574
+  (0.2ms) BEGIN
2575
+ SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2017-07-01 23:21:26.651815"], ["updated_at", "2017-07-01 23:21:26.651815"]]
2576
+  (0.4ms) COMMIT
2577
+  (0.2ms) SELECT pg_advisory_unlock(268089350951355045)
2578
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2579
+  (6.9ms) DROP TABLE if exists SCHEMA_MIGRATIONS cascade;
2580
+  (7.3ms) DROP TABLE if exists AR_INTERNAL_METADATA cascade;
2581
+  (8.5ms) DROP TABLE if exists USERS cascade;
2582
+  (3.4ms) DROP TABLE if exists POSTS cascade;
2583
+  (2.1ms) DROP TABLE if exists USER_POSTS cascade;
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: localtower
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damian Le Nouaille
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-29 00:00:00.000000000 Z
11
+ date: 2017-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.0
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: 5.0.0
22
+ version: 5.1.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
- version: 5.0.0
29
+ version: 4.2.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 5.1.0
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: thor
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -94,6 +100,20 @@ dependencies:
94
100
  - - ">="
95
101
  - !ruby/object:Gem::Version
96
102
  version: '0'
103
+ - !ruby/object:Gem::Dependency
104
+ name: require_reloader
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ type: :runtime
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
97
117
  - !ruby/object:Gem::Dependency
98
118
  name: rspec-rails
99
119
  requirement: !ruby/object:Gem::Requirement
@@ -326,7 +346,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
326
346
  version: '0'
327
347
  requirements: []
328
348
  rubyforge_project:
329
- rubygems_version: 2.6.8
349
+ rubygems_version: 2.6.12
330
350
  signing_key:
331
351
  specification_version: 4
332
352
  summary: Manage your models, relations, and migrations from a simple UI.