locale_rails 2.0.4 → 2.0.5

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.
data/COPYING ADDED
@@ -0,0 +1,56 @@
1
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
2
+ You can redistribute it and/or modify it under either the terms of the GPL
3
+ version 2 (see the file GPL), or the conditions below:
4
+
5
+ 1. You may make and give away verbatim copies of the source form of the
6
+ software without restriction, provided that you duplicate all of the
7
+ original copyright notices and associated disclaimers.
8
+
9
+ 2. You may modify your copy of the software in any way, provided that
10
+ you do at least ONE of the following:
11
+
12
+ a) place your modifications in the Public Domain or otherwise
13
+ make them Freely Available, such as by posting said
14
+ modifications to Usenet or an equivalent medium, or by allowing
15
+ the author to include your modifications in the software.
16
+
17
+ b) use the modified software only within your corporation or
18
+ organization.
19
+
20
+ c) give non-standard binaries non-standard names, with
21
+ instructions on where to get the original software distribution.
22
+
23
+ d) make other distribution arrangements with the author.
24
+
25
+ 3. You may distribute the software in object code or binary form,
26
+ provided that you do at least ONE of the following:
27
+
28
+ a) distribute the binaries and library files of the software,
29
+ together with instructions (in the manual page or equivalent)
30
+ on where to get the original distribution.
31
+
32
+ b) accompany the distribution with the machine-readable source of
33
+ the software.
34
+
35
+ c) give non-standard binaries non-standard names, with
36
+ instructions on where to get the original software distribution.
37
+
38
+ d) make other distribution arrangements with the author.
39
+
40
+ 4. You may modify and include the part of the software into any other
41
+ software (possibly commercial). But some files in the distribution
42
+ are not written by the author, so that they are not under these terms.
43
+
44
+ For the list of those files and their copying conditions, see the
45
+ file LEGAL.
46
+
47
+ 5. The scripts and library files supplied as input to or produced as
48
+ output from the software do not automatically fall under the
49
+ copyright of the software, but belong to whomever generated them,
50
+ and may be sold commercially, and may be aggregated with this
51
+ software.
52
+
53
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
54
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
55
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
56
+ PURPOSE.
data/ChangeLog CHANGED
@@ -1,3 +1,11 @@
1
+ = locale_rails-2.0.5 (2009-11-11)
2
+ * Update license information (explicit to use Ruby's or LGPL).
3
+ [Pointed out by Masateru Yoshikawa]
4
+ * Fixed to work expire_fragment/action.
5
+ [Reported by Sean Tan]
6
+ * Support Rails-2.3.2, 2.3.3 and 2.3.4.
7
+ Update the version information.
8
+
1
9
  = locale_rails-2.0.4 (2009-05-22)
2
10
  * Fixed that localized views are not working correctly. [Reported by Dan Coutu]
3
11
  * Add tests
@@ -42,14 +42,17 @@ auto-detection and some other features includes this library.
42
42
  I18n.default_locale = "ja"
43
43
 
44
44
  == Support matrix
45
+ * locale_rails-2.0.5 - rails-2.3.2,2.3.3,2.3.4
46
+ * locale_rails-2.0.4 - rails-2.3.2
47
+ * locale_rails-2.0.3 - rails-2.3.2
45
48
  * locale_rails-2.0.2 - rails-2.3.2
46
49
  * locale_rails-2.0.1 - rails-2.3.2
47
50
  * locale_rails-2.0.0 - rails-2.3.2
48
51
  * locale_rails-0.1.0 - rails-2.1.x
49
52
 
50
53
  == License
51
- This program is licenced under the same licence as Ruby.
52
- (See the file 'COPYING'.)
54
+ This program is licenced under the same licence as Ruby(See COPYING) or
55
+ LGPL(Lesser General Public License: http://www.gnu.org/licenses/lgpl-3.0.txt).
53
56
 
54
57
  == Maintainer
55
58
  Masao Mutoh <mutomasa at gmail.com>
data/Rakefile CHANGED
@@ -47,7 +47,7 @@ spec = Gem::Specification.new do |s|
47
47
  s.files = FileList['**/*'].to_a.select{|v| v !~ /pkg|CVS|git/}
48
48
  s.require_path = 'lib'
49
49
  s.bindir = 'bin'
50
- s.add_dependency('locale', '>= 2.0.4')
50
+ s.add_dependency('locale', '>= 2.0.5')
51
51
  s.has_rdoc = true
52
52
  s.description = <<-EOF
53
53
  Ruby-Locale for Ruby on Rails is the pure ruby library which provides basic functions for localization.
@@ -4,7 +4,7 @@
4
4
  Copyright (C) 2008-2009 Masao Mutoh
5
5
 
6
6
  You may redistribute it and/or modify it under the same
7
- license terms as Ruby.
7
+ license terms as Ruby or LGPL.
8
8
 
9
9
  =end
10
10
 
@@ -1,19 +1,16 @@
1
1
  =begin
2
2
  lib/locale_rails/action_controller/base.rb - Ruby/Locale for "Ruby on Rails"
3
3
 
4
- Copyright (C) 2008 Masao Mutoh
4
+ Copyright (C) 2008-2009 Masao Mutoh
5
5
 
6
6
  You may redistribute it and/or modify it under the same
7
- license terms as Ruby.
8
-
9
- $Id: action_controller.rb 25 2008-11-30 15:44:24Z mutoh $
7
+ license terms as Ruby or LGPL.
10
8
  =end
11
9
 
12
10
  require 'action_controller'
13
11
 
14
12
  module ActionController #:nodoc:
15
13
  class Base
16
-
17
14
  prepend_before_filter :init_locale
18
15
 
19
16
  def self.locale_filter_chain # :nodoc:
@@ -1,12 +1,10 @@
1
1
  =begin
2
2
  lib/locale_rails/action_controller.rb - Ruby/Locale for "Ruby on Rails"
3
3
 
4
- Copyright (C) 2008 Masao Mutoh
4
+ Copyright (C) 2008-2009 Masao Mutoh
5
5
 
6
6
  You may redistribute it and/or modify it under the same
7
- license terms as Ruby.
8
-
9
- $Id: action_controller.rb 25 2008-11-30 15:44:24Z mutoh $
7
+ license terms as Ruby or LGPL.
10
8
  =end
11
9
 
12
10
  require 'action_controller/caching'
@@ -15,9 +13,13 @@ module ActionController #:nodoc:
15
13
 
16
14
  module Caching
17
15
  module Fragments
16
+ @@fragmented_locales = []
18
17
  def fragment_cache_key_with_locale(name)
19
18
  ret = fragment_cache_key_without_locale(name)
20
19
  if ret.is_a? String
20
+ unless @@fragmented_locales.include? I18n.locale
21
+ @@fragmented_locales << I18n.locale
22
+ end
21
23
  ret.gsub(/:/, ".") << "_#{I18n.locale}"
22
24
  else
23
25
  ret
@@ -36,8 +38,8 @@ module ActionController #:nodoc:
36
38
  end
37
39
  else
38
40
  key = key.gsub(/:/, ".")
39
- self.class.benchmark "Expired fragment: #{key}, lang = #{I18n.supported_locales}" do
40
- supported_locales.each do |lang|
41
+ self.class.benchmark "Expired fragment: #{key}, lang = #{@@fragmented_locales}" do
42
+ @@fragmented_locales.each do |lang|
41
43
  fc_store.delete("#{key}_#{lang}", options)
42
44
  end
43
45
  end
@@ -4,7 +4,7 @@
4
4
  Copyright (C) 2009 Masao Mutoh
5
5
 
6
6
  You may redistribute it and/or modify it under the same
7
- license terms as Ruby.
7
+ license terms as Ruby or LGPL.
8
8
 
9
9
  =end
10
10
 
@@ -1,10 +1,10 @@
1
1
  =begin
2
2
  locale_rails/lib/action_view.rb - Ruby/Locale for "Ruby on Rails"
3
3
 
4
- Copyright (C) 2008 Masao Mutoh
4
+ Copyright (C) 2008-2009 Masao Mutoh
5
5
 
6
6
  You may redistribute it and/or modify it under the same
7
- license terms as Ruby.
7
+ license terms as Ruby or LGPL.
8
8
 
9
9
  Original: Ruby-GetText-Package-1.92.0
10
10
 
@@ -4,9 +4,8 @@
4
4
  Copyright (C) 2008,2009 Masao Mutoh
5
5
 
6
6
  You may redistribute it and/or modify it under the same
7
- license terms as Ruby.
7
+ license terms as Ruby or LGPL.
8
8
 
9
- $Id: i18n.rb 25 2008-11-30 15:44:24Z mutoh $
10
9
  =end
11
10
 
12
11
  module I18n
@@ -1,4 +1,4 @@
1
1
  module LocaleRails
2
- RAILS_VERSION = "2.3.2"
3
- VERSION = "2.0.4"
2
+ RAILS_VERSION = "2.3.4"
3
+ VERSION = "2.0.5"
4
4
  end
@@ -5,7 +5,7 @@
5
5
  # ENV['RAILS_ENV'] ||= 'production'
6
6
 
7
7
  # Specifies gem version of Rails to use when vendor/rails is not present
8
- RAILS_GEM_VERSION = '2.3.2' unless defined? RAILS_GEM_VERSION
8
+ RAILS_GEM_VERSION = '2.3.3' unless defined? RAILS_GEM_VERSION
9
9
 
10
10
  # Bootstrap the Rails environment, frameworks, and default configuration
11
11
  require File.join(File.dirname(__FILE__), 'boot')
File without changes
@@ -0,0 +1,128 @@
1
+ # Logfile created on Sun Oct 25 03:26:31 +0900 2009 SQL (0.4ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (0.3ms)  SELECT name
6
+ FROM sqlite_master
7
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
8
+ 
9
+
10
+
11
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-10-25 03:33:52) [GET]
12
+
13
+ ActionController::RoutingError (No route matches "/test" with {:method=>:get}):
14
+ /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
15
+ /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
16
+ /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
17
+ /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
18
+ /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
19
+ /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
20
+ /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
21
+ /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
22
+ /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
23
+ /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
24
+
25
+ Rendering rescues/layout (not_found)
26
+
27
+
28
+ Processing SamplesController#index (for 127.0.0.1 at 2009-10-25 03:33:55) [GET]
29
+ Rendering template within layouts/samples
30
+ Rendering samples/index
31
+ Rendered samples/_part (23.2ms)
32
+ Completed in 239ms (View: 70, DB: 0) | 200 OK [http://localhost/]
33
+
34
+
35
+ Processing SamplesController#index (for 127.0.0.1 at 2009-10-25 03:34:01) [GET]
36
+ Parameters: {"lang"=>"fr"}
37
+ Rendering template within layouts/samples
38
+ Rendering samples/index
39
+ Rendered samples/_part (8.1ms)
40
+ Completed in 20ms (View: 18, DB: 0) | 200 OK [http://localhost/samples?lang=fr]
41
+
42
+
43
+ Processing SamplesController#set_cookie (for 127.0.0.1 at 2009-10-25 03:34:14) [GET]
44
+ Parameters: {"id"=>"zh_CN"}
45
+ Redirected to http://localhost:3000/samples
46
+ Completed in 4ms (DB: 0) | 302 Found [http://localhost/samples/set_cookie/zh_CN]
47
+
48
+
49
+ Processing SamplesController#index (for 127.0.0.1 at 2009-10-25 03:34:14) [GET]
50
+ Rendering template within layouts/samples
51
+ Rendering samples/index
52
+ Rendered samples/_part (7.8ms)
53
+ Completed in 21ms (View: 18, DB: 0) | 200 OK [http://localhost/samples]
54
+
55
+
56
+ Processing SamplesController#index (for 127.0.0.1 at 2009-10-25 03:34:33) [GET]
57
+ Rendering template within layouts/samples
58
+ Rendering samples/index
59
+ Rendered samples/_part (7.7ms)
60
+ Completed in 20ms (View: 18, DB: 0) | 200 OK [http://localhost/samples]
61
+
62
+
63
+ Processing SamplesController#clear_cookie (for 127.0.0.1 at 2009-10-25 03:34:40) [GET]
64
+ Redirected to http://localhost:3000/samples
65
+ Completed in 3ms (DB: 0) | 302 Found [http://localhost/samples/clear_cookie]
66
+
67
+
68
+ Processing SamplesController#index (for 127.0.0.1 at 2009-10-25 03:34:40) [GET]
69
+ Rendering template within layouts/samples
70
+ Rendering samples/index
71
+ Rendered samples/_part (8.1ms)
72
+ Completed in 22ms (View: 19, DB: 0) | 200 OK [http://localhost/samples]
73
+ SQL (1.2ms)  SELECT name
74
+ FROM sqlite_master
75
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
76
+ 
77
+
78
+
79
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-08 22:02:14) [GET]
80
+
81
+ ActionController::RoutingError (No route matches "/test" with {:method=>:get}):
82
+ /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
83
+ /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
84
+ /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
85
+ /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
86
+ /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
87
+ /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
88
+ /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
89
+ /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
90
+ /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
91
+ /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
92
+
93
+ Rendering rescues/layout (not_found)
94
+ SQL (0.3ms)  SELECT name
95
+ FROM sqlite_master
96
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
97
+ 
98
+
99
+
100
+ Processing SamplesController#index (for 127.0.0.1 at 2009-11-08 22:02:33) [GET]
101
+ Rendering template within layouts/samples
102
+ Rendering samples/index
103
+ Rendered samples/_part (7.1ms)
104
+ Completed in 57ms (View: 53, DB: 0) | 200 OK [http://localhost/]
105
+
106
+
107
+ Processing SamplesController#index (for 127.0.0.1 at 2009-11-08 22:02:40) [GET]
108
+ Parameters: {"lang"=>"pt_BR"}
109
+ Rendering template within layouts/samples
110
+ Rendering samples/index
111
+ Rendered samples/_part (9.3ms)
112
+ Completed in 30ms (View: 27, DB: 0) | 200 OK [http://localhost/samples?lang=pt_BR]
113
+
114
+
115
+ Processing SamplesController#index (for 127.0.0.1 at 2009-11-08 22:02:45) [GET]
116
+ Parameters: {"lang"=>"zh_CN"}
117
+ Rendering template within layouts/samples
118
+ Rendering samples/index
119
+ Rendered samples/_part (13.5ms)
120
+ Completed in 29ms (View: 27, DB: 0) | 200 OK [http://localhost/samples?lang=zh_CN]
121
+
122
+
123
+ Processing SamplesController#index (for 127.0.0.1 at 2009-11-08 22:02:51) [GET]
124
+ Parameters: {"lang"=>"en_Latn_US_NYNORSK"}
125
+ Rendering template within layouts/samples
126
+ Rendering samples/index
127
+ Rendered samples/_part (32.1ms)
128
+ Completed in 65ms (View: 63, DB: 0) | 200 OK [http://localhost/samples?lang=en_Latn_US_NYNORSK]
@@ -5,4 +5,9 @@ class ArticlesController < ApplicationController
5
5
 
6
6
  def list
7
7
  end
8
+
9
+ def expire_cache
10
+ expire_action(:action => "list")
11
+ render :text => "OK"
12
+ end
8
13
  end
@@ -1,7 +1,7 @@
1
1
  # Be sure to restart your server when you modify this file
2
2
 
3
3
  # Specifies gem version of Rails to use when vendor/rails is not present
4
- RAILS_GEM_VERSION = '2.3.2' unless defined? RAILS_GEM_VERSION
4
+ #RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION
5
5
 
6
6
  # Bootstrap the Rails environment, frameworks, and default configuration
7
7
  require File.join(File.dirname(__FILE__), 'boot')
@@ -1,6 +1,7 @@
1
1
  ActionController::Routing::Routes.draw do |map|
2
2
  map.resources :articles
3
- map.root :controller => :articles
3
+ map.root :controller => :articles, :collection => {:expire_cache => :get}
4
+
4
5
  # The priority is based upon order of creation: first created -> highest priority.
5
6
 
6
7
  # Sample of regular route:
File without changes
@@ -0,0 +1,172 @@
1
+ # Logfile created on Sun Oct 25 02:06:19 +0900 2009 SQL (0.6ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (0.3ms) select sqlite_version(*)
6
+ SQL (8.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
+ SQL (3.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+ SQL (0.3ms)  SELECT name
9
+ FROM sqlite_master
10
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
11
+ 
12
+ SQL (0.2ms) SELECT version FROM schema_migrations
13
+ SQL (0.5ms)  SELECT name
14
+ FROM sqlite_master
15
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
16
+ 
17
+ SQL (0.1ms) SELECT version FROM schema_migrations
18
+ SQL (0.5ms)  SELECT name
19
+ FROM sqlite_master
20
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
21
+ 
22
+ SQL (0.1ms) SELECT version FROM schema_migrations
23
+ SQL (0.6ms)  SELECT name
24
+ FROM sqlite_master
25
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
26
+ 
27
+ SQL (0.1ms) SELECT version FROM schema_migrations
28
+ SQL (0.5ms)  SELECT name
29
+ FROM sqlite_master
30
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
31
+ 
32
+ SQL (0.1ms) SELECT version FROM schema_migrations
33
+ SQL (0.6ms)  SELECT name
34
+ FROM sqlite_master
35
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
36
+ 
37
+ SQL (0.1ms) SELECT version FROM schema_migrations
38
+ SQL (0.6ms)  SELECT name
39
+ FROM sqlite_master
40
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
41
+ 
42
+ SQL (0.1ms) SELECT version FROM schema_migrations
43
+ SQL (0.5ms)  SELECT name
44
+ FROM sqlite_master
45
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
46
+ 
47
+ SQL (0.1ms) SELECT version FROM schema_migrations
48
+ SQL (0.5ms)  SELECT name
49
+ FROM sqlite_master
50
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
51
+ 
52
+ SQL (0.1ms) SELECT version FROM schema_migrations
53
+ SQL (0.6ms)  SELECT name
54
+ FROM sqlite_master
55
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
56
+ 
57
+ SQL (0.1ms) SELECT version FROM schema_migrations
58
+ SQL (0.6ms)  SELECT name
59
+ FROM sqlite_master
60
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
61
+ 
62
+ SQL (0.1ms) SELECT version FROM schema_migrations
63
+ SQL (0.5ms)  SELECT name
64
+ FROM sqlite_master
65
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
66
+ 
67
+ SQL (0.1ms) SELECT version FROM schema_migrations
68
+ SQL (0.6ms)  SELECT name
69
+ FROM sqlite_master
70
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
71
+ 
72
+ SQL (0.2ms) SELECT version FROM schema_migrations
73
+ SQL (0.5ms)  SELECT name
74
+ FROM sqlite_master
75
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
76
+ 
77
+ SQL (0.1ms) SELECT version FROM schema_migrations
78
+ SQL (0.6ms)  SELECT name
79
+ FROM sqlite_master
80
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
81
+ 
82
+ SQL (0.1ms) SELECT version FROM schema_migrations
83
+ SQL (0.5ms)  SELECT name
84
+ FROM sqlite_master
85
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
86
+ 
87
+ SQL (0.1ms) SELECT version FROM schema_migrations
88
+ SQL (0.6ms)  SELECT name
89
+ FROM sqlite_master
90
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
91
+ 
92
+ SQL (0.1ms) SELECT version FROM schema_migrations
93
+ SQL (0.5ms)  SELECT name
94
+ FROM sqlite_master
95
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
96
+ 
97
+ SQL (0.1ms) SELECT version FROM schema_migrations
98
+ SQL (0.5ms)  SELECT name
99
+ FROM sqlite_master
100
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
101
+ 
102
+ SQL (0.1ms) SELECT version FROM schema_migrations
103
+ SQL (0.6ms)  SELECT name
104
+ FROM sqlite_master
105
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
106
+ 
107
+ SQL (0.1ms) SELECT version FROM schema_migrations
108
+ SQL (0.5ms)  SELECT name
109
+ FROM sqlite_master
110
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
111
+ 
112
+ SQL (0.1ms) SELECT version FROM schema_migrations
113
+ SQL (0.5ms)  SELECT name
114
+ FROM sqlite_master
115
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
116
+ 
117
+ SQL (0.1ms) SELECT version FROM schema_migrations
118
+ SQL (0.6ms)  SELECT name
119
+ FROM sqlite_master
120
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
121
+ 
122
+ SQL (0.1ms) SELECT version FROM schema_migrations
123
+ SQL (0.5ms)  SELECT name
124
+ FROM sqlite_master
125
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
126
+ 
127
+ SQL (0.1ms) SELECT version FROM schema_migrations
128
+ SQL (0.6ms)  SELECT name
129
+ FROM sqlite_master
130
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
131
+ 
132
+ SQL (0.1ms) SELECT version FROM schema_migrations
133
+ SQL (1.0ms)  SELECT name
134
+ FROM sqlite_master
135
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
136
+ 
137
+ SQL (0.3ms) SELECT version FROM schema_migrations
138
+ SQL (0.7ms)  SELECT name
139
+ FROM sqlite_master
140
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
141
+ 
142
+ SQL (0.2ms) SELECT version FROM schema_migrations
143
+ SQL (1.1ms)  SELECT name
144
+ FROM sqlite_master
145
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
146
+ 
147
+ SQL (0.2ms) SELECT version FROM schema_migrations
148
+ SQL (0.6ms)  SELECT name
149
+ FROM sqlite_master
150
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
151
+ 
152
+ SQL (0.1ms) SELECT version FROM schema_migrations
153
+ SQL (0.7ms)  SELECT name
154
+ FROM sqlite_master
155
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
156
+ 
157
+ SQL (0.2ms) SELECT version FROM schema_migrations
158
+ SQL (0.7ms)  SELECT name
159
+ FROM sqlite_master
160
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
161
+ 
162
+ SQL (0.2ms) SELECT version FROM schema_migrations
163
+ SQL (1.0ms)  SELECT name
164
+ FROM sqlite_master
165
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
166
+ 
167
+ SQL (0.2ms) SELECT version FROM schema_migrations
168
+ SQL (0.7ms)  SELECT name
169
+ FROM sqlite_master
170
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
171
+ 
172
+ SQL (0.2ms) SELECT version FROM schema_migrations