letter_bomb 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 727875388361f75d34008b1fdc4357bc0b480052
4
- data.tar.gz: 7ea281bd112250ace6e750716237fd0418088ac4
3
+ metadata.gz: 9bdedab11174967c2cea058d72e8096ae3c3ff9c
4
+ data.tar.gz: 88b92c6242e629cb0ea90620b3e5abd1646b48a7
5
5
  SHA512:
6
- metadata.gz: 5f7116ce0cd1147c63432ba133dbd6128eaf0148ca3eef103da19f31ca4a7e4c492222083d6825afd95efcf2c34aa190dd9298bddb242ee471dae7b022240a3c
7
- data.tar.gz: cfa030c3977cbf549b68f1b759f65ecc7701221a97d0b5816042eca768a09926712333be8f31393d023cd1e4fb71a068b188f2cd3b61da5b2bb26d79653e7e2f
6
+ metadata.gz: 449cd535938f6d622727ea464724bf8372bee8ef48293395564b8300a037415bb5cddd2bedd40780a111f660693fb1053dea1a50de4e2705347315ddf2f88813
7
+ data.tar.gz: f0fa53ab1a559d42c9e6e65f75ab554e947ad05f22a1c947d6df6ba9f0c993313766303f592eca6f75d5430a3f4d0747bf8ceed8367d458751156147ff41653d
data/README.md CHANGED
@@ -45,6 +45,7 @@ them.
45
45
 
