mail_manager 3.2.4 → 3.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60106ab6ed6fa8759e705ba2ade261900e021119
4
- data.tar.gz: 06d24b9bfa053f08bd40b06bec508215402c7ffa
3
+ metadata.gz: ccad22ae4d5ef09bb078ef6918c254a617d4d9aa
4
+ data.tar.gz: ce3cf0ed13df2688280109f5405d9087e57e9c53
5
5
  SHA512:
6
- metadata.gz: dad285f19e9a47158e8a1019300293f632bc424e4eccce134247376e8a7ecc46651022c994ca891f9ba5f460ee1c0467d6d9edd4568ad59ef54f48e768fd1001
7
- data.tar.gz: 8626a45755844de330c0c839c914b7737960c33785978576494f569e2d0dc991c925eb9e060b4516d7561ea345a4dfd00bec03f25902c003800a09a46fe38a29
6
+ metadata.gz: f446fef7c05a8c08a88d0f3130c9f3350119ec00318a08b67ed4deeeed3a2f149e54b67b86b6265d5ec3c308f8871e204804d64390722be1c89f9689069e008a
7
+ data.tar.gz: b6335b6e69e8092181034cbf16a227260aa43eadac08a9c827f8d8d2b87fd99b4aca2538c7ec6bb528ccd9f9552e3bee1acdb7da4c2de0444f7af07f7337f22f
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Lone Star Internet, Inc.
1
+ Copyright (c) 2015 Lone Star Internet, Inc.
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  Mail Manager
2
2
  ============
3
3
 
4
- The goal of this project will be to create a plugin for use in any site which will provide an interface to manage mailing lists, scheduling of email mailings, subscribe/unsubscribe from lists by contacts, and view reports of bounces and possible track views of emails. Currently, only one list is supported for subscribe/unsubscribe by contact. An interface is available to provide mailable objects from other plugins.
4
+ The gem provides an interface to manage mailing lists, scheduling of email mailings, subscribe/unsubscribe from lists by contacts, and view reports of bounces and possible track views of emails. Currently unsubscribes a contact from all email lists. We might add a subscription management interface later to let a user unsubscribe selectively from a selection of mailing lists. An interface is provided to register mailable objects such as a newsletter from our newsletter gem. You can see how to do this in the Mailable Registry: app/models/mail_manager/mailable_registry.rb
5
5
 
