radiant-reader_mailman-extension 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,9 +3,6 @@
3
3
  %h3
4
4
  = t('mailing_list_preferences')
5
5
  %p
6
- = rf.check_box :opt_out_of_mailing_list
7
- = rf.label :opt_out_of_mailing_list
8
- %br
9
6
  - @reader.build_mailing_list_membership
10
7
  - rf.fields_for :mailing_list_membership do |mf|
11
8
  = mf.check_box :nomail
@@ -1,5 +1,5 @@
1
1
  module RadiantReaderMailmanExtension
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  SUMMARY = %q{Basic integration of reader groups with mailman mailing lists}
4
4
  DESCRIPTION = %q{Allows you to specify and configure a mailman mailing list for your readers. Group lists will follow.}
5
5
  URL = "http://radiant.spanner.org/reader_mailman"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radiant-reader_mailman-extension
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - William Ross
@@ -35,10 +35,10 @@ files:
35
35
  - app/views/admin/readers/_mailing_list.html.haml
36
36
  - config/initializers/radiant_config.rb
37
37
  - config/locales/en.yml
38
- - db/migrate/20111121160131_mailing_list_preferences.rb
39
38
  - lib/mailing_list_reader.rb
40
39
  - lib/radiant-reader_mailman-extension.rb
41
40
  - lib/tasks/reader_mailman_extension_tasks.rake
41
+ - radiant-reader_mailman-extension-0.1.0.gem
42
42
  - radiant-reader_mailman-extension.gemspec
43
43
  - Rakefile
44
44
  - reader_mailman_extension.rb
@@ -50,11 +50,10 @@ files:
50
50
  - spec/models/group_spec.rb
51
51
  - spec/spec.opts
52
52
  - spec/spec_helper.rb
53
- - VERSION
54
53
  homepage: http://radiant.spanner.org/reader_mailman
55
54
  licenses: []
56
55
 
57
- post_install_message: "\n Add this to your radiant project with a line in your Gemfile:\n\n gem 'radiant-reader_mailman-extension', '~> 0.1.0'\n\n "
56
+ post_install_message: "\n Add this to your radiant project with a line in your Gemfile:\n\n gem 'radiant-reader_mailman-extension', '~> 0.1.1'\n\n "
58
57
  rdoc_options: []
59
58
 
60
59
  require_paths:
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.5.2
@@ -1,15 +0,0 @@
1
- class MailingListPreferences < ActiveRecord::Migration
2
- def self.up
3
- add_column :readers, :opt_out_of_mailing_list, :boolean
4
- add_column :readers, :mailing_list_digested, :boolean
5
- add_column :readers, :mailing_list_notmetoo, :boolean
6
- add_column :readers, :mailing_list_nomail, :boolean
7
- end
8
-
9
- def self.down
10
- remove_column :readers, :opt_out_of_mailing_list
11
- remove_column :readers, :mailing_list_digested
12
- remove_column :readers, :mailing_list_notmetoo
13
- remove_column :readers, :mailing_list_nomail
14
- end
15
- end