i_reach 0.1.2 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MjZiOWE1N2NiOTIyODVhMjRjYTFjNWVjNDM0ZGRjOTEwNWQxY2ExNg==
4
+ ZmViNWUxZGMzY2NlMjMxZDhiZDIyNDE1NjUwODc1NzExOTQ4YzNkZQ==
5
5
  data.tar.gz: !binary |-
6
- ZWMwZmUxMzc0NGYwMTEyZThlZTY4NmE5ZDA3OGY1N2ExMmI5MTlkNA==
6
+ NGI4YWZmOTY2YTU4ZTEyZjI2ZDQ5ODFjYjY5ZDJmMjQwMWY5YTFkNg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NTgxZGJkNzVkYjVkYTA2ZDY3YjFlM2VmZDNkYzFmNjVkYmQ5MjQ0ZTQxNjA1
10
- NzY4YTc1M2Q2YzFiMzI1ODg4MGE0ZWMyOWEzMDEyNGU4ZTIzNzgyMjhmOTYw
11
- MmM3NWZmNDg1ZTBiOGY3NDMwN2JmOGUzNzcxZGRjZWE1OTE0ZDI=
9
+ OWEyN2E1MDcyMjdhODVlNDMzNWEyNzdhMWI0OTBhNWVlNDk2ZjVhNDBlZGRl
10
+ MDBiMmRiNjQ5ZDUzYTNmZDMzNmQwYmUzY2M4ZTAwODAyMDMwNzQwZjI1MzU2
11
+ YzJkYTJjYTBjMGJkY2UxOTJjYmY3YTMzNjQ4NzhiM2FjOGU5NDE=
12
12
  data.tar.gz: !binary |-
13
- MTZjMGU2MGViMTNiOTRiZjk4MzI3MGY0YjQ4M2FlMmI0M2Q4YTNmNDM2YTE4
14
- YTEwYzgyOGYzODYzMGZmNzQ1NTJkOGU1YzcyZjNiMjhjNTYzYmZkYjk1YWRk
15
- NzkyZjUyZmNkMzJhMDcwYTNhMDk0MjVlZjRjYWZmZDNkZTJhZTY=
13
+ ZDI3YTQwMmU3YjM0ZThjMmU0NWEyMDdiMjI1YTJhOGQ1OTFiMTcwYTM1YWE3
14
+ Y2I2ZWEzOGNhMjUwNGVhMTExOGUzNzNmMmNjMmUzMDUzN2M2ZTlkYTdmMGVl
15
+ YjQ1NjJlYjkzMTRlYzQwNmJlOGM5MjZjYmU0OTA1NTBhMmU3ZGM=
data/README.md CHANGED
@@ -40,6 +40,9 @@ Installation
40
40
  `rake db:create # this doesn't always work... you may need to use your normal client & set up permissions`
41
41
 
