contact_us 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -23,7 +23,7 @@ If you don't want to have Formtastic as a dependency there is a fork of this pro
23
23
 
24
24
  In your `Gemfile`, add the following dependencies:
25
25
 
26
- gem 'contact_us', '~> 0.2.1'
26
+ gem 'contact_us', '~> 0.3.0'
27
27
 
28
28
  From `Rails.root` run:
29
29
 
@@ -59,14 +59,14 @@ Or you may run the generators for each specific component you would like to upda
59
59
  The generator copies the view files to `app/views/contact_us`, and you can customize them to suit your needs. If you would like to add a name or subject field to the form you may simply
60
60
  set the options to true within the contact_us initializer located at `config/initializers/contact_us.rb`:
61
61
 
62
- config.name = true
63
- config.subject = true
62
+ config.require_name = true
63
+ config.require_subject = true
64
64
 
65
65
  You may also update your locales under `config/locales/contact_us.en.yml` or create your own. Please feel free to submit your own locales so that other users will hopefully find this gem more useful.
66
66
 
67
67
  ## USAGE
68
68
 
69
- Visit your website and navigate to `/contact_us` to see the form in action.
69
+ Visit your website and navigate to `/contact-us` to see the form in action.
70
70
 
71
71
  ## INTEGRATION TESTS
72
72
 
@@ -2,5 +2,5 @@ Rails.application.routes.draw do
2
2
  resources :contacts,
3
3
  :controller => 'contact_us/contacts',
4
4
  :only => [:new, :create]
5
- match 'contact_us' => 'contact_us/contacts#new'
5
+ match 'contact-us' => 'contact_us/contacts#new', :as => :contact_us
6
6
  end
@@ -1,3 +1,3 @@
1
1
  module ContactUs
2
- VERSION = "0.2.1"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -5260,3 +5260,390 @@ Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
5260
5260
  Started GET "/" for 127.0.0.1 at 2012-05-04 17:24:48 -0400
5261
5261
  Processing by ContactUs::ContactsController#new as HTML
5262
5262
  Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