6
- See the latest docs at the [Homepage](http://ireachnews.com) or the [Wiki](https://github.com/LoneStarInternet/mail_manager/wiki)
6
+ Also available as a stand alone application called [iReach](https://github.com/LoneStarInternet/iReach/releases) including the newsletter manager (newsletter template and elements manager, simple wysiwyg interface to create newsletters, and newsletter archive) and user access management. There is also the i_reach gem that ties mail_manager and newsletter together into one gem.
7
+
8
+ See the latest docs at the [Homepage](http://ireachnews.com/mail_manager_documentation.html)
7
9
 
8
10
  Requirements
9
11
  ------------
@@ -14,7 +16,7 @@ Requirements
14
16
 
15
17
  Optional Dependencies
16
18
  ---------------------
17
- * [RVM](http://rvm.io) - How we control our ruby environment(mainly concerns development)
19
+ * [RVM](http://rvm.io) - How we control our ruby environment (mainly concerns development)
18
20
  * currently we use github/git for our repository
19
21
 
20
22
  Installation
@@ -42,7 +44,7 @@ Generate delayed_jobs (this is the only job runner we support right now):
42
44
  rails g delayed_job:active_record
43
45
  ```
44
46
 
45
- **NOTE:** you need to create an email account that will receive bounces from your mailings(and allow POP)... configure in the following file:
47
+ **NOTE:** you need to create an email account that will receive bounces from your mailings (and allow POP)... configure in the following file:
46
48
 
47
49
  Add your routes to config/routes.rb (you can say where with at: '/path')
48
50
  ```ruby
@@ -54,20 +56,23 @@ config/mail_manager.yml
54
56
  This is where amost all of your configuration options are for this gem... current generator will add documentation to it (preserving your current settings) .. we'll probably want to upgrade to something like: [AppConfig](https://github.com/Oshuma/app_config) gem
55
57
 
56
58
 
57
- You can generate this file like above(where table_prefix is for prefixing table names):
59
+ You can generate this file like above (where table_prefix is for prefixing table names):
58
60
  ```
59
61
  rake mail_manager:default_app_config[table_prefix]
60
62
  ```
61
63
  * This generator adds settings documentation to the yml file
62
64
  * You can override values with a config/mail_manager.local.yml
63
- * For a full description [See the wiki](https://github.com/LoneStarInternet/mail_manager/wiki/config-mail_manager.yml)
65
+ * For a full description [See the documentation](http://ireachnews.com/mail_manager_documentation.html)
64
66
 
65
67
  Securing your App
66
68
  -----------------
67
- We implemented [CanCan](https://github.com/CanCanCommunity/cancancan). If you'd like to secure your actions to certain users and don't currently have any authorization in your app, you can follow the following steps if you want an easy config.. or you could make it more finely grained.. currently its all or nothing:
68
- [See the wiki](https://github.com/LoneStarInternet/mail_manager/wiki/Securing-your-app)
69
+ We implemented [CanCan](https://github.com/CanCanCommunity/cancancan). If you'd like to secure your actions to certain users and don't currently have any authorization in your app, you can follow the following steps if you want an easy config.. or you could make it more finely grained.. currently its all or nothing.
69
70
 
70
71
  Development
71
72
  -----------
72
73
  If you wish to contribute, you should follow these instructions to get up and running:
73
74
  [See the wiki](https://github.com/LoneStarInternet/mail_manager/wiki/Contributing)
75
+
76
+ Please write tests for any new functionality and run the test suite to make sure all tests are passing.
77
+
78
+ Thanks in advance for your contributions to the project!
@@ -1,3 +1,3 @@
1
1
  module MailManager
2
- VERSION = "3.2.4"
2
+ VERSION = "3.2.5"
3
3
  end
data/mail_manager.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |gem|
9
9
  gem.authors = ["Lone Star Internet"]
10
10
  gem.email = ["biz@lone-star.net", 'chauboldt@lone-star.net']
11
11
  gem.licenses = ["MIT"]
12
- gem.description = %q{Manages the delivery of mailable items. Handles bounces, unsubscribe, opt-in, etc.}
12
+ gem.description = %q{Manages the delivery of mailable items. Handles contacts, mailing lists, bounces, unsubscribe, opt-in, etc. Also available with a newsletter manager (including newsletter designs and elements management, wysiwyg newsletter editor, and newsletter archive) as well as user access control as part of the iReach gem.}
13
13
  gem.summary = %q{Mailing list management tool}
14
14
  gem.homepage = "http://ireachnews.com"
15
15
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mail_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.4
4
+ version: 3.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lone Star Internet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-28 00:00:00.000000000 Z
11
+ date: 2015-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -192,8 +192,10 @@ dependencies:
192
192
  - - "~>"
193
193
  - !ruby/object:Gem::Version
194
194
  version: '1.9'
195
- description: Manages the delivery of mailable items. Handles bounces, unsubscribe,
196
- opt-in, etc.
195
+ description: Manages the delivery of mailable items. Handles contacts, mailing lists,
196
+ bounces, unsubscribe, opt-in, etc. Also available with a newsletter manager (including
197
+ newsletter designs and elements management, wysiwyg newsletter editor, and newsletter
198
+ archive) as well as user access control as part of the iReach gem.
197
199
  email:
198
200
  - biz@lone-star.net
199
201
  - chauboldt@lone-star.net
@@ -505,7 +507,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
505
507
  version: '0'
506
508
  requirements: []
507
509
  rubyforge_project:
508
- rubygems_version: 2.4.6
510
+ rubygems_version: 2.4.3
509
511
  signing_key:
510
512
  specification_version: 4
511
513
  summary: Mailing list management tool