contactus 0.0.5 → 0.0.6

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: 70aec52d5123a3d894063298a18d971b006fb423
4
- data.tar.gz: 9fc13d0fe72851560716962940d035a1c5133800
3
+ metadata.gz: 3041f5d262f65f33fbff34cfc477801d10d89cc2
4
+ data.tar.gz: 1df330524603cda8e04bf80fe76b86ac204f3f20
5
5
  SHA512:
6
- metadata.gz: fb439587e6c0620203035e5beae70535fc1d452016b9f3d98f9da4a72cdc8fe6772d1c5a2ccb0a1f726d144a63cf4c50bf8555f9b8d2b9a96ed2802ddedc906b
7
- data.tar.gz: 8be86be57f330bb026b77f91a717f5279bafc346e51b5eefea39e282e327ad204b6d934cfcac778f4633e95daf4f8c824a4eb94b545570d47ba0ffef74c5223c
6
+ metadata.gz: 6926b20b89d65d3f0ddd3d7d88f5ff0ec21880a8b81590fe224bce35b075c20f507f7c149ee3820fb320e58672039201f1c3a9419fbc9b04e4443b7974db237b
7
+ data.tar.gz: 5fa61f9fd7826f6dcaeaa694ab094f55384b14ae2ee653603cab1b4e6bfe78c40433d800201b9e6aff84839d3f7246f9463d6460e601de26cfb18ad653fc8769
@@ -29,6 +29,9 @@ There will be a initializer file called contactus.rb, where you can configure th
29
29
  # Configure the e-mail address which should receive the cc email
30
30
  #config.mailer_cc = "contact@example.com"
31
31
 
32
+ # Configure multiple e-mail address which should receive the bcc email
33
+ #config.mailer_bcc = ["contact1@example.com", "contact2@example.com", "contact3@example.com"]
34
+
32
35
  # Configure extra fields
33
36
  #config.extra_fields = %w(city phone)
34
37
 
@@ -21,7 +21,7 @@ module Contactus
21
21
  end
22
22
 
23
23
  def headers
24
- default_header.merge(cc_header)
24
+ default_header.merge(cc_header).merge(bcc_header)
25
25
  end
26
26
 
27
27
  private
@@ -38,6 +38,10 @@ module Contactus
38
38
  (Contactus.mailer_cc)? { :cc => Contactus.mailer_cc } : {}
39
39
  end
40
40
 
41
+ def bcc_header
42
+ (Contactus.mailer_bcc)? { :bcc => Contactus.mailer_bcc } : {}
43
+ end
44
+
41
45
  def from_email
