simple_contact 0.9.0 → 0.9.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3bbaa42a88fc00c8a3c64650a2034e9d3162f5be
4
- data.tar.gz: dd9d9d3de375177f8ec4481e6a230d36913bc9fc
3
+ metadata.gz: 9e4d0efd640a7cbd5a28c832caba67063d94e436
4
+ data.tar.gz: 5de4ac48be64cbdd98184c8a89afba0c57bdc8ca
5
5
  SHA512:
6
- metadata.gz: 02a8b6c1863b48e1be66239d79440774e970f82fdcfa26963391ee149b8b571e2ff97153e17a1a10ae0705689502214ce01c428bdea241d638767a1d15a112ff
7
- data.tar.gz: 09f03163aa52dd433cc7343f2c5966d4ddee39880fda3aca038a1a5da9ff54b5505a222767823dc5ea4c5628abdc95e6a16483ed9082cfd59aecdcf0533875f7
6
+ metadata.gz: 21035ed07e47ee1eeb575ed6b6d7eb10ef826fcff4d2786218f91b4bcb413ad125cfc3bb0e92403771936a9bdf53f8bf4b06a3404f26c024ef7aff493d3c279a
7
+ data.tar.gz: 41294122fc4a52afde0670a4c42eda941f87894db7a3069e3b7d5db35e8b2ec200090abc17ccc1c37674669fe9b7ada47870a5105b261e18413a29b779e25b45
@@ -9,7 +9,7 @@
9
9
  <div class="row">
10
10
  <%# Reduces the total width of the form & centers %>
11
11
  <div class="col-sm-8 col-sm-offset-2">
12
- <%= form_for @message, url: simple_contact.contact_path, html: {class: "form-horizontal" } do |f| %>
12
+ <%= form_for @message, url: simple_contact.create_contact_path, html: {class: "form-horizontal" } do |f| %>
13
13
 
14
14
  <div class="form-inputs">
15
15
 
data/config/routes.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  SimpleContact::Engine.routes.draw do
2
2
  # Routes are simple. All routes will point to the root_url, which will be where you mount the engine.
3
3
  get "/", to: 'contact#new', as: :contact
4
- post "/", to: 'contact#create', as: :contact
4
+ post "/", to: 'contact#create', as: :create_contact
5
5
  root to: 'contact#new'
6
6
  end
@@ -1,3 +1,3 @@
1
1
  module SimpleContact
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_contact
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Eggett