46
46
  * [ags](https://github.com/ags)
47
47
  * [andrewk](https://github.com/andrewk)
48
+ * [lsimoneau](https://github.com/lsimoneau)
48
49
 
49
50
  ## Alternatives
50
51
 
@@ -1,4 +1,5 @@
1
1
  module LetterBomb
2
2
  class ApplicationController < ActionController::Base
3
+ layout 'letter_bomb/application'
3
4
  end
4
5
  end
@@ -14,13 +14,10 @@ module LetterBomb
14
14
  )
15
15
 
16
16
  respond_to do |format|
17
- format.html {
18
- render layout: "letter_bomb/application"
19
- }
17
+ format.html
20
18
 
21
19
  format.text {
22
- render layout: "letter_bomb/application",
23
- formats: [:html],
20
+ render formats: [:html],
24
21
  content_type: 'text/html'
25
22
  }
26
23
  end
@@ -1,6 +1,6 @@
1
1
  <% content_for :head do %>
2
2
  <meta http-equiv="Content-Type" content="text/html; charset=<%= @action.charset %>" />
3
- <title><%= @action.name %> - letter_bomb %></title>
3
+ <title><%= @action.name %> - letter_bomb<title>
4
4
  <style type="text/css">
5
5
  #message_headers {
6
6
  width: 100%;
@@ -1,3 +1,3 @@
1
1
  module LetterBomb
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
@@ -3240,3 +3240,203 @@ Processing by LetterBomb::MailersController#show as HTML
3240
3240
   (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3241
3241
  Completed 200 OK in 18ms (Views: 1.6ms | ActiveRecord: 0.6ms)
3242
3242
   (0.5ms) rollback transaction
3243
+ Connecting to database specified by database.yml
3244
+  (0.6ms) select sqlite_version(*)
3245
+  (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3246
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3247
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3248
+  (0.1ms) SELECT version FROM "schema_migrations"
3249
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
3250
+ Connecting to database specified by database.yml
3251
+  (0.2ms) begin transaction
3252
+ Started GET "/" for 127.0.0.1 at 2013-08-29 10:36:30 +1000
3253
+ Processing by LetterBomb::MailersController#index as HTML
3254
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.9ms)
3255
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
3256
+  (0.1ms) rollback transaction
3257
+  (0.0ms) begin transaction
3258
+  (0.0ms) rollback transaction
3259
+  (0.0ms) begin transaction
3260
+  (0.0ms) rollback transaction
3261
+  (0.0ms) begin transaction
3262
+  (0.0ms) SELECT COUNT(*) FROM "users"
3263
+  (0.0ms) SAVEPOINT active_record_1
3264
+ SQL (2.9ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00], ["name", "bob"], ["updated_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00]]
3265
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3266
+  (0.1ms) SELECT COUNT(*) FROM "users"
3267
+  (0.3ms) rollback transaction
3268
+  (0.0ms) begin transaction
3269
+  (0.0ms) SAVEPOINT active_record_1
3270
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00], ["name", "bob"], ["updated_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00]]
3271
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3272
+  (0.4ms) rollback transaction
3273
+  (0.0ms) begin transaction
3274
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:36:30 +1000
3275
+ Processing by LetterBomb::MailersController#show as HTML
3276
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3277
+  (0.0ms) SAVEPOINT active_record_1
3278
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00]]
3279
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3280
+ Completed 200 OK in 21ms (Views: 3.9ms | ActiveRecord: 0.5ms)
3281
+  (0.4ms) rollback transaction
3282
+  (0.0ms) begin transaction
3283
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:36:30 +1000
3284
+ Processing by LetterBomb::MailersController#show as HTML
3285
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3286
+  (0.0ms) SAVEPOINT active_record_1
3287
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00]]
3288
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3289
+ Completed 200 OK in 14ms (Views: 1.4ms | ActiveRecord: 0.5ms)
3290
+  (1.0ms) rollback transaction
3291
+  (0.1ms) begin transaction
3292
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:36:30 +1000
3293
+ Processing by LetterBomb::MailersController#show as HTML
3294
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3295
+  (0.0ms) SAVEPOINT active_record_1
3296
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00]]
3297
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3298
+ Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.5ms)
3299
+  (0.4ms) rollback transaction
3300
+  (0.0ms) begin transaction
3301
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:36:30 +1000
3302
+ Processing by LetterBomb::MailersController#show as HTML
3303
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3304
+  (0.0ms) SAVEPOINT active_record_1
3305
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:36:30 UTC +00:00]]
3306
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3307
+ Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.4ms)
3308
+  (0.5ms) rollback transaction
3309
+ Connecting to database specified by database.yml
3310
+  (1.1ms) select sqlite_version(*)
3311
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3312
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3313
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3314
+  (0.1ms) SELECT version FROM "schema_migrations"
3315
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
3316
+ Connecting to database specified by database.yml
3317
+  (0.2ms) begin transaction
3318
+  (0.0ms) rollback transaction
3319
+  (0.0ms) begin transaction
3320
+  (0.0ms) rollback transaction
3321
+  (0.0ms) begin transaction
3322
+  (0.0ms) SELECT COUNT(*) FROM "users"
3323
+  (0.0ms) SAVEPOINT active_record_1
3324
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00], ["name", "bob"], ["updated_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00]]
3325
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3326
+  (0.1ms) SELECT COUNT(*) FROM "users"
3327
+  (0.5ms) rollback transaction
3328
+  (0.0ms) begin transaction
3329
+  (0.0ms) SAVEPOINT active_record_1
3330
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00], ["name", "bob"], ["updated_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00]]
3331
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3332
+  (0.3ms) rollback transaction
3333
+  (0.0ms) begin transaction
3334
+ Started GET "/" for 127.0.0.1 at 2013-09-03 17:56:05 +1000
3335
+ Processing by LetterBomb::MailersController#index as HTML
3336
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (2.5ms)
3337
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
3338
+  (0.1ms) rollback transaction
3339
+  (0.0ms) begin transaction
3340
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-09-03 17:56:05 +1000
3341
+ Processing by LetterBomb::MailersController#show as HTML
3342
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3343
+  (0.0ms) SAVEPOINT active_record_1
3344
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00], ["name", "john"], ["updated_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00]]
3345
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3346
+ Completed 200 OK in 24ms (Views: 4.9ms | ActiveRecord: 0.5ms)
3347
+  (0.5ms) rollback transaction
3348
+  (0.0ms) begin transaction
3349
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-09-03 17:56:05 +1000
3350
+ Processing by LetterBomb::MailersController#show as HTML
3351
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3352
+  (0.0ms) SAVEPOINT active_record_1
3353
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00], ["name", "john"], ["updated_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00]]
3354
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3355
+ Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.5ms)
3356
+  (0.4ms) rollback transaction
3357
+  (0.0ms) begin transaction
3358
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-09-03 17:56:05 +1000
3359
+ Processing by LetterBomb::MailersController#show as HTML
3360
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3361
+  (0.0ms) SAVEPOINT active_record_1
3362
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00], ["name", "john"], ["updated_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00]]
3363
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3364
+ Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.4ms)
3365
+  (0.5ms) rollback transaction
3366
+  (0.0ms) begin transaction
3367
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-09-03 17:56:05 +1000
3368
+ Processing by LetterBomb::MailersController#show as HTML
3369
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3370
+  (0.0ms) SAVEPOINT active_record_1
3371
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00], ["name", "john"], ["updated_at", Tue, 03 Sep 2013 07:56:05 UTC +00:00]]
3372
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3373
+ Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.4ms)
3374
+  (0.4ms) rollback transaction
3375
+ Connecting to database specified by database.yml
3376
+  (0.6ms) select sqlite_version(*)
3377
+  (2.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3378
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3379
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3380
+  (0.1ms) SELECT version FROM "schema_migrations"
3381
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
3382
+ Connecting to database specified by database.yml
3383
+  (0.2ms) begin transaction
3384
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-10-11 11:20:52 +1100
3385
+ Processing by LetterBomb::MailersController#show as HTML
3386
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3387
+  (0.0ms) SAVEPOINT active_record_1
3388
+ SQL (6.7ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00], ["name", "john"], ["updated_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00]]
3389
+ Rendered user_mailer/welcome.html.erb (1.2ms)
3390
+ Rendered user_mailer/welcome.text.erb (0.4ms)
3391
+  (0.9ms) ROLLBACK TO SAVEPOINT active_record_1
3392
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (3.9ms)
3393
+ Completed 200 OK in 43ms (Views: 6.2ms | ActiveRecord: 8.2ms)
3394
+  (0.5ms) rollback transaction
3395
+  (0.0ms) begin transaction
3396
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-10-11 11:20:52 +1100
3397
+ Processing by LetterBomb::MailersController#show as HTML
3398
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3399
+  (0.0ms) SAVEPOINT active_record_1
3400
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00], ["name", "john"], ["updated_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00]]
3401
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3402
+ Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.5ms)
3403
+  (0.6ms) rollback transaction
3404
+  (0.0ms) begin transaction
3405
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-10-11 11:20:52 +1100
3406
+ Processing by LetterBomb::MailersController#show as HTML
3407
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3408
+  (0.0ms) SAVEPOINT active_record_1
3409
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00], ["name", "john"], ["updated_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00]]
3410
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3411
+ Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 0.4ms)
3412
+  (0.6ms) rollback transaction
3413
+  (0.0ms) begin transaction
3414
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-10-11 11:20:52 +1100
3415
+ Processing by LetterBomb::MailersController#show as HTML
3416
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3417
+  (0.0ms) SAVEPOINT active_record_1
3418
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00], ["name", "john"], ["updated_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00]]
3419
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3420
+ Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 0.5ms)
3421
+  (0.5ms) rollback transaction
3422
+  (0.0ms) begin transaction
3423
+ Started GET "/" for 127.0.0.1 at 2013-10-11 11:20:52 +1100
3424
+ Processing by LetterBomb::MailersController#index as HTML
3425
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3426
+  (0.0ms) rollback transaction
3427
+  (0.0ms) begin transaction
3428
+  (0.1ms) SELECT COUNT(*) FROM "users"
3429
+  (0.0ms) SAVEPOINT active_record_1
3430
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00], ["name", "bob"], ["updated_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00]]
3431
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3432
+  (0.0ms) SELECT COUNT(*) FROM "users"
3433
+  (0.6ms) rollback transaction
3434
+  (0.1ms) begin transaction
3435
+  (0.0ms) SAVEPOINT active_record_1
3436
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00], ["name", "bob"], ["updated_at", Fri, 11 Oct 2013 00:20:52 UTC +00:00]]
3437
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
3438
+  (0.5ms) rollback transaction
3439
+  (0.0ms) begin transaction
3440
+  (0.0ms) rollback transaction
3441
+  (0.0ms) begin transaction
3442
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: letter_bomb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-29 00:00:00.000000000 Z
11
+ date: 2013-10-11 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
18
  - !ruby/object:Gem::Version
19
19
  version: '3.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.1'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: sqlite3
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec-rails
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description: Preview mailer templates in the browser.
@@ -129,17 +129,17 @@ require_paths:
129
129
  - lib
130
130
  required_ruby_version: !ruby/object:Gem::Requirement
131
131
  requirements:
132
- - - '>='
132
+ - - ">="
133
133
  - !ruby/object:Gem::Version
134
134
  version: '0'
135
135
  required_rubygems_version: !ruby/object:Gem::Requirement
136
136
  requirements:
137
- - - '>='
137
+ - - ">="
138
138
  - !ruby/object:Gem::Version
139
139
  version: '0'
140
140
  requirements: []
141
141
  rubyforge_project:
142
- rubygems_version: 2.0.3
142
+ rubygems_version: 2.1.8
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Preview mailer templates in the browser.