42
46
  Contactus.mailer_from || %("#{name}" <#{email}>)
43
47
  end
@@ -11,6 +11,9 @@ module Contactus
11
11
  # Address to send the cc email.
12
12
  mattr_accessor :mailer_cc
13
13
 
14
+ # Address to send the bcc emails.
15
+ mattr_accessor :mailer_bcc
16
+
14
17
  # Extra fields
15
18
  mattr_accessor :extra_fields
16
19
 
@@ -1,3 +1,3 @@
1
1
  module Contactus
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -8,6 +8,9 @@ Contactus.setup do |config|
8
8
  # Configure the e-mail address which should receive the cc email
9
9
  #config.mailer_cc = "contact@example.com"
10
10
 
11
+ # Configure multiple e-mail address which should receive the bcc email
12
+ #config.mailer_bcc = ["contact1@example.com", "contact2@example.com", "contact3@example.com"]
13
+
11
14
  # Configure extra fields
12
15
  #config.extra_fields = %w(city phone)
13
16
 
Binary file
@@ -7306,3 +7306,275 @@ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
7306
7306
   (0.1ms) rollback transaction
7307
7307
   (0.1ms) begin transaction
7308
7308
   (0.1ms) rollback transaction
7309
+  (390.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7310
+  (45.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7311
+  (0.1ms) SELECT version FROM "schema_migrations"
7312
+  (9.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
7313
+  (0.3ms) begin transaction
7314
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:27:43 -0500
7315
+ Processing by Contactus::ContactFormsController#new as HTML
7316
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (858.3ms)
7317
+ Completed 200 OK in 920ms (Views: 919.3ms | ActiveRecord: 0.0ms)
7318
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:27:44 -0500
7319
+ Processing by Contactus::ContactFormsController#create as HTML
7320
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"", "city"=>"", "email"=>"", "message"=>"", "nickname"=>""}, "commit"=>"Enviar"}
7321
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (6.7ms)
7322
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.0ms)
7323
+  (0.1ms) rollback transaction
7324
+  (0.1ms) begin transaction
7325
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:27:44 -0500
7326
+ Processing by Contactus::ContactFormsController#new as HTML
7327
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (6.3ms)
7328
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
7329
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:27:44 -0500
7330
+ Processing by Contactus::ContactFormsController#create as HTML
7331
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"Bill Hicks", "city"=>"", "email"=>"beelzebozo@example.com", "message"=>"If you think you’re free, try going somewhere without fucking money, okay?", "nickname"=>""}, "commit"=>"Enviar"}
7332
+ Completed 500 Internal Server Error in 905ms
7333
+  (0.1ms) rollback transaction
7334
+  (0.1ms) begin transaction
7335
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:27:45 -0500
7336
+ Processing by Contactus::ContactFormsController#new as HTML
7337
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (6.5ms)
7338
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
7339
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:27:45 -0500
7340
+ Processing by Contactus::ContactFormsController#create as HTML
7341
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"Bill Hicks", "city"=>"", "email"=>"beelzebozo@example.com", "message"=>"If you think you’re free, try going somewhere without fucking money, okay?", "nickname"=>"Hey there"}, "commit"=>"Enviar"}
7342
+ Redirected to http://www.example.com/
7343
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7344
+ Started GET "/" for 127.0.0.1 at 2014-02-24 10:27:45 -0500
7345
+ Processing by WelcomeController#index as HTML
7346
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
7347
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
7348
+  (0.1ms) rollback transaction
7349
+  (0.1ms) begin transaction
7350
+  (0.1ms) rollback transaction
7351
+  (0.1ms) begin transaction
7352
+  (0.1ms) rollback transaction
7353
+  (0.1ms) begin transaction
7354
+  (0.1ms) rollback transaction
7355
+  (0.0ms) begin transaction
7356
+  (0.0ms) rollback transaction
7357
+  (0.1ms) begin transaction
7358
+  (0.1ms) rollback transaction
7359
+  (0.1ms) begin transaction
7360
+  (0.0ms) rollback transaction
7361
+  (0.0ms) begin transaction
7362
+  (0.0ms) rollback transaction
7363
+  (0.0ms) begin transaction
7364
+  (0.1ms) rollback transaction
7365
+  (0.1ms) begin transaction
7366
+  (0.1ms) rollback transaction
7367
+  (0.1ms) begin transaction
7368
+  (0.1ms) rollback transaction
7369
+  (0.1ms) begin transaction
7370
+  (0.1ms) rollback transaction
7371
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7372
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7373
+  (0.1ms) SELECT version FROM "schema_migrations"
7374
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
7375
+  (0.3ms) begin transaction
7376
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:29:55 -0500
7377
+ Processing by Contactus::ContactFormsController#new as HTML
7378
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (428.6ms)
7379
+ Completed 200 OK in 452ms (Views: 451.7ms | ActiveRecord: 0.0ms)
7380
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:29:55 -0500
7381
+ Processing by Contactus::ContactFormsController#create as HTML
7382
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"", "city"=>"", "email"=>"", "message"=>"", "nickname"=>""}, "commit"=>"Enviar"}
7383
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (5.6ms)
7384
+ Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.0ms)
7385
+  (0.1ms) rollback transaction
7386
+  (0.1ms) begin transaction
7387
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:29:55 -0500
7388
+ Processing by Contactus::ContactFormsController#new as HTML
7389
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (5.7ms)
7390
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
7391
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:29:55 -0500
7392
+ Processing by Contactus::ContactFormsController#create as HTML
7393
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"Bill Hicks", "city"=>"", "email"=>"beelzebozo@example.com", "message"=>"If you think you’re free, try going somewhere without fucking money, okay?", "nickname"=>""}, "commit"=>"Enviar"}
7394
+ Rendered /Users/joselo/.rvm/gems/ruby-2.0.0-p195@contactus/gems/mail_form-1.5.0/lib/mail_form/views/mail_form/contact.erb (3.4ms)
7395
+
7396
+ Sent mail to webmaster@example.com (38.9ms)
7397
+ Date: Mon, 24 Feb 2014 10:29:56 -0500
7398
+ From: Bill Hicks <beelzebozo@example.com>
7399
+ To: webmaster@example.com
7400
+ Message-ID: <530b6574b059_7ec3ffd2505e6d42198c@Joses-MacBook-Pro.local.mail>
7401
+ Subject: Alguien se a puesto en contacto.
7402
+ Mime-Version: 1.0
7403
+ Content-Type: text/html;
7404
+ charset=UTF-8
7405
+ Content-Transfer-Encoding: quoted-printable
7406
+
7407
+ <h4 style=3D"text-decoration:underline">Alguien se a puesto en contacto.<=
7408
+ /h4>
7409
+
7410
+
7411
+ <p><b>Nombres y Apellidos:</b>
7412
+ Bill Hicks</p>
7413
+
7414
+ <p><b>Correo electr=C3=B3nico:</b>
7415
+ beelzebozo@example.com</p>
7416
+
7417
+ <p><b>Comentarios:</b>
7418
+ If you think you=E2=80=99re free, try going somewhere without fucking m=
7419
+ oney, okay?</p>
7420
+
7421
+ <br /><h4 style=3D"text-decoration:underline">Informaci=C3=B3n t=C3=A9c=
7422
+ nica sobre el usuario</h4>
7423
+
7424
+
7425
+ <p><b>Direcci=C3=B3n IP:</b>
7426
+ 127.0.0.1</p>
7427
+
7428
+ <p><b>Navegador:</b>
7429
+ nil</p>
7430
+
7431
+ <p><b>Session:</b>
7432
+ #&lt;ActionDispatch::Request::Session:0x7ffa4dbc8410 not yet loaded&g=
7433
+ t;</p>
7434
+ <br />
7435
+
7436
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/create.html.haml within layouts/application (1.4ms)
7437
+ Completed 200 OK in 348ms (Views: 3.1ms | ActiveRecord: 0.0ms)
7438
+  (0.1ms) rollback transaction
7439
+  (0.1ms) begin transaction
7440
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:29:56 -0500
7441
+ Processing by Contactus::ContactFormsController#new as HTML
7442
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (39.7ms)
7443
+ Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms)
7444
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:29:56 -0500
7445
+ Processing by Contactus::ContactFormsController#create as HTML
7446
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"Bill Hicks", "city"=>"", "email"=>"beelzebozo@example.com", "message"=>"If you think you’re free, try going somewhere without fucking money, okay?", "nickname"=>"Hey there"}, "commit"=>"Enviar"}
7447
+ Redirected to http://www.example.com/
7448
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7449
+ Started GET "/" for 127.0.0.1 at 2014-02-24 10:29:56 -0500
7450
+ Processing by WelcomeController#index as HTML
7451
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
7452
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
7453
+  (0.1ms) rollback transaction
7454
+  (0.2ms) begin transaction
7455
+  (0.1ms) rollback transaction
7456
+  (0.1ms) begin transaction
7457
+  (0.1ms) rollback transaction
7458
+  (0.1ms) begin transaction
7459
+  (0.1ms) rollback transaction
7460
+  (0.1ms) begin transaction
7461
+  (0.1ms) rollback transaction
7462
+  (0.1ms) begin transaction
7463
+  (0.1ms) rollback transaction
7464
+  (0.1ms) begin transaction
7465
+  (0.1ms) rollback transaction
7466
+  (0.1ms) begin transaction
7467
+  (0.1ms) rollback transaction
7468
+  (0.1ms) begin transaction
7469
+  (0.1ms) rollback transaction
7470
+  (0.1ms) begin transaction
7471
+  (0.1ms) rollback transaction
7472
+  (0.0ms) begin transaction
7473
+  (0.1ms) rollback transaction
7474
+  (0.1ms) begin transaction
7475
+  (0.1ms) rollback transaction
7476
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7477
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7478
+  (0.1ms) SELECT version FROM "schema_migrations"
7479
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
7480
+  (0.3ms) begin transaction
7481
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:30:44 -0500
7482
+ Processing by Contactus::ContactFormsController#new as HTML
7483
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (433.4ms)
7484
+ Completed 200 OK in 456ms (Views: 455.8ms | ActiveRecord: 0.0ms)
7485
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:30:45 -0500
7486
+ Processing by Contactus::ContactFormsController#create as HTML
7487
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"", "city"=>"", "email"=>"", "message"=>"", "nickname"=>""}, "commit"=>"Enviar"}
7488
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (5.8ms)
7489
+ Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.0ms)
7490
+  (0.1ms) rollback transaction
7491
+  (0.1ms) begin transaction
7492
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:30:45 -0500
7493
+ Processing by Contactus::ContactFormsController#new as HTML
7494
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (6.1ms)
7495
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
7496
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:30:45 -0500
7497
+ Processing by Contactus::ContactFormsController#create as HTML
7498
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"Bill Hicks", "city"=>"", "email"=>"beelzebozo@example.com", "message"=>"If you think you’re free, try going somewhere without fucking money, okay?", "nickname"=>""}, "commit"=>"Enviar"}
7499
+ Rendered /Users/joselo/.rvm/gems/ruby-2.0.0-p195@contactus/gems/mail_form-1.5.0/lib/mail_form/views/mail_form/contact.erb (3.0ms)
7500
+
7501
+ Sent mail to webmaster@example.com (9.8ms)
7502
+ Date: Mon, 24 Feb 2014 10:30:45 -0500
7503
+ From: Bill Hicks <beelzebozo@example.com>
7504
+ To: webmaster@example.com
7505
+ Message-ID: <530b65a5ab0b4_8033fdd2845e6d42996b@Joses-MacBook-Pro.local.mail>
7506
+ Subject: Alguien se a puesto en contacto.
7507
+ Mime-Version: 1.0
7508
+ Content-Type: text/html;
7509
+ charset=UTF-8
7510
+ Content-Transfer-Encoding: quoted-printable
7511
+
7512
+ <h4 style=3D"text-decoration:underline">Alguien se a puesto en contacto.<=
7513
+ /h4>
7514
+
7515
+
7516
+ <p><b>Nombres y Apellidos:</b>
7517
+ Bill Hicks</p>
7518
+
7519
+ <p><b>Correo electr=C3=B3nico:</b>
7520
+ beelzebozo@example.com</p>
7521
+
7522
+ <p><b>Comentarios:</b>
7523
+ If you think you=E2=80=99re free, try going somewhere without fucking m=
7524
+ oney, okay?</p>
7525
+
7526
+ <br /><h4 style=3D"text-decoration:underline">Informaci=C3=B3n t=C3=A9c=
7527
+ nica sobre el usuario</h4>
7528
+
7529
+
7530
+ <p><b>Direcci=C3=B3n IP:</b>
7531
+ 127.0.0.1</p>
7532
+
7533
+ <p><b>Navegador:</b>
7534
+ nil</p>
7535
+
7536
+ <p><b>Session:</b>
7537
+ #&lt;ActionDispatch::Request::Session:0x7fba51e14340 not yet loaded&g=
7538
+ t;</p>
7539
+ <br />
7540
+
7541
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/create.html.haml within layouts/application (1.7ms)
7542
+ Completed 200 OK in 259ms (Views: 3.4ms | ActiveRecord: 0.0ms)
7543
+  (0.1ms) rollback transaction
7544
+  (0.1ms) begin transaction
7545
+ Started GET "/contact" for 127.0.0.1 at 2014-02-24 10:30:45 -0500
7546
+ Processing by Contactus::ContactFormsController#new as HTML
7547
+ Rendered /Users/joselo/code/contactus/app/views/contactus/contact_forms/new.html.haml within layouts/application (52.9ms)
7548
+ Completed 200 OK in 54ms (Views: 53.6ms | ActiveRecord: 0.0ms)
7549
+ Started POST "/contactus/contact_forms" for 127.0.0.1 at 2014-02-24 10:30:45 -0500
7550
+ Processing by Contactus::ContactFormsController#create as HTML
7551
+ Parameters: {"utf8"=>"✓", "contactus_contact_form"=>{"name"=>"Bill Hicks", "city"=>"", "email"=>"beelzebozo@example.com", "message"=>"If you think you’re free, try going somewhere without fucking money, okay?", "nickname"=>"Hey there"}, "commit"=>"Enviar"}
7552
+ Redirected to http://www.example.com/
7553
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7554
+ Started GET "/" for 127.0.0.1 at 2014-02-24 10:30:45 -0500
7555
+ Processing by WelcomeController#index as HTML
7556
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
7557
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
7558
+  (0.1ms) rollback transaction
7559
+  (0.1ms) begin transaction
7560
+  (0.1ms) rollback transaction
7561
+  (0.1ms) begin transaction
7562
+  (0.1ms) rollback transaction
7563
+  (0.1ms) begin transaction
7564
+  (0.1ms) rollback transaction
7565
+  (0.1ms) begin transaction
7566
+  (0.0ms) rollback transaction
7567
+  (0.0ms) begin transaction
7568
+  (0.0ms) rollback transaction
7569
+  (0.1ms) begin transaction
7570
+  (0.0ms) rollback transaction
7571
+  (0.0ms) begin transaction
7572
+  (0.1ms) rollback transaction
7573
+  (0.1ms) begin transaction
7574
+  (0.1ms) rollback transaction
7575
+  (0.1ms) begin transaction
7576
+  (0.1ms) rollback transaction
7577
+  (0.1ms) begin transaction
7578
+  (0.1ms) rollback transaction
7579
+  (0.1ms) begin transaction
7580
+  (0.0ms) rollback transaction
@@ -38,6 +38,7 @@ module Contactus
38
38
 
39
39
  before do
40
40
  Contactus.mailer_cc = "cc@example.com"
41
+ Contactus.mailer_bcc = ["bcc1@example.com", "bcc2@example.com"]
41
42
  Contactus.mailer_from = "from@example.com"
42
43
  @contact_form = FactoryGirl.build(:contact_form)
43
44
  end
@@ -46,6 +47,10 @@ module Contactus
46
47
  @contact_form.headers[:cc].should == Contactus.mailer_cc
47
48
  end
48
49
 
50
+ it 'should assing the bcc' do
51
+ @contact_form.headers[:bcc].should == Contactus.mailer_bcc
52
+ end
53
+
49
54
  it 'should assing the from' do
50
55
  @contact_form.headers[:from].should == Contactus.mailer_from
51
56
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contactus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Carrion
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-21 00:00:00.000000000 Z
11
+ date: 2014-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -251,7 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
251
251
  version: '0'
252
252
  requirements: []
253
253
  rubyforge_project:
254
- rubygems_version: 2.0.3
254
+ rubygems_version: 2.1.10
255
255
  signing_key:
256
256
  specification_version: 4
257
257
  summary: Contactus is a simple Ruby on Rails gem that generate a contact form for