beef-subscribers 0.1.0 → 0.1.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.
- data/VERSION +1 -1
- data/app/views/subscribers/_form.html.erb +3 -3
- data/subscribers.gemspec +3 -3
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<h2>Subscribe to our Newsletter</h2>
|
|
2
2
|
<div class="newsletter-form" id="subscribe_form">
|
|
3
|
-
<% form_for @subscriber, :method => :post
|
|
3
|
+
<% form_for @subscriber, :method => :post do |f| %>
|
|
4
4
|
<%= f.error_messages %>
|
|
5
5
|
<p><%= f.label :name %>
|
|
6
|
-
<%= f.text_field :name
|
|
6
|
+
<%= f.text_field :name %></p>
|
|
7
7
|
<p><%= f.label :email %>
|
|
8
|
-
<%= f.text_field :email
|
|
8
|
+
<%= f.text_field :email %></p>
|
|
9
9
|
|
|
10
10
|
<p><%= f.submit 'Send' %></p>
|
|
11
11
|
<% end %>
|
data/subscribers.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{subscribers}
|
|
5
|
-
s.version = "0.1.
|
|
5
|
+
s.version = "0.1.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Daniel Craig"]
|
|
9
|
-
s.date = %q{2009-
|
|
9
|
+
s.date = %q{2009-08-06}
|
|
10
10
|
s.email = %q{daniel@wearebeef.co.uk}
|
|
11
11
|
s.extra_rdoc_files = [
|
|
12
12
|
"LICENSE",
|
|
@@ -38,7 +38,7 @@ Gem::Specification.new do |s|
|
|
|
38
38
|
s.homepage = %q{http://github.com/dougle/subscribers}
|
|
39
39
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
40
40
|
s.require_paths = ["lib"]
|
|
41
|
-
s.rubygems_version = %q{1.3.
|
|
41
|
+
s.rubygems_version = %q{1.3.5}
|
|
42
42
|
s.summary = %q{Subscriber show generation}
|
|
43
43
|
s.test_files = [
|
|
44
44
|
"test/subscribers_test.rb",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beef-subscribers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Craig
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-08-06 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -46,6 +46,7 @@ files:
|
|
|
46
46
|
- test/test_helper.rb
|
|
47
47
|
has_rdoc: false
|
|
48
48
|
homepage: http://github.com/dougle/subscribers
|
|
49
|
+
licenses:
|
|
49
50
|
post_install_message:
|
|
50
51
|
rdoc_options:
|
|
51
52
|
- --charset=UTF-8
|
|
@@ -66,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
67
|
requirements: []
|
|
67
68
|
|
|
68
69
|
rubyforge_project:
|
|
69
|
-
rubygems_version: 1.
|
|
70
|
+
rubygems_version: 1.3.5
|
|
70
71
|
signing_key:
|
|
71
72
|
specification_version: 3
|
|
72
73
|
summary: Subscriber show generation
|