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 +56 -0
- data/ChangeLog +8 -0
- data/README.rdoc +5 -2
- data/Rakefile +1 -1
- data/lib/locale_rails/action_controller.rb +1 -1
- data/lib/locale_rails/action_controller/base.rb +2 -5
- data/lib/locale_rails/action_controller/caching.rb +8 -6
- data/lib/locale_rails/action_controller/test_process.rb +1 -1
- data/lib/locale_rails/action_view.rb +2 -2
- data/lib/locale_rails/i18n.rb +1 -2
- data/lib/locale_rails/version.rb +2 -2
- data/sample/config/environment.rb +1 -1
- data/sample/db/development.sqlite3 +0 -0
- data/sample/log/development.log +128 -0
- data/test/app/controllers/articles_controller.rb +5 -0
- data/test/config/environment.rb +1 -1
- data/test/config/routes.rb +2 -1
- data/test/db/development.sqlite3 +0 -0
- data/test/db/test.sqlite3 +0 -0
- data/test/log/development.log +172 -0
- data/test/log/test.log +4016 -0
- data/test/test/functional/articles_controller_test.rb +5 -0
- metadata +100 -136
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
|
data/README.rdoc
CHANGED
@@ -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
|
-
(
|
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.
|
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.
|
@@ -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 = #{
|
40
|
-
|
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
|
@@ -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
|
|
data/lib/locale_rails/i18n.rb
CHANGED
data/lib/locale_rails/version.rb
CHANGED
@@ -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.
|
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 [4;36;1mSQL (0.4ms)[0m [0;1m SELECT name
|
2
|
+
FROM sqlite_master
|
3
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4
|
+
[0m
|
5
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
6
|
+
FROM sqlite_master
|
7
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
8
|
+
[0m
|
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
|
+
[4;36;1mSQL (1.2ms)[0m [0;1m SELECT name
|
74
|
+
FROM sqlite_master
|
75
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
76
|
+
[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
95
|
+
FROM sqlite_master
|
96
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
97
|
+
[0m
|
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]
|
data/test/config/environment.rb
CHANGED
@@ -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.
|
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')
|
data/test/config/routes.rb
CHANGED
@@ -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:
|
Binary file
|
File without changes
|
@@ -0,0 +1,172 @@
|
|
1
|
+
# Logfile created on Sun Oct 25 02:06:19 +0900 2009 [4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
2
|
+
FROM sqlite_master
|
3
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4
|
+
[0m
|
5
|
+
[4;35;1mSQL (0.3ms)[0m [0mselect sqlite_version(*)[0m
|
6
|
+
[4;36;1mSQL (8.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
7
|
+
[4;35;1mSQL (3.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
9
|
+
FROM sqlite_master
|
10
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
11
|
+
[0m
|
12
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM schema_migrations[0m
|
13
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
14
|
+
FROM sqlite_master
|
15
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
16
|
+
[0m
|
17
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
18
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
19
|
+
FROM sqlite_master
|
20
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
21
|
+
[0m
|
22
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
23
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
24
|
+
FROM sqlite_master
|
25
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
26
|
+
[0m
|
27
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
28
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
29
|
+
FROM sqlite_master
|
30
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
31
|
+
[0m
|
32
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
33
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
34
|
+
FROM sqlite_master
|
35
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
36
|
+
[0m
|
37
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
38
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
39
|
+
FROM sqlite_master
|
40
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
41
|
+
[0m
|
42
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
43
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
44
|
+
FROM sqlite_master
|
45
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
46
|
+
[0m
|
47
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
48
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
49
|
+
FROM sqlite_master
|
50
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
51
|
+
[0m
|
52
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
53
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
54
|
+
FROM sqlite_master
|
55
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
56
|
+
[0m
|
57
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
58
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
59
|
+
FROM sqlite_master
|
60
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
61
|
+
[0m
|
62
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
63
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
64
|
+
FROM sqlite_master
|
65
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
66
|
+
[0m
|
67
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
68
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
69
|
+
FROM sqlite_master
|
70
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
71
|
+
[0m
|
72
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM schema_migrations[0m
|
73
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
74
|
+
FROM sqlite_master
|
75
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
76
|
+
[0m
|
77
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
78
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
79
|
+
FROM sqlite_master
|
80
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
81
|
+
[0m
|
82
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
83
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
84
|
+
FROM sqlite_master
|
85
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
86
|
+
[0m
|
87
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
88
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
89
|
+
FROM sqlite_master
|
90
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
91
|
+
[0m
|
92
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
93
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
94
|
+
FROM sqlite_master
|
95
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
96
|
+
[0m
|
97
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
98
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
99
|
+
FROM sqlite_master
|
100
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
101
|
+
[0m
|
102
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
103
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
104
|
+
FROM sqlite_master
|
105
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
106
|
+
[0m
|
107
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
108
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
109
|
+
FROM sqlite_master
|
110
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
111
|
+
[0m
|
112
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
113
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
114
|
+
FROM sqlite_master
|
115
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
116
|
+
[0m
|
117
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
118
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
119
|
+
FROM sqlite_master
|
120
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
121
|
+
[0m
|
122
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
123
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
124
|
+
FROM sqlite_master
|
125
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
126
|
+
[0m
|
127
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
128
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
129
|
+
FROM sqlite_master
|
130
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
131
|
+
[0m
|
132
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
133
|
+
[4;36;1mSQL (1.0ms)[0m [0;1m SELECT name
|
134
|
+
FROM sqlite_master
|
135
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
136
|
+
[0m
|
137
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM schema_migrations[0m
|
138
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
139
|
+
FROM sqlite_master
|
140
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
141
|
+
[0m
|
142
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM schema_migrations[0m
|
143
|
+
[4;36;1mSQL (1.1ms)[0m [0;1m SELECT name
|
144
|
+
FROM sqlite_master
|
145
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
146
|
+
[0m
|
147
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM schema_migrations[0m
|
148
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
149
|
+
FROM sqlite_master
|
150
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
151
|
+
[0m
|
152
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
153
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
154
|
+
FROM sqlite_master
|
155
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
156
|
+
[0m
|
157
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM schema_migrations[0m
|
158
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
159
|
+
FROM sqlite_master
|
160
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
161
|
+
[0m
|
162
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM schema_migrations[0m
|
163
|
+
[4;36;1mSQL (1.0ms)[0m [0;1m SELECT name
|
164
|
+
FROM sqlite_master
|
165
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
166
|
+
[0m
|
167
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM schema_migrations[0m
|
168
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
169
|
+
FROM sqlite_master
|
170
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
171
|
+
[0m
|
172
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM schema_migrations[0m
|