42
42
  * configure [mail_manager](https://github.com/LoneStarInternet/mail_manager)
43
+ * generate and configure the mail manager settings file at config/mail_manager.yml: (replace table prefix with something... or nothing if you don't want to scope it)
44
+ `rake mail_manager:default_app_config[table_prefix]`
45
+
43
46
  * generate migrations
44
47
  `rake mail_manager:import_migrations`
45
48
 
@@ -47,16 +50,14 @@ Installation
47
50
  `rails g delayed_job:active_record`
48
51
 
49
52
  * NOTE: you need to create an email account that will receive bounces from your mailings(and allow POP)... configure in the following file:
50
- * generate and configure the mail manager settings file at config/mail_manager.yml: (replace table prefix with something... or nothing if you don't want to scope it)
51
- `rake mail_manager:default_app_config[table_prefix]`
52
53
 
53
54
  * configure [newsletter](https://github.com/LoneStarInternet/newsletter)
54
- * generate migrations
55
- `rake newsletter:import_migrations`
56
-
57
55
  * 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)
58
56
  `rake newsletter:default_app_config[table_prefix]`
59
57
 
58
+ * generate migrations
59
+ `rake newsletter:import_migrations`
60
+
60
61
  * migrate the database
61
62
  `rake db:migrate`
62
63
 
@@ -1,4 +1,4 @@
1
1
  module IReach
2
- class ApplicationController < ActionController::Base
2
+ class ApplicationController < ::ApplicationController
3
3
  end
4
4
  end
@@ -1,3 +1,3 @@
1
1
  module IReach
2
- VERSION = "0.1.2"
2
+ VERSION = "3.0.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: i_reach
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Hauboldt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-10-10 00:00:00.000000000 Z
12
+ date: 2015-03-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -17,98 +17,112 @@ dependencies:
17
17
  requirements:
18
18
  - - ~>
19
19
  - !ruby/object:Gem::Version
20
- version: 3.2.19
20
+ version: '3.2'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - ~>
26
26
  - !ruby/object:Gem::Version
27
- version: 3.2.19
27
+ version: '3.2'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: jquery-rails
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ! '>='
32
+ - - ~>
33
33
  - !ruby/object:Gem::Version
34
- version: '0'
34
+ version: '3.1'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ! '>='
39
+ - - ~>
40
40
  - !ruby/object:Gem::Version
41
- version: '0'
41
+ version: '3.1'
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: jquery-ui-rails
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ! '>='
46
+ - - ~>
47
47
  - !ruby/object:Gem::Version
48
- version: '0'
48
+ version: '5.0'
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ! '>='
53
+ - - ~>
54
54
  - !ruby/object:Gem::Version
55
- version: '0'
55
+ version: '5.0'
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: jquery-ui-themes
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ! '>='
60
+ - - ~>
61
61
  - !ruby/object:Gem::Version
62
- version: '0'
62
+ version: '0.0'
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ! '>='
67
+ - - ~>
68
68
  - !ruby/object:Gem::Version
69
- version: '0'
69
+ version: '0.0'
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: mail_manager
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ! '>='
74
+ - - ~>
75
75
  - !ruby/object:Gem::Version
76
- version: '0'
76
+ version: '3.0'
77
77
  type: :runtime
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - ! '>='
81
+ - - ~>
82
82
  - !ruby/object:Gem::Version
83
- version: '0'
83
+ version: '3.0'
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: newsletter
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - ! '>='
88
+ - - ~>
89
89
  - !ruby/object:Gem::Version
90
- version: '0'
90
+ version: '3.0'
91
91
  type: :runtime
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - ! '>='
95
+ - - ~>
96
96
  - !ruby/object:Gem::Version
97
- version: '0'
97
+ version: '3.0'
98
+ - !ruby/object:Gem::Dependency
99
+ name: cancancan
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
104
+ version: '1.9'
105
+ type: :runtime
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ~>
110
+ - !ruby/object:Gem::Version
111
+ version: '1.9'
98
112
  - !ruby/object:Gem::Dependency
99
113
  name: mysql2
100
114
  requirement: !ruby/object:Gem::Requirement
101
115
  requirements:
102
- - - ! '>='
116
+ - - ~>
103
117
  - !ruby/object:Gem::Version
104
- version: '0'
118
+ version: '0.3'
105
119
  type: :development
106
120
  prerelease: false
107
121
  version_requirements: !ruby/object:Gem::Requirement
108
122
  requirements:
109
- - - ! '>='
123
+ - - ~>
110
124
  - !ruby/object:Gem::Version
111
- version: '0'
125
+ version: '0.3'
112
126
  description: Combines the 'newsletter' and 'mail_manager' gems with viable admin,
113
127
  login and navigation.
114
128
  email:
@@ -217,7 +231,8 @@ files:
217
231
  - lib/i_reach/version.rb
218
232
  - lib/tasks/i_reach_tasks.rake
219
233
  homepage: http://lone-star.net
220
- licenses: []
234
+ licenses:
235
+ - MIT
221
236
  metadata: {}
222
237
  post_install_message:
223
238
  rdoc_options: []
@@ -235,7 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
235
250
  version: '0'
236
251
  requirements: []
237
252
  rubyforge_project:
238
- rubygems_version: 2.2.2
253
+ rubygems_version: 2.4.5
239
254
  signing_key:
240
255
  specification_version: 4
241
256
  summary: Newsletter and Mailing List manager