contact_us 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -11,7 +11,7 @@ Contact Us requires the Formtastic Gem. Read more about Formtastic @ https://gi
11
11
  In your `Gemfile`, add the following dependencies:
12
12
 
13
13
  gem 'formtastic'
14
- gem 'contact_us', '~> 0.0.3'
14
+ gem 'contact_us', '~> 0.0.4'
15
15
 
16
16
  From `Rails.root` run:
17
17
 
@@ -21,9 +21,9 @@ class ContactUs::Contact
21
21
 
22
22
  def save
23
23
  if self.valid?
24
- ContactMailer.contact_email(self).deliver
24
+ ContactUs::ContactMailer.contact_email(self).deliver
25
25
  return true
26
26
  end
27
27
  return false
28
28
  end
29
- end
29
+ end
@@ -1,3 +1,3 @@
1
1
  module ContactUs
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contact_us
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeff Dutil