5263
+  (0.1ms) select sqlite_version(*)
5264
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5265
+  (0.0ms) PRAGMA index_list("schema_migrations")
5266
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5267
+ Processing by ContactUs::ContactsController#create as HTML
5268
+ Parameters: {"contact_us_contact"=>{"email"=>"test@test.com", "message"=>"test"}}
5269
+ Rendered /Users/JD/contact_us/app/views/contact_us/contact_mailer/contact_email.html.erb (3.3ms)
5270
+
5271
+ Sent mail to (49ms)
5272
+ Date: Tue, 15 May 2012 22:53:25 -0400
5273
+ From: test@test.com
5274
+ Reply-To: test@test.com
5275
+ Message-ID: <4fb316a5315ca_60483ff258c34cd89336e@JDs-Mac-Pro.local.mail>
5276
+ Subject: Contact Us message from test@test.com
5277
+ Mime-Version: 1.0
5278
+ Content-Type: text/html;
5279
+ charset=UTF-8
5280
+ Content-Transfer-Encoding: 7bit
5281
+
5282
+ <p>test</p>
5283
+ <p>---------------------</p>
5284
+ <p>Sent by contact form from test@test.com</p>
5285
+
5286
+ Redirected to http://test.host/
5287
+ Completed 302 Found in 152ms (ActiveRecord: 0.0ms)
5288
+ Processing by ContactUs::ContactsController#create as HTML
5289
+ Parameters: {"contact_us_contact"=>{"email"=>"test@test.com", "message"=>""}}
5290
+ Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
5291
+ Processing by ContactUs::ContactsController#new as HTML
5292
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
5293
+
5294
+ Sent mail to contact@please-change-me.com (7ms)
5295
+ Date: Tue, 15 May 2012 22:53:25 -0400
5296
+ From: test@email.com
5297
+ Reply-To: test@email.com
5298
+ To: contact@please-change-me.com
5299
+ Message-ID: <4fb316a556182_60483ff258c34cd89344f@JDs-Mac-Pro.local.mail>
5300
+ Subject: Contact Us message from test@email.com
5301
+ Mime-Version: 1.0
5302
+ Content-Type: text/html;
5303
+ charset=UTF-8
5304
+ Content-Transfer-Encoding: 7bit
5305
+
5306
+ <p>Thanks!</p>
5307
+ <p>---------------------</p>
5308
+ <p>Sent by contact form from test@email.com</p>
5309
+
5310
+
5311
+ Sent mail to contact@please-change-me.com (7ms)
5312
+ Date: Tue, 15 May 2012 22:53:25 -0400
5313
+ From: test@email.com
5314
+ Reply-To: test@email.com
5315
+ To: contact@please-change-me.com
5316
+ Message-ID: <4fb316a56aeb8_60483ff258c34cd8935fa@JDs-Mac-Pro.local.mail>
5317
+ Subject: Contact Us message from test@email.com
5318
+ Mime-Version: 1.0
5319
+ Content-Type: text/html;
5320
+ charset=UTF-8
5321
+ Content-Transfer-Encoding: 7bit
5322
+
5323
+ <p>Thanks!</p>
5324
+ <p>---------------------</p>
5325
+ <p>Sent by contact form from test@email.com</p>
5326
+
5327
+  (0.1ms) select sqlite_version(*)
5328
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5329
+  (0.0ms) PRAGMA index_list("schema_migrations")
5330
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5331
+
5332
+
5333
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:02 -0400
5334
+ Processing by ContactUs::ContactsController#new as HTML
5335
+ Rendered /Users/JD/contact_us/app/views/contact_us/contacts/new.html.erb within layouts/application (138.4ms)
5336
+ Completed 200 OK in 151ms (Views: 150.9ms | ActiveRecord: 0.0ms)
5337
+
5338
+
5339
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5340
+ Processing by ContactUs::ContactsController#new as HTML
5341
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
5342
+
5343
+
5344
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5345
+ Processing by ContactUs::ContactsController#new as HTML
5346
+ Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
5347
+
5348
+
5349
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5350
+ Processing by ContactUs::ContactsController#create as HTML
5351
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Submit"}
5352
+ Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 0.0ms)
5353
+
5354
+
5355
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5356
+ Processing by ContactUs::ContactsController#new as HTML
5357
+ Completed 200 OK in 14ms (Views: 14.2ms | ActiveRecord: 0.0ms)
5358
+
5359
+
5360
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5361
+ Processing by ContactUs::ContactsController#create as HTML
5362
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Submit"}
5363
+ Completed 200 OK in 17ms (Views: 13.9ms | ActiveRecord: 0.0ms)
5364
+
5365
+
5366
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5367
+ Processing by ContactUs::ContactsController#new as HTML
5368
+ Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
5369
+
5370
+
5371
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5372
+ Processing by ContactUs::ContactsController#create as HTML
5373
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"name"=>"Jeff", "email"=>"test@example.com", "subject"=>"Testing contact form.", "message"=>"howdy"}, "commit"=>"Submit"}
5374
+
5375
+ Sent mail to test@test.com (18ms)
5376
+ Date: Tue, 15 May 2012 22:54:03 -0400
5377
+ From: test@example.com
5378
+ Reply-To: test@example.com
5379
+ To: test@test.com
5380
+ Message-ID: <4fb316cb507c0_615a3fe7f9434ce0507ae@JDs-Mac-Pro.local.mail>
5381
+ Subject: Testing contact form.
5382
+ Mime-Version: 1.0
5383
+ Content-Type: text/html;
5384
+ charset=UTF-8
5385
+ Content-Transfer-Encoding: 7bit
5386
+
5387
+ <p>howdy</p>
5388
+ <p>---------------------</p>
5389
+ <p>Sent by Jeff from test@example.com</p>
5390
+
5391
+ Redirected to http://www.example.com/
5392
+ Completed 302 Found in 82ms (ActiveRecord: 0.0ms)
5393
+
5394
+
5395
+ Started GET "/" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5396
+ Processing by ContactUs::ContactsController#new as HTML
5397
+ Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
5398
+
5399
+
5400
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5401
+ Processing by ContactUs::ContactsController#new as HTML
5402
+ Completed 200 OK in 44ms (Views: 44.2ms | ActiveRecord: 0.0ms)
5403
+
5404
+
5405
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5406
+ Processing by ContactUs::ContactsController#create as HTML
5407
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"name"=>"Jeff", "email"=>"test@example.com", "subject"=>"Testing contact form.", "message"=>"howdy"}, "commit"=>"Submit"}
5408
+
5409
+ Sent mail to test@test.com (7ms)
5410
+ Date: Tue, 15 May 2012 22:54:03 -0400
5411
+ From: test@example.com
5412
+ Reply-To: test@example.com
5413
+ To: test@test.com
5414
+ Message-ID: <4fb316cb68457_615a3fe7f9434ce05088b@JDs-Mac-Pro.local.mail>
5415
+ Subject: Testing contact form.
5416
+ Mime-Version: 1.0
5417
+ Content-Type: text/html;
5418
+ charset=UTF-8
5419
+ Content-Transfer-Encoding: 7bit
5420
+
5421
+ <p>howdy</p>
5422
+ <p>---------------------</p>
5423
+ <p>Sent by Jeff from test@example.com</p>
5424
+
5425
+ Redirected to http://www.example.com/
5426
+ Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
5427
+
5428
+
5429
+ Started GET "/" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5430
+ Processing by ContactUs::ContactsController#new as HTML
5431
+ Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
5432
+
5433
+
5434
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5435
+ Processing by ContactUs::ContactsController#new as HTML
5436
+ Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
5437
+
5438
+
5439
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5440
+ Processing by ContactUs::ContactsController#create as HTML
5441
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"name"=>"Jeff", "email"=>"test@example.com", "subject"=>"Testing contact form.", "message"=>"howdy"}, "commit"=>"Submit"}
5442
+
5443
+ Sent mail to test@test.com (7ms)
5444
+ Date: Tue, 15 May 2012 22:54:03 -0400
5445
+ From: test@example.com
5446
+ Reply-To: test@example.com
5447
+ To: test@test.com
5448
+ Message-ID: <4fb316cb762ac_615a3fe7f9434ce050978@JDs-Mac-Pro.local.mail>
5449
+ Subject: Testing contact form.
5450
+ Mime-Version: 1.0
5451
+ Content-Type: text/html;
5452
+ charset=UTF-8
5453
+ Content-Transfer-Encoding: 7bit
5454
+
5455
+ <p>howdy</p>
5456
+ <p>---------------------</p>
5457
+ <p>Sent by Jeff from test@example.com</p>
5458
+
5459
+ Redirected to http://www.example.com/
5460
+ Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
5461
+
5462
+
5463
+ Started GET "/" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5464
+ Processing by ContactUs::ContactsController#new as HTML
5465
+ Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
5466
+
5467
+
5468
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5469
+ Processing by ContactUs::ContactsController#new as HTML
5470
+ Completed 200 OK in 45ms (Views: 44.6ms | ActiveRecord: 0.0ms)
5471
+
5472
+
5473
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5474
+ Processing by ContactUs::ContactsController#create as HTML
5475
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"email"=>"a", "message"=>""}, "commit"=>"Submit"}
5476
+ Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.0ms)
5477
+
5478
+
5479
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5480
+ Processing by ContactUs::ContactsController#new as HTML
5481
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
5482
+
5483
+
5484
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5485
+ Processing by ContactUs::ContactsController#create as HTML
5486
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"email"=>"a", "message"=>""}, "commit"=>"Submit"}
5487
+ Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.0ms)
5488
+
5489
+
5490
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5491
+ Processing by ContactUs::ContactsController#new as HTML
5492
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
5493
+
5494
+
5495
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5496
+ Processing by ContactUs::ContactsController#create as HTML
5497
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"email"=>"test@example.com", "message"=>"howdy"}, "commit"=>"Submit"}
5498
+
5499
+ Sent mail to test@test.com (7ms)
5500
+ Date: Tue, 15 May 2012 22:54:03 -0400
5501
+ From: test@example.com
5502
+ Reply-To: test@example.com
5503
+ To: test@test.com
5504
+ Message-ID: <4fb316cb9cabc_615a3fe7f9434ce0510ae@JDs-Mac-Pro.local.mail>
5505
+ Subject: Contact Us message from test@example.com
5506
+ Mime-Version: 1.0
5507
+ Content-Type: text/html;
5508
+ charset=UTF-8
5509
+ Content-Transfer-Encoding: 7bit
5510
+
5511
+ <p>howdy</p>
5512
+ <p>---------------------</p>
5513
+ <p>Sent by contact form from test@example.com</p>
5514
+
5515
+ Redirected to http://www.example.com/
5516
+ Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
5517
+
5518
+
5519
+ Started GET "/" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5520
+ Processing by ContactUs::ContactsController#new as HTML
5521
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
5522
+
5523
+
5524
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5525
+ Processing by ContactUs::ContactsController#new as HTML
5526
+ Completed 200 OK in 45ms (Views: 44.6ms | ActiveRecord: 0.0ms)
5527
+
5528
+
5529
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5530
+ Processing by ContactUs::ContactsController#create as HTML
5531
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"email"=>"test@example.com", "message"=>"howdy"}, "commit"=>"Submit"}
5532
+
5533
+ Sent mail to test@test.com (6ms)
5534
+ Date: Tue, 15 May 2012 22:54:03 -0400
5535
+ From: test@example.com
5536
+ Reply-To: test@example.com
5537
+ To: test@test.com
5538
+ Message-ID: <4fb316cbb1816_615a3fe7f9434ce05118b@JDs-Mac-Pro.local.mail>
5539
+ Subject: Contact Us message from test@example.com
5540
+ Mime-Version: 1.0
5541
+ Content-Type: text/html;
5542
+ charset=UTF-8
5543
+ Content-Transfer-Encoding: 7bit
5544
+
5545
+ <p>howdy</p>
5546
+ <p>---------------------</p>
5547
+ <p>Sent by contact form from test@example.com</p>
5548
+
5549
+ Redirected to http://www.example.com/
5550
+ Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
5551
+
5552
+
5553
+ Started GET "/" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5554
+ Processing by ContactUs::ContactsController#new as HTML
5555
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
5556
+
5557
+
5558
+ Started GET "/contact-us" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5559
+ Processing by ContactUs::ContactsController#new as HTML
5560
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
5561
+
5562
+
5563
+ Started POST "/contacts" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5564
+ Processing by ContactUs::ContactsController#create as HTML
5565
+ Parameters: {"utf8"=>"✓", "contact_us_contact"=>{"email"=>"test@example.com", "message"=>"howdy"}, "commit"=>"Submit"}
5566
+
5567
+ Sent mail to test@test.com (7ms)
5568
+ Date: Tue, 15 May 2012 22:54:03 -0400
5569
+ From: test@example.com
5570
+ Reply-To: test@example.com
5571
+ To: test@test.com
5572
+ Message-ID: <4fb316cbbd1da_615a3fe7f9434ce051278@JDs-Mac-Pro.local.mail>
5573
+ Subject: Contact Us message from test@example.com
5574
+ Mime-Version: 1.0
5575
+ Content-Type: text/html;
5576
+ charset=UTF-8
5577
+ Content-Transfer-Encoding: 7bit
5578
+
5579
+ <p>howdy</p>
5580
+ <p>---------------------</p>
5581
+ <p>Sent by contact form from test@example.com</p>
5582
+
5583
+ Redirected to http://www.example.com/
5584
+ Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
5585
+
5586
+
5587
+ Started GET "/" for 127.0.0.1 at 2012-05-15 22:54:03 -0400
5588
+ Processing by ContactUs::ContactsController#new as HTML
5589
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
5590
+
5591
+ Sent mail to contact@please-change-me.com (7ms)
5592
+ Date: Tue, 15 May 2012 22:54:03 -0400
5593
+ From: test@email.com
5594
+ Reply-To: test@email.com
5595
+ To: contact@please-change-me.com
5596
+ Message-ID: <4fb316cbcd7c7_615a3fe7f9434ce05139d@JDs-Mac-Pro.local.mail>
5597
+ Subject: Contact Us message from test@email.com
5598
+ Mime-Version: 1.0
5599
+ Content-Type: text/html;
5600
+ charset=UTF-8
5601
+ Content-Transfer-Encoding: 7bit
5602
+
5603
+ <p>Thanks!</p>
5604
+ <p>---------------------</p>
5605
+ <p>Sent by contact form from test@email.com</p>
5606
+
5607
+
5608
+ Sent mail to contact@please-change-me.com (7ms)
5609
+ Date: Tue, 15 May 2012 22:54:03 -0400
5610
+ From: test@email.com
5611
+ Reply-To: test@email.com
5612
+ To: contact@please-change-me.com
5613
+ Message-ID: <4fb316cbea7bc_615a3fe7f9434ce05149b@JDs-Mac-Pro.local.mail>
5614
+ Subject: Contact Us message from test@email.com
5615
+ Mime-Version: 1.0
5616
+ Content-Type: text/html;
5617
+ charset=UTF-8
5618
+ Content-Transfer-Encoding: 7bit
5619
+
5620
+ <p>Thanks!</p>
5621
+ <p>---------------------</p>
5622
+ <p>Sent by contact form from test@email.com</p>
5623
+
5624
+ Processing by ContactUs::ContactsController#new as HTML
5625
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
5626
+ Processing by ContactUs::ContactsController#create as HTML
5627
+ Parameters: {"contact_us_contact"=>{"email"=>"test@test.com", "message"=>""}}
5628
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
5629
+ Processing by ContactUs::ContactsController#create as HTML
5630
+ Parameters: {"contact_us_contact"=>{"email"=>"test@test.com", "message"=>"test"}}
5631
+
5632
+ Sent mail to contact@please-change-me.com (6ms)
5633
+ Date: Tue, 15 May 2012 22:54:03 -0400
5634
+ From: test@test.com
5635
+ Reply-To: test@test.com
5636
+ To: contact@please-change-me.com
5637
+ Message-ID: <4fb316cbf30aa_615a3fe7f9434ce051537@JDs-Mac-Pro.local.mail>
5638
+ Subject: Contact Us message from test@test.com
5639
+ Mime-Version: 1.0
5640
+ Content-Type: text/html;
5641
+ charset=UTF-8
5642
+ Content-Transfer-Encoding: 7bit
5643
+
5644
+ <p>test</p>
5645
+ <p>---------------------</p>
5646
+ <p>Sent by contact form from test@test.com</p>
5647
+
5648
+ Redirected to http://test.host/
5649
+ Completed 302 Found in 15ms (ActiveRecord: 0.0ms)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contact_us
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.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-05-04 00:00:00.000000000 Z
12
+ date: 2012-05-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capybara
@@ -213,7 +213,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
213
213
  version: '0'
214
214
  segments:
215
215
  - 0
216
- hash: -1629207782462685205
216
+ hash: 1292808974934354164
217
217
  required_rubygems_version: !ruby/object:Gem::Requirement
218
218
  none: false
219
219
  requirements:
@@ -222,7 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
222
222
  version: '0'
223
223
  segments:
224
224
  - 0
225
- hash: -1629207782462685205
225
+ hash: 1292808974934354164
226
226
  requirements: []
227
227
  rubyforge_project: contact_us
228
228
  rubygems_version: 1.8.19