i_reach 3.2.3 → 3.2.4
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 +4 -4
- data/README.md +10 -1
- data/lib/i_reach/version.rb +1 -1
- data/lib/tasks/i_reach_tasks.rake +7 -4
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1479f32e5dd34da7742b40e34bf19346da2ccd2e
|
|
4
|
+
data.tar.gz: a6734975a4e5fe0a6532894ae549cfcac022b12e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bb71790da6ced0fff2fd9629e5f81cccbb80bc88729829a9d598bb13fd2958a70dfaba0420c0297fe2bdbcb715c5182a71ee2da2c6fc934212b3cf51dc4044d
|
|
7
|
+
data.tar.gz: 6a19080c3920bb3501aff20fefa582432bd5d3491c41d9963fa4d0c93b0250a3935a4c5ab2148d49d2926d3578470a3679c3de610bf88b1d8521200fe5ff2ff0
|
data/README.md
CHANGED
|
@@ -3,6 +3,10 @@ IReach
|
|
|
3
3
|
|
|
4
4
|
IReach integrates the gems [newsletter](https://github.com/LoneStarInternet/newsletter/) and [mail_manager](https://github.com/LoneStarInternet/mail_manager) into a useable site with administration and useful navigation with little work to get it going.
|
|
5
5
|
|
|
6
|
+
Online Documentation:
|
|
7
|
+
* [Homepage](http://ireachnews.com)
|
|
8
|
+
* [i_reach github](https://github.com/LoneStarInternet/i_reach/wiki)
|
|
9
|
+
|
|
6
10
|
Requirements
|
|
7
11
|
------------
|
|
8
12
|
|
|
@@ -63,7 +67,7 @@ Installation
|
|
|
63
67
|
```
|
|
64
68
|
rails g delayed_job:active_record
|
|
65
69
|
```
|
|
66
|
-
* NOTE: you need to create an email account that will receive bounces from your mailings(and allow POP)... configure in
|
|
70
|
+
* NOTE: you need to create an email account that will receive bounces from your mailings(and allow POP)... configure in config/mail_manager.yml
|
|
67
71
|
|
|
68
72
|
* configure [newsletter](https://github.com/LoneStarInternet/newsletter)
|
|
69
73
|
* generate and configure the newsletter settings file at config/newsletter.yml: (replace table prefix with something... or nothing if you don't want to scope it)
|
|
@@ -88,3 +92,8 @@ Installation
|
|
|
88
92
|
root to: 'i_reach/welcome#index'
|
|
89
93
|
```
|
|
90
94
|
|
|
95
|
+
* if you mount at "/", you probably need to remove public/index.html
|
|
96
|
+
`rm public/index.html`
|
|
97
|
+
|
|
98
|
+
* either create a newsletter design from scratch or you can import an example:
|
|
99
|
+
`rake newsletter:import_example_design`
|
data/lib/i_reach/version.rb
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
namespace :i_reach do
|
|
2
|
+
desc "Upgrade application files such as migrations after a gem upgrade"
|
|
3
|
+
task :upgrade do
|
|
4
|
+
Rake::Task['mail_manager:upgrade'].invoke
|
|
5
|
+
Rake::Task['newsletter:upgrade'].invoke
|
|
6
|
+
end
|
|
7
|
+
end
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: i_reach
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
+
- Lone Star Internet
|
|
7
8
|
- Christopher Hauboldt
|
|
8
|
-
- Ken Biggs
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-04-
|
|
12
|
+
date: 2015-04-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|
|
@@ -126,6 +126,7 @@ dependencies:
|
|
|
126
126
|
description: Combines the 'newsletter' and 'mail_manager' gems with viable admin,
|
|
127
127
|
login and navigation.
|
|
128
128
|
email:
|
|
129
|
+
- biz@lone-star.net
|
|
129
130
|
- chauboldt@lone-star.net
|
|
130
131
|
executables: []
|
|
131
132
|
extensions: []
|
|
@@ -184,7 +185,7 @@ files:
|
|
|
184
185
|
- lib/i_reach/engine.rb
|
|
185
186
|
- lib/i_reach/version.rb
|
|
186
187
|
- lib/tasks/i_reach_tasks.rake
|
|
187
|
-
homepage: http://
|
|
188
|
+
homepage: http://ireachnews.com
|
|
188
189
|
licenses:
|
|
189
190
|
- MIT
|
|
190
191
|
metadata: {}
|