smailer 0.7.8 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.8
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dimitar Dimitrov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-11 00:00:00.000000000 Z
11
+ date: 2015-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -61,9 +61,9 @@ extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
63
  - ".gitignore"
64
+ - CHANGELOG.md
64
65
  - Gemfile
65
66
  - Gemfile.lock
66
- - Guardfile
67
67
  - README.md
68
68
  - Rakefile
69
69
  - generators/smailer/USAGE
@@ -76,9 +76,10 @@ files:
76
76
  - lib/smailer/constants.rb
77
77
  - lib/smailer/models.rb
78
78
  - lib/smailer/models/finished_mail.rb
79
+ - lib/smailer/models/mail_attachment.rb
79
80
  - lib/smailer/models/mail_campaign.rb
80
- - lib/smailer/models/mail_campaign_attachment.rb
81
81
  - lib/smailer/models/mail_key.rb
82
+ - lib/smailer/models/mail_template.rb
82
83
  - lib/smailer/models/mailing_list.rb
83
84
  - lib/smailer/models/property.rb
84
85
  - lib/smailer/models/queued_mail.rb
@@ -88,6 +89,7 @@ files:
88
89
  - lib/smailer/version.rb
89
90
  - rails/init.rb
90
91
  - release-version
92
+ - setup-test-db
91
93
  - smailer.gemspec
92
94
  - spec/dummy/README.rdoc
93
95
  - spec/dummy/Rakefile
@@ -123,14 +125,19 @@ files:
123
125
  - spec/dummy/config/locales/en.yml
124
126
  - spec/dummy/config/routes.rb
125
127
  - spec/dummy/config/secrets.yml
126
- - spec/dummy/db/test.sqlite3
127
128
  - spec/dummy/lib/assets/.keep
128
129
  - spec/dummy/public/404.html
129
130
  - spec/dummy/public/422.html
130
131
  - spec/dummy/public/500.html
131
132
  - spec/dummy/public/favicon.ico
132
- - spec/models/mail_key_spec.rb
133
+ - spec/factories/common.rb
134
+ - spec/factories/models.rb
135
+ - spec/features/issuing_a_newsletter_spec.rb
136
+ - spec/features/sending_oneoff_emails.rb
137
+ - spec/models/mail_campaign_spec.rb
138
+ - spec/models/queued_mail_spec.rb
133
139
  - spec/spec_helper.rb
140
+ - upgrading/migrations/smailer_v0_7_3_to_v0_8_0.rb
134
141
  homepage: http://github.com/livebg/smailer
135
142
  licenses: []
136
143
  metadata: {}
data/Guardfile DELETED
@@ -1,14 +0,0 @@
1
- guard :bundler do
2
- watch 'Gemfile'
3
- end
4
-
5
- guard :rspec, cmd: 'rspec --format progress --color -r ./spec/spec_helper.rb', all_on_start: true, all_after_pass: false do
6
-
7
- watch 'spec/spec_helper.rb'
8
- watch %r{^spec/support/.+\.rb$}
9
-
10
- watch(%r{^spec/.+_spec\.rb$})
11
-
12
- watch(%r{^lib/smailer/models/(.+)\.rb$}) {|m| "spec/models/#{m[1]}_spec.rb" }
13
-
14
- end
File without changes
@@ -1,18 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Smailer::Models::MailKey do
4
-
5
- it 'fails' do
6
- fail
7
- end
8
-
9
- describe 'associations' do
10
- end
11
-
12
- describe 'indexes' do
13
- end
14
-
15
- describe 'validations' do
16
- end
17
-
18
- end