mailboxer_multi_attach 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +7 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +17 -0
  5. data/Gemfile.lock +160 -0
  6. data/MIT-LICENSE +20 -0
  7. data/README.md +17 -0
  8. data/README.rdoc +18 -0
  9. data/Rakefile +31 -0
  10. data/app/models/message_attachment.rb +8 -0
  11. data/app/models/messageable.rb +34 -0
  12. data/app/uploaders/message_file_uploader.rb +5 -0
  13. data/db/migrate/20151123194517_create_message_attachments.rb +10 -0
  14. data/lib/generators/mailboxer_multi_attach/install_generator.rb +22 -0
  15. data/lib/generators/mailboxer_multi_attach/templates/create_message_attachments.rb +10 -0
  16. data/lib/mailboxer_multi_attach/version.rb +3 -0
  17. data/lib/mailboxer_multi_attach.rb +7 -0
  18. data/lib/tasks/mailboxer_multi_attach_tasks.rake +4 -0
  19. data/mailboxer_multi_attach.gemspec +28 -0
  20. data/spec/dummy/Gemfile +5 -0
  21. data/spec/dummy/Gemfile.lock +113 -0
  22. data/spec/dummy/README.rdoc +261 -0
  23. data/spec/dummy/Rakefile +7 -0
  24. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  25. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  26. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  27. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  28. data/spec/dummy/app/mailers/.gitkeep +0 -0
  29. data/spec/dummy/app/models/.gitkeep +0 -0
  30. data/spec/dummy/app/models/message_attachment.rb +3 -0
  31. data/spec/dummy/app/models/user.rb +7 -0
  32. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/spec/dummy/app/views/mailboxer/message_mailer/new_message_email.html.erb +20 -0
  34. data/spec/dummy/app/views/mailboxer/message_mailer/new_message_email.text.erb +10 -0
  35. data/spec/dummy/app/views/mailboxer/message_mailer/reply_message_email.html.erb +20 -0
  36. data/spec/dummy/app/views/mailboxer/message_mailer/reply_message_email.text.erb +10 -0
  37. data/spec/dummy/app/views/mailboxer/notification_mailer/new_notification_email.html.erb +20 -0
  38. data/spec/dummy/app/views/mailboxer/notification_mailer/new_notification_email.text.erb +10 -0
  39. data/spec/dummy/config/application.rb +60 -0
  40. data/spec/dummy/config/boot.rb +10 -0
  41. data/spec/dummy/config/database.yml +25 -0
  42. data/spec/dummy/config/environment.rb +5 -0
  43. data/spec/dummy/config/environments/development.rb +37 -0
  44. data/spec/dummy/config/environments/production.rb +67 -0
  45. data/spec/dummy/config/environments/test.rb +37 -0
  46. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  47. data/spec/dummy/config/initializers/inflections.rb +15 -0
  48. data/spec/dummy/config/initializers/mailboxer.rb +21 -0
  49. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  50. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  51. data/spec/dummy/config/initializers/session_store.rb +8 -0
  52. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  53. data/spec/dummy/config/locales/en.yml +5 -0
  54. data/spec/dummy/config/routes.rb +58 -0
  55. data/spec/dummy/config.ru +4 -0
  56. data/spec/dummy/db/development.sqlite3 +0 -0
  57. data/spec/dummy/db/migrate/20151123025448_create_users.rb +10 -0
  58. data/spec/dummy/db/migrate/20151123152908_create_mailboxer.mailboxer_engine.rb +66 -0
  59. data/spec/dummy/db/migrate/20151123152909_add_conversation_optout.mailboxer_engine.rb +15 -0
  60. data/spec/dummy/db/migrate/20151123152910_add_missing_indices.mailboxer_engine.rb +20 -0
  61. data/spec/dummy/db/migrate/20151123235316_create_message_attachments.rb +10 -0
  62. data/spec/dummy/db/schema.rb +83 -0
  63. data/spec/dummy/db/test.sqlite3 +0 -0
  64. data/spec/dummy/lib/assets/.gitkeep +0 -0
  65. data/spec/dummy/log/.gitkeep +0 -0
  66. data/spec/dummy/log/development.log +372 -0
  67. data/spec/dummy/log/test.log +4181 -0
  68. data/spec/dummy/public/404.html +26 -0
  69. data/spec/dummy/public/422.html +26 -0
  70. data/spec/dummy/public/500.html +25 -0
  71. data/spec/dummy/public/favicon.ico +0 -0
  72. data/spec/dummy/public/uploads/testfile.txt +1 -0
  73. data/spec/dummy/public/uploads/tmp/1448318001-52723-7553/testfile.txt +1 -0
  74. data/spec/dummy/public/uploads/tmp/1448377714-90292-0212/testfile.txt +1 -0
  75. data/spec/dummy/script/rails +6 -0
  76. data/spec/dummy/spec/models/message_attachment_spec.rb +5 -0
  77. data/spec/dummy/spec/models/user_spec.rb +5 -0
  78. data/spec/factories/user.rb +10 -0
  79. data/spec/mailboxer_multi_attach_spec.rb +0 -0
  80. data/spec/models/message_attachment_spec.rb +15 -0
  81. data/spec/models/messageable_spec.rb +19 -0
  82. data/spec/spec_helper.rb +40 -0
  83. data/spec/testfile.txt +1 -0
  84. metadata +339 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1f581bd3e39955398015a6b2c5a93015a4c294ca
4
+ data.tar.gz: 9ea3db9d621382d4abef025192690a4b02d0cd73
5
+ SHA512:
6
+ metadata.gz: 0d9ab4401cdb07896af963d4f261d17b16932ac60687d10dc274b2fee5a1ca5705dee415f12ce99243b30022692ea581ab38a78ee0653d7f11a9a484c302ac44
7
+ data.tar.gz: 51a988f11239485531b9b480836638303a602157f17ae3283e8fb0d934426a823e956ddba77a8a6e6f6256d69a5a10a9d00b8591941427d8c62365fd790c6b95
data/.gitignore ADDED
@@ -0,0 +1,7 @@
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ test/dummy/db/*.sqlite3
5
+ test/dummy/log/*.log
6
+ test/dummy/tmp/
7
+ test/dummy/.sass-cache
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.0.0-p647
data/Gemfile ADDED
@@ -0,0 +1,17 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Declare your gem's dependencies in mailboxer_multi_attach.gemspec.
4
+ # Bundler will treat runtime dependencies like base dependencies, and
5
+ # development dependencies will be added by default to the :development group.
6
+ gemspec
7
+
8
+ # jquery-rails is used by the dummy application
9
+ gem "jquery-rails"
10
+
11
+ # Declare any dependencies that are still in development here instead of in
12
+ # your gemspec. These might include edge Rails or gems from your path or
13
+ # Git. Remember to move these dependencies to your gemspec before releasing
14
+ # your gem to rubygems.org.
15
+
16
+ # To use debugger
17
+ # gem 'debugger'
data/Gemfile.lock ADDED
@@ -0,0 +1,160 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ mailboxer_multi_attach (0.0.1)
5
+ carrierwave (= 0.10.0)
6
+ mailboxer (= 0.13.0)
7
+ rails (~> 3.2.22)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionmailer (3.2.22)
13
+ actionpack (= 3.2.22)
14
+ mail (~> 2.5.4)
15
+ actionpack (3.2.22)
16
+ activemodel (= 3.2.22)
17
+ activesupport (= 3.2.22)
18
+ builder (~> 3.0.0)
19
+ erubis (~> 2.7.0)
20
+ journey (~> 1.0.4)
21
+ rack (~> 1.4.5)
22
+ rack-cache (~> 1.2)
23
+ rack-test (~> 0.6.1)
24
+ sprockets (~> 2.2.1)
25
+ activemodel (3.2.22)
26
+ activesupport (= 3.2.22)
27
+ builder (~> 3.0.0)
28
+ activerecord (3.2.22)
29
+ activemodel (= 3.2.22)
30
+ activesupport (= 3.2.22)
31
+ arel (~> 3.0.2)
32
+ tzinfo (~> 0.3.29)
33
+ activeresource (3.2.22)
34
+ activemodel (= 3.2.22)
35
+ activesupport (= 3.2.22)
36
+ activesupport (3.2.22)
37
+ i18n (~> 0.6, >= 0.6.4)
38
+ multi_json (~> 1.0)
39
+ arel (3.0.3)
40
+ builder (3.0.4)
41
+ byebug (8.2.0)
42
+ carrierwave (0.10.0)
43
+ activemodel (>= 3.2.0)
44
+ activesupport (>= 3.2.0)
45
+ json (>= 1.7)
46
+ mime-types (>= 1.16)
47
+ coderay (1.1.0)
48
+ diff-lcs (1.2.5)
49
+ erubis (2.7.0)
50
+ factory_girl (2.6.4)
51
+ activesupport (>= 2.3.9)
52
+ foreigner (1.7.4)
53
+ activerecord (>= 3.0.0)
54
+ hike (1.2.3)
55
+ i18n (0.7.0)
56
+ journey (1.0.4)
57
+ jquery-rails (3.1.4)
58
+ railties (>= 3.0, < 5.0)
59
+ thor (>= 0.14, < 2.0)
60
+ json (1.8.3)
61
+ mail (2.5.4)
62
+ mime-types (~> 1.16)
63
+ treetop (~> 1.4.8)
64
+ mailboxer (0.13.0)
65
+ carrierwave (>= 0.5.8)
66
+ foreigner (>= 0.9.1)
67
+ rails (>= 3.2.0)
68
+ method_source (0.8.2)
69
+ mime-types (1.25.1)
70
+ multi_json (1.11.2)
71
+ polyglot (0.3.5)
72
+ pry (0.10.3)
73
+ coderay (~> 1.1.0)
74
+ method_source (~> 0.8.1)
75
+ slop (~> 3.4)
76
+ pry-byebug (3.3.0)
77
+ byebug (~> 8.0)
78
+ pry (~> 0.10)
79
+ rack (1.4.7)
80
+ rack-cache (1.5.1)
81
+ rack (>= 0.4)
82
+ rack-ssl (1.3.4)
83
+ rack
84
+ rack-test (0.6.3)
85
+ rack (>= 1.0)
86
+ rails (3.2.22)
87
+ actionmailer (= 3.2.22)
88
+ actionpack (= 3.2.22)
89
+ activerecord (= 3.2.22)
90
+ activeresource (= 3.2.22)
91
+ activesupport (= 3.2.22)
92
+ bundler (~> 1.0)
93
+ railties (= 3.2.22)
94
+ railties (3.2.22)
95
+ actionpack (= 3.2.22)
96
+ activesupport (= 3.2.22)
97
+ rack-ssl (~> 1.3.2)
98
+ rake (>= 0.8.7)
99
+ rdoc (~> 3.4)
100
+ thor (>= 0.14.6, < 2.0)
101
+ rake (10.4.2)
102
+ rdoc (3.12.2)
103
+ json (~> 1.4)
104
+ rspec (3.4.0)
105
+ rspec-core (~> 3.4.0)
106
+ rspec-expectations (~> 3.4.0)
107
+ rspec-mocks (~> 3.4.0)
108
+ rspec-collection_matchers (1.1.2)
109
+ rspec-expectations (>= 2.99.0.beta1)
110
+ rspec-core (3.4.1)
111
+ rspec-support (~> 3.4.0)
112
+ rspec-expectations (3.4.0)
113
+ diff-lcs (>= 1.2.0, < 2.0)
114
+ rspec-support (~> 3.4.0)
115
+ rspec-its (1.2.0)
116
+ rspec-core (>= 3.0.0)
117
+ rspec-expectations (>= 3.0.0)
118
+ rspec-mocks (3.4.0)
119
+ diff-lcs (>= 1.2.0, < 2.0)
120
+ rspec-support (~> 3.4.0)
121
+ rspec-rails (3.4.0)
122
+ actionpack (>= 3.0, < 4.3)
123
+ activesupport (>= 3.0, < 4.3)
124
+ railties (>= 3.0, < 4.3)
125
+ rspec-core (~> 3.4.0)
126
+ rspec-expectations (~> 3.4.0)
127
+ rspec-mocks (~> 3.4.0)
128
+ rspec-support (~> 3.4.0)
129
+ rspec-support (3.4.1)
130
+ slop (3.6.0)
131
+ sprockets (2.2.3)
132
+ hike (~> 1.2)
133
+ multi_json (~> 1.0)
134
+ rack (~> 1.0)
135
+ tilt (~> 1.1, != 1.3.0)
136
+ sqlite3 (1.3.11)
137
+ thor (0.19.1)
138
+ tilt (1.4.1)
139
+ treetop (1.4.15)
140
+ polyglot
141
+ polyglot (>= 0.3.1)
142
+ tzinfo (0.3.45)
143
+
144
+ PLATFORMS
145
+ ruby
146
+
147
+ DEPENDENCIES
148
+ factory_girl (~> 2.6.0)
149
+ jquery-rails
150
+ mailboxer_multi_attach!
151
+ pry
152
+ pry-byebug
153
+ rspec (~> 3.4.0)
154
+ rspec-collection_matchers (~> 1.1)
155
+ rspec-its (~> 1.1)
156
+ rspec-rails (~> 3.0)
157
+ sqlite3
158
+
159
+ BUNDLED WITH
160
+ 1.10.6
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2015 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # MailboxerMultiAttach
2
+
3
+ This project rocks and uses MIT-LICENSE.
4
+
5
+ ## Install
6
+
7
+ Add to your gemfile and run the following
8
+
9
+ rails g mailboxer_multi_attach:install
10
+ bundle exec rake db:migrate
11
+
12
+ ## Usage
13
+
14
+ On any `messageable` object you utilize `send_message_mult_attach`
15
+
16
+ ## TODO
17
+ - reply_to method for conversations
data/README.rdoc ADDED
@@ -0,0 +1,18 @@
1
+ = MailboxerMultiAttach
2
+
3
+ This project rocks and uses MIT-LICENSE.
4
+
5
+ Install
6
+
7
+ Add to your gemfile and run the following
8
+
9
+ rails g mailboxer_multi_attach:install
10
+ bundle exec rake db:migrate
11
+
12
+ Usage
13
+
14
+ On any `messageable` object you utilize `send_message_mult_attach`
15
+
16
+ TODO
17
+
18
+ - reply_to method for conversations
data/Rakefile ADDED
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'MailboxerMultiAttach'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+ Bundler::GemHelper.install_tasks
24
+
25
+ require 'rubygems'
26
+ require 'bundler/setup'
27
+ require "bundler/gem_tasks"
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec)
31
+ task :default => :spec
@@ -0,0 +1,8 @@
1
+ module Mailboxer
2
+ class MessageAttachment < ActiveRecord::Base
3
+ belongs_to :mailboxer_message
4
+ mount_uploader :file, Mailboxer::MessageFileUploader
5
+ self.table_name = :mailboxer_message_attachments
6
+ attr_accessible :message_id, :file
7
+ end
8
+ end
@@ -0,0 +1,34 @@
1
+ module Mailboxer
2
+ module Models
3
+ module Messageable
4
+
5
+ def send_message_mult_attach(recipients, msg_body, subject, sanitize_text=true, attachments=nil, message_timestamp = Time.now)
6
+ convo = ::Mailboxer::ConversationBuilder.new({
7
+ :subject => subject,
8
+ :created_at => message_timestamp,
9
+ :updated_at => message_timestamp
10
+ }).build
11
+
12
+ message = ::Mailboxer::MessageBuilder.new({
13
+ :sender => self,
14
+ :conversation => convo,
15
+ :recipients => recipients,
16
+ :body => msg_body,
17
+ :subject => subject,
18
+ :created_at => message_timestamp,
19
+ :updated_at => message_timestamp
20
+ }).build
21
+
22
+ Mailboxer::Message.class_eval do
23
+ has_many :message_attachments
24
+ attr_accessible :message_attachments
25
+ end
26
+
27
+ attachments.each do |m|
28
+ message.message_attachments << MessageAttachment.new(file: m[:file])
29
+ end
30
+ message.deliver false, sanitize_text
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,5 @@
1
+ module Mailboxer
2
+ class MessageFileUploader < CarrierWave::Uploader::Base
3
+ storage :file
4
+ end
5
+ end
@@ -0,0 +1,10 @@
1
+ class CreateMessageAttachments < ActiveRecord::Migration
2
+ def change
3
+ create_table :mailboxer_message_attachments do |t|
4
+ t.string :file
5
+ t.integer :message_id
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,22 @@
1
+ module MailboxerMultiAttach
2
+ class InstallGenerator < Rails::Generators::Base #:nodoc:
3
+ include Rails::Generators::Migration
4
+ source_root File.expand_path('../templates', __FILE__)
5
+ require 'rails/generators/migration'
6
+
7
+ desc "add the migrations"
8
+
9
+ def self.next_migration_number path
10
+ unless @prev_migration_nr
11
+ @prev_migration_nr = Time.now.utc.strftime("%Y%m%d%H%M%S").to_i
12
+ else
13
+ @prev_migration_nr += 1
14
+ end
15
+ @prev_migration_nr.to_s
16
+ end
17
+
18
+ def copy_migrations
19
+ migration_template "create_message_attachments.rb", "db/migrate/create_message_attachments.rb"
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,10 @@
1
+ class CreateMessageAttachments < ActiveRecord::Migration
2
+ def change
3
+ create_table :mailboxer_message_attachments do |t|
4
+ t.string :file
5
+ t.integer :message_id
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,3 @@
1
+ module MailboxerMultiAttach
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,7 @@
1
+ require 'rails/all'
2
+ require 'carrierwave'
3
+ require 'carrierwave/orm/activerecord'
4
+ require 'mailboxer'
5
+ require_relative '../app/uploaders/message_file_uploader'
6
+ require_relative '../app/models/message_attachment'
7
+ require_relative '../app/models/messageable'
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :mailboxer_multi_attach do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,28 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ require "mailboxer_multi_attach/version"
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |s|
8
+ s.name = "mailboxer_multi_attach"
9
+ s.version = MailboxerMultiAttach::VERSION
10
+ s.authors = ["Tommy Rodriguez"]
11
+ s.email = 'trodriguez91@icloud.com'
12
+ s.homepage = "http://rubygems.org/mailboxer_multi_attach"
13
+ s.summary = 'multiple attachments'
14
+ s.description = 'Allows multiple attachments for mailboxer messsages and replies'
15
+ s.test_files = Dir["spec/**/*"]
16
+ s.files = `git ls-files`.split("\n")
17
+ s.add_dependency "rails", "~> 3.2.22"
18
+ s.add_runtime_dependency('mailboxer', '0.13.0')
19
+ s.add_runtime_dependency('carrierwave', '0.10.0')
20
+ s.add_development_dependency 'rspec-rails', '~> 3.0'
21
+ s.add_development_dependency 'rspec', '~> 3.4.0'
22
+ s.add_development_dependency 'rspec-its', '~> 1.1'
23
+ s.add_development_dependency 'rspec-collection_matchers', '~> 1.1'
24
+ s.add_development_dependency('factory_girl', '~> 2.6.0')
25
+ s.add_development_dependency('sqlite3')
26
+ s.add_development_dependency('pry')
27
+ s.add_development_dependency('pry-byebug')
28
+ end
@@ -0,0 +1,5 @@
1
+ source 'http://rubygems.org'
2
+ gem 'mailboxer'
3
+ gem 'mailboxer_multi_attach', :path => '../../'
4
+ gem 'factory_girl'
5
+ gem 'sqlite3'
@@ -0,0 +1,113 @@
1
+ PATH
2
+ remote: ../../
3
+ specs:
4
+ mailboxer_multi_attach (0.0.1)
5
+ carrierwave (= 0.10.0)
6
+ mailboxer (= 0.13.0)
7
+ rails (~> 3.2.22)
8
+
9
+ GEM
10
+ remote: http://rubygems.org/
11
+ specs:
12
+ actionmailer (3.2.22)
13
+ actionpack (= 3.2.22)
14
+ mail (~> 2.5.4)
15
+ actionpack (3.2.22)
16
+ activemodel (= 3.2.22)
17
+ activesupport (= 3.2.22)
18
+ builder (~> 3.0.0)
19
+ erubis (~> 2.7.0)
20
+ journey (~> 1.0.4)
21
+ rack (~> 1.4.5)
22
+ rack-cache (~> 1.2)
23
+ rack-test (~> 0.6.1)
24
+ sprockets (~> 2.2.1)
25
+ activemodel (3.2.22)
26
+ activesupport (= 3.2.22)
27
+ builder (~> 3.0.0)
28
+ activerecord (3.2.22)
29
+ activemodel (= 3.2.22)
30
+ activesupport (= 3.2.22)
31
+ arel (~> 3.0.2)
32
+ tzinfo (~> 0.3.29)
33
+ activeresource (3.2.22)
34
+ activemodel (= 3.2.22)
35
+ activesupport (= 3.2.22)
36
+ activesupport (3.2.22)
37
+ i18n (~> 0.6, >= 0.6.4)
38
+ multi_json (~> 1.0)
39
+ arel (3.0.3)
40
+ builder (3.0.4)
41
+ carrierwave (0.10.0)
42
+ activemodel (>= 3.2.0)
43
+ activesupport (>= 3.2.0)
44
+ json (>= 1.7)
45
+ mime-types (>= 1.16)
46
+ erubis (2.7.0)
47
+ factory_girl (4.5.0)
48
+ activesupport (>= 3.0.0)
49
+ foreigner (1.7.4)
50
+ activerecord (>= 3.0.0)
51
+ hike (1.2.3)
52
+ i18n (0.7.0)
53
+ journey (1.0.4)
54
+ json (1.8.3)
55
+ mail (2.5.4)
56
+ mime-types (~> 1.16)
57
+ treetop (~> 1.4.8)
58
+ mailboxer (0.13.0)
59
+ carrierwave (>= 0.5.8)
60
+ foreigner (>= 0.9.1)
61
+ rails (>= 3.2.0)
62
+ mime-types (1.25.1)
63
+ multi_json (1.11.2)
64
+ polyglot (0.3.5)
65
+ rack (1.4.7)
66
+ rack-cache (1.5.1)
67
+ rack (>= 0.4)
68
+ rack-ssl (1.3.4)
69
+ rack
70
+ rack-test (0.6.3)
71
+ rack (>= 1.0)
72
+ rails (3.2.22)
73
+ actionmailer (= 3.2.22)
74
+ actionpack (= 3.2.22)
75
+ activerecord (= 3.2.22)
76
+ activeresource (= 3.2.22)
77
+ activesupport (= 3.2.22)
78
+ bundler (~> 1.0)
79
+ railties (= 3.2.22)
80
+ railties (3.2.22)
81
+ actionpack (= 3.2.22)
82
+ activesupport (= 3.2.22)
83
+ rack-ssl (~> 1.3.2)
84
+ rake (>= 0.8.7)
85
+ rdoc (~> 3.4)
86
+ thor (>= 0.14.6, < 2.0)
87
+ rake (10.4.2)
88
+ rdoc (3.12.2)
89
+ json (~> 1.4)
90
+ sprockets (2.2.3)
91
+ hike (~> 1.2)
92
+ multi_json (~> 1.0)
93
+ rack (~> 1.0)
94
+ tilt (~> 1.1, != 1.3.0)
95
+ sqlite3 (1.3.11)
96
+ thor (0.19.1)
97
+ tilt (1.4.1)
98
+ treetop (1.4.15)
99
+ polyglot
100
+ polyglot (>= 0.3.1)
101
+ tzinfo (0.3.45)
102
+
103
+ PLATFORMS
104
+ ruby
105
+
106
+ DEPENDENCIES
107
+ factory_girl
108
+ mailboxer
109
+ mailboxer_multi_attach!
110
+ sqlite3
111
+
112
+ BUNDLED WITH
113
+ 1.10.6