mlist 0.1.19 → 0.1.20

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/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ *0.1.20 [Enhancement] (2010-09-01)
2
+
3
+ * Fixed bug where delete would not work with select from table update occurs in (sql error). [aiwilliams]
4
+
1
5
  *0.1.19 [Enhancement] (2010-08-12)
2
6
 
3
7
  * Requiring subscriber instances to respond to 'rfc5322_email' instead of 'email_address' in order to allow the latter name to be used in associations. [aiwilliams]
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- :patch: 19
3
- :major: 0
2
+ :patch: 20
4
3
  :build:
4
+ :major: 0
5
5
  :minor: 1
@@ -144,7 +144,7 @@ module MList
144
144
  select meb.id from mlist_emails meb left join mlist_messages mmb on mmb.email_id = meb.id
145
145
  where mmb.mail_list_id != #{id}
146
146
  )}
147
- MList::Email.delete_all(conditions)
147
+ MList::Email.destroy_all(conditions)
148
148
  end
149
149
 
150
150
  def strip_list_footers(content)
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mlist
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 51
4
5
  prerelease: false
5
6
  segments:
6
7
  - 0
7
8
  - 1
8
- - 19
9
- version: 0.1.19
9
+ - 20
10
+ version: 0.1.20
10
11
  platform: ruby
11
12
  authors:
12
13
  - Adam Williams
@@ -14,7 +15,7 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-08-12 00:00:00 -04:00
18
+ date: 2010-09-01 00:00:00 -04:00
18
19
  default_executable:
19
20
  dependencies: []
20
21
 
@@ -30,7 +31,6 @@ extra_rdoc_files:
30
31
  files:
31
32
  - CHANGELOG
32
33
  - Gemfile
33
- - Gemfile.lock
34
34
  - README
35
35
  - Rakefile
36
36
  - TODO
@@ -62,6 +62,25 @@ files:
62
62
  - lib/mlist/util/tmail_methods.rb
63
63
  - lib/pop_ssl.rb
64
64
  - rails/init.rb
65
+ - spec/fixtures/schema.rb
66
+ - spec/integration/date_formats_spec.rb
67
+ - spec/integration/imap_email_server_spec.rb
68
+ - spec/integration/mlist_spec.rb
69
+ - spec/integration/pop_email_server_spec.rb
70
+ - spec/integration/proof_spec.rb
71
+ - spec/matchers/equal_tmail.rb
72
+ - spec/matchers/have_address.rb
73
+ - spec/matchers/have_header.rb
74
+ - spec/models/email_post_spec.rb
75
+ - spec/models/email_server/base_spec.rb
76
+ - spec/models/email_spec.rb
77
+ - spec/models/mail_list_spec.rb
78
+ - spec/models/message_spec.rb
79
+ - spec/models/thread_spec.rb
80
+ - spec/models/util/email_helpers_spec.rb
81
+ - spec/models/util/header_sanitizer_spec.rb
82
+ - spec/models/util/quoting_spec.rb
83
+ - spec/spec_helper.rb
65
84
  has_rdoc: true
66
85
  homepage: http://github.com/aiwilliams/mlist
67
86
  licenses: []
@@ -72,23 +91,27 @@ rdoc_options:
72
91
  require_paths:
73
92
  - lib
74
93
  required_ruby_version: !ruby/object:Gem::Requirement
94
+ none: false
75
95
  requirements:
76
96
  - - ">="
77
97
  - !ruby/object:Gem::Version
98
+ hash: 3
78
99
  segments:
79
100
  - 0
80
101
  version: "0"
81
102
  required_rubygems_version: !ruby/object:Gem::Requirement
103
+ none: false
82
104
  requirements:
83
105
  - - ">="
84
106
  - !ruby/object:Gem::Version
107
+ hash: 3
85
108
  segments:
86
109
  - 0
87
110
  version: "0"
88
111
  requirements: []
89
112
 
90
113
  rubyforge_project:
91
- rubygems_version: 1.3.6
114
+ rubygems_version: 1.3.7
92
115
  signing_key:
93
116
  specification_version: 3
94
117
  summary: A Ruby mailing list library designed to be integrated into other applications.
data/Gemfile.lock DELETED
@@ -1,97 +0,0 @@
1
- ---
2
- specs:
3
- - rake:
4
- version: 0.8.7
5
- - activesupport:
6
- version: 2.3.4
7
- - activerecord:
8
- version: 2.3.4
9
- - columnize:
10
- version: 0.3.1
11
- - dataset:
12
- version: 1.3.2
13
- - json_pure:
14
- version: 1.4.2
15
- - gemcutter:
16
- version: 0.5.0
17
- - git:
18
- version: 1.2.5
19
- - hpricot:
20
- version: 0.8.2
21
- - rubyforge:
22
- version: 2.0.4
23
- - jeweler:
24
- version: 1.4.0
25
- - linecache:
26
- version: "0.43"
27
- - macaddr:
28
- version: 1.0.0
29
- - rr:
30
- version: 0.10.0
31
- - rspec:
32
- version: 1.3.0
33
- - ruby-debug-base:
34
- version: 0.10.3
35
- - ruby-debug:
36
- version: 0.10.3
37
- - sqlite3-ruby:
38
- version: 1.2.5
39
- - tmail:
40
- version: 1.2.1
41
- - uuid:
42
- version: 2.3.0
43
- hash: f114a3759c0acf377d0d1d01f36996ba24a98ef7
44
- sources:
45
- - Rubygems:
46
- uri: http://gemcutter.org
47
- dependencies:
48
- ruby-debug:
49
- version: ">= 0"
50
- group:
51
- - :development
52
- sqlite3-ruby:
53
- version: ">= 0"
54
- group:
55
- - :development
56
- rr:
57
- version: = 0.10.0
58
- group:
59
- - :development
60
- activerecord:
61
- version: = 2.3.4
62
- group:
63
- - :default
64
- rspec:
65
- version: ">= 0"
66
- require:
67
- - spec
68
- group:
69
- - :development
70
- rake:
71
- version: ">= 0"
72
- group:
73
- - :development
74
- tmail:
75
- version: = 1.2.1
76
- group:
77
- - :default
78
- uuid:
79
- version: ">= 2.0.1"
80
- group:
81
- - :default
82
- dataset:
83
- version: ">= 0"
84
- group:
85
- - :development
86
- jeweler:
87
- version: ">= 0"
88
- group:
89
- - :development
90
- hpricot:
91
- version: ">= 0.8.2"
92
- group:
93
- - :default
94
- activesupport:
95
- version: = 2.3.4
96
- group:
97
- - :default