simple_helpers 0.0.5 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -2,14 +2,17 @@
2
2
  [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/vitormil/simple_helpers)
3
3
  [![Build Status](https://secure.travis-ci.org/vitormil/simple_helpers.png)](http://travis-ci.org/vitormil/simple_helpers)
4
4
 
5
- Easily create helper methods with I18n and interpolation support to your controllers and views.
5
+ Allow you to easily create helper methods with I18n and interpolation support to be used in your controllers and views.
6
6
 
7
7
  You can configure it to automaticly create some methods (like page_title) or call the method **simple_helper** manually according to your needs.
8
8
 
9
9
  To display page title in your view:
10
10
 
11
11
  ```ruby
12
- <%= page_title %>
12
+ <head>
13
+ <title><%= page_title %></title>
14
+ ...
15
+ </head>
13
16
  ```
14
17
 
15
18
  ### Usage
@@ -29,7 +32,7 @@ end
29
32
  And/or call the method **simple_helper** manually according to your needs:
30
33
 
31
34
  ```ruby
32
- # some examples
35
+ # declaring one method
33
36
  simple_helper :page_subtitle, :title => @post.title
34
37
 
35
38
  # declare multiple helpers in one statement
@@ -43,6 +46,9 @@ page_footer "Post %{title} by %{author}"
43
46
 
44
47
  simple_helper :user_alert
45
48
  @user_alert_options = {:username => current_user.username }
49
+
50
+ # filling in the value manually
51
+ page_title @post.title
46
52
  ```
47
53
 
48
54
  If you didn't set the value manually, the gem will get it from your I18n backend.
@@ -71,7 +77,7 @@ en:
71
77
  In many cases you want to abstract your translations so that variables can be interpolated into the translation, just like Rails does.
72
78
 
73
79
  ```ruby
74
- page_title :name => @user.name
80
+ page_title :name => "John Doe"
75
81
  or
76
82
  @page_title_options.merge!({:name => "John Doe"})
77
83
  or
@@ -1,8 +1,8 @@
1
1
  module SimpleHelpers
2
2
  module Version
3
- MAJOR = 0
3
+ MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 5
5
+ PATCH = 0
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-24 00:00:00.000000000 Z
12
+ date: 2012-08-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -106,7 +106,6 @@ files:
106
106
  - spec/support/config/boot.rb
107
107
  - spec/support/config/database.yml
108
108
  - spec/support/config/locales/en.yml
109
- - spec/support/log/test.log
110
109
  - spec/support/public/javascripts/.gitkeep
111
110
  - spec/support/public/stylesheets/.gitkeep
112
111
  - templates/initializer.rb
@@ -124,7 +123,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
124
123
  version: '0'
125
124
  segments:
126
125
  - 0
127
- hash: -4509853982771799667
126
+ hash: -2281090930503937938
128
127
  required_rubygems_version: !ruby/object:Gem::Requirement
129
128
  none: false
130
129
  requirements:
@@ -133,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
132
  version: '0'
134
133
  segments:
135
134
  - 0
136
- hash: -4509853982771799667
135
+ hash: -2281090930503937938
137
136
  requirements: []
138
137
  rubyforge_project:
139
138
  rubygems_version: 1.8.23
@@ -148,6 +147,5 @@ test_files:
148
147
  - spec/support/config/boot.rb
149
148
  - spec/support/config/database.yml
150
149
  - spec/support/config/locales/en.yml
151
- - spec/support/log/test.log
152
150
  - spec/support/public/javascripts/.gitkeep
153
151
  - spec/support/public/stylesheets/.gitkeep
@@ -1,330 +0,0 @@
1
- Connecting to database specified by database.yml
2
- Connecting to database specified by database.yml
3
- Connecting to database specified by database.yml
4
- Connecting to database specified by database.yml
5
- Connecting to database specified by database.yml
6
- Connecting to database specified by database.yml
7
- Connecting to database specified by database.yml
8
- Connecting to database specified by database.yml
9
- Connecting to database specified by database.yml
10
- Connecting to database specified by database.yml
11
- Connecting to database specified by database.yml
12
- Connecting to database specified by database.yml
13
- Connecting to database specified by database.yml
14
- Connecting to database specified by database.yml
15
- Connecting to database specified by database.yml
16
- Connecting to database specified by database.yml
17
- Connecting to database specified by database.yml
18
-  (2.1ms) select sqlite_version(*)
19
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
20
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
21
-  (0.0ms) PRAGMA index_list("schema_migrations")
22
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
-  (0.0ms) SELECT version FROM "schema_migrations"
24
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
25
- Connecting to database specified by database.yml
26
-  (1.9ms) select sqlite_version(*)
27
-  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
28
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
29
-  (0.0ms) PRAGMA index_list("schema_migrations")
30
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
31
-  (0.0ms) SELECT version FROM "schema_migrations"
32
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
33
- Connecting to database specified by database.yml
34
-  (3.7ms) select sqlite_version(*)
35
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
36
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
37
-  (0.0ms) PRAGMA index_list("schema_migrations")
38
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
39
-  (0.0ms) SELECT version FROM "schema_migrations"
40
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
41
- Connecting to database specified by database.yml
42
-  (1.8ms) select sqlite_version(*)
43
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
44
-  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
45
-  (0.0ms) PRAGMA index_list("schema_migrations")
46
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
47
-  (0.1ms) SELECT version FROM "schema_migrations"
48
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
49
- Connecting to database specified by database.yml
50
-  (1.8ms) select sqlite_version(*)
51
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
52
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
53
-  (0.0ms) PRAGMA index_list("schema_migrations")
54
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
55
-  (0.0ms) SELECT version FROM "schema_migrations"
56
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
57
- Connecting to database specified by database.yml
58
-  (1.6ms) select sqlite_version(*)
59
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
60
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
61
-  (0.0ms) PRAGMA index_list("schema_migrations")
62
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63
-  (0.0ms) SELECT version FROM "schema_migrations"
64
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
65
- Connecting to database specified by database.yml
66
-  (2.6ms) select sqlite_version(*)
67
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
68
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
69
-  (0.0ms) PRAGMA index_list("schema_migrations")
70
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
71
-  (0.0ms) SELECT version FROM "schema_migrations"
72
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
73
- Connecting to database specified by database.yml
74
-  (1.7ms) select sqlite_version(*)
75
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
76
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
77
-  (0.0ms) PRAGMA index_list("schema_migrations")
78
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
79
-  (0.0ms) SELECT version FROM "schema_migrations"
80
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
81
- Connecting to database specified by database.yml
82
-  (1.7ms) select sqlite_version(*)
83
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
84
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
85
-  (0.0ms) PRAGMA index_list("schema_migrations")
86
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
87
-  (0.0ms) SELECT version FROM "schema_migrations"
88
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
89
- Connecting to database specified by database.yml
90
-  (1.6ms) select sqlite_version(*)
91
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
92
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
93
-  (0.0ms) PRAGMA index_list("schema_migrations")
94
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
-  (0.0ms) SELECT version FROM "schema_migrations"
96
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
97
- Connecting to database specified by database.yml
98
-  (1.7ms) select sqlite_version(*)
99
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
100
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
101
-  (0.0ms) PRAGMA index_list("schema_migrations")
102
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
103
-  (0.2ms) SELECT version FROM "schema_migrations"
104
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
105
- Connecting to database specified by database.yml
106
-  (1.6ms) select sqlite_version(*)
107
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
108
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
109
-  (0.0ms) PRAGMA index_list("schema_migrations")
110
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
111
-  (0.0ms) SELECT version FROM "schema_migrations"
112
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
113
- Connecting to database specified by database.yml
114
-  (1.6ms) select sqlite_version(*)
115
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
116
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
117
-  (0.0ms) PRAGMA index_list("schema_migrations")
118
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
119
-  (0.0ms) SELECT version FROM "schema_migrations"
120
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
121
- Connecting to database specified by database.yml
122
-  (1.6ms) select sqlite_version(*)
123
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
124
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
125
-  (0.0ms) PRAGMA index_list("schema_migrations")
126
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
127
-  (0.0ms) SELECT version FROM "schema_migrations"
128
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
129
- Connecting to database specified by database.yml
130
-  (1.8ms) select sqlite_version(*)
131
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
132
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
133
-  (0.0ms) PRAGMA index_list("schema_migrations")
134
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
135
-  (0.1ms) SELECT version FROM "schema_migrations"
136
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
137
- Connecting to database specified by database.yml
138
-  (1.7ms) select sqlite_version(*)
139
-  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
140
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
141
-  (0.0ms) PRAGMA index_list("schema_migrations")
142
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
143
-  (0.0ms) SELECT version FROM "schema_migrations"
144
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
145
- Connecting to database specified by database.yml
146
-  (1.7ms) select sqlite_version(*)
147
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
148
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
149
-  (0.0ms) PRAGMA index_list("schema_migrations")
150
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
151
-  (0.0ms) SELECT version FROM "schema_migrations"
152
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
153
- Connecting to database specified by database.yml
154
-  (1.6ms) select sqlite_version(*)
155
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
156
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
157
-  (0.0ms) PRAGMA index_list("schema_migrations")
158
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
159
-  (0.0ms) SELECT version FROM "schema_migrations"
160
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
161
- Connecting to database specified by database.yml
162
-  (1.6ms) select sqlite_version(*)
163
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
164
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
165
-  (0.0ms) PRAGMA index_list("schema_migrations")
166
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
167
-  (0.0ms) SELECT version FROM "schema_migrations"
168
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
169
- Connecting to database specified by database.yml
170
-  (1.6ms) select sqlite_version(*)
171
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
172
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
173
-  (0.0ms) PRAGMA index_list("schema_migrations")
174
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
175
-  (0.0ms) SELECT version FROM "schema_migrations"
176
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
177
- Connecting to database specified by database.yml
178
-  (2.1ms) select sqlite_version(*)
179
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
180
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
181
-  (0.0ms) PRAGMA index_list("schema_migrations")
182
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
183
-  (0.0ms) SELECT version FROM "schema_migrations"
184
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
185
- Connecting to database specified by database.yml
186
-  (1.6ms) select sqlite_version(*)
187
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
188
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
189
-  (0.0ms) PRAGMA index_list("schema_migrations")
190
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
191
-  (0.0ms) SELECT version FROM "schema_migrations"
192
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
193
- Connecting to database specified by database.yml
194
-  (1.6ms) select sqlite_version(*)
195
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
196
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
197
-  (0.0ms) PRAGMA index_list("schema_migrations")
198
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
199
-  (0.1ms) SELECT version FROM "schema_migrations"
200
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
201
- Connecting to database specified by database.yml
202
-  (1.6ms) select sqlite_version(*)
203
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
204
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
205
-  (0.0ms) PRAGMA index_list("schema_migrations")
206
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
207
-  (0.0ms) SELECT version FROM "schema_migrations"
208
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
209
- Connecting to database specified by database.yml
210
-  (1.7ms) select sqlite_version(*)
211
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
212
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
213
-  (0.0ms) PRAGMA index_list("schema_migrations")
214
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
215
-  (0.0ms) SELECT version FROM "schema_migrations"
216
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
217
- Connecting to database specified by database.yml
218
-  (2.7ms) select sqlite_version(*)
219
-  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
220
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
221
-  (0.0ms) PRAGMA index_list("schema_migrations")
222
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
223
-  (0.0ms) SELECT version FROM "schema_migrations"
224
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
225
- Connecting to database specified by database.yml
226
-  (1.6ms) select sqlite_version(*)
227
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
228
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
229
-  (0.0ms) PRAGMA index_list("schema_migrations")
230
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
231
-  (0.0ms) SELECT version FROM "schema_migrations"
232
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
233
- Connecting to database specified by database.yml
234
-  (1.6ms) select sqlite_version(*)
235
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
236
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
237
-  (0.0ms) PRAGMA index_list("schema_migrations")
238
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
239
-  (0.0ms) SELECT version FROM "schema_migrations"
240
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
241
- Connecting to database specified by database.yml
242
-  (1.5ms) select sqlite_version(*)
243
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
244
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
245
-  (0.0ms) PRAGMA index_list("schema_migrations")
246
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
247
-  (0.0ms) SELECT version FROM "schema_migrations"
248
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
249
- Connecting to database specified by database.yml
250
-  (1.6ms) select sqlite_version(*)
251
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
252
-  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
253
-  (0.1ms) PRAGMA index_list("schema_migrations")
254
-  (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
255
-  (0.1ms) SELECT version FROM "schema_migrations"
256
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
257
- Connecting to database specified by database.yml
258
-  (1.6ms) select sqlite_version(*)
259
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
260
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
261
-  (0.0ms) PRAGMA index_list("schema_migrations")
262
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
263
-  (0.1ms) SELECT version FROM "schema_migrations"
264
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
265
- Connecting to database specified by database.yml
266
-  (1.6ms) select sqlite_version(*)
267
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
268
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
269
-  (0.0ms) PRAGMA index_list("schema_migrations")
270
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
271
-  (0.0ms) SELECT version FROM "schema_migrations"
272
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
273
- Connecting to database specified by database.yml
274
-  (1.7ms) select sqlite_version(*)
275
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
276
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
277
-  (0.0ms) PRAGMA index_list("schema_migrations")
278
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
279
-  (0.0ms) SELECT version FROM "schema_migrations"
280
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
281
- Connecting to database specified by database.yml
282
-  (1.6ms) select sqlite_version(*)
283
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
284
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
285
-  (0.0ms) PRAGMA index_list("schema_migrations")
286
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
287
-  (0.0ms) SELECT version FROM "schema_migrations"
288
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
289
- Connecting to database specified by database.yml
290
-  (1.5ms) select sqlite_version(*)
291
-  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
292
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
293
-  (0.0ms) PRAGMA index_list("schema_migrations")
294
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
295
-  (0.0ms) SELECT version FROM "schema_migrations"
296
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
297
- Connecting to database specified by database.yml
298
-  (1.7ms) select sqlite_version(*)
299
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
300
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
301
-  (0.0ms) PRAGMA index_list("schema_migrations")
302
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
303
-  (0.0ms) SELECT version FROM "schema_migrations"
304
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
305
- Connecting to database specified by database.yml
306
-  (3.7ms) select sqlite_version(*)
307
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
308
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
309
-  (0.0ms) PRAGMA index_list("schema_migrations")
310
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
311
-  (0.0ms) SELECT version FROM "schema_migrations"
312
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
313
- Connecting to database specified by database.yml
314
-  (3.0ms) select sqlite_version(*)
315
-  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255))
316
-  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
317
-  (0.0ms) PRAGMA index_list("schema_migrations")
318
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
319
-  (0.1ms) SELECT version FROM "schema_migrations"
320
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
321
- Connecting to database specified by database.yml
322
- Connecting to database specified by database.yml
323
- Connecting to database specified by database.yml
324
- Connecting to database specified by database.yml
325
- Connecting to database specified by database.yml
326
- Connecting to database specified by database.yml
327
- Connecting to database specified by database.yml
328
- Connecting to database specified by database.yml
329
- Connecting to database specified by database.yml
330
- Connecting to database specified by database.yml