Sha256: 34ce8cdfc6c4e91b95fb1552e6219ee1bdae3aea4bd1c4c2b433f9cd133df44c
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
Gem::Specification.new do |s| s.name = "mailboxer" s.version = "0.5.4" s.authors = ["Eduardo Casanova Cuesta"] s.summary = "Messaging system for rails apps." s.description = "A Rails engine that allows any model to act as messageable, allowing it to exchange messages " + "with any other messageable model, even different ones. It supports the use of conversations with " + "two or more recipients to organize the messages. You have a complete use of a mailbox object for " + "each messageable model that manages an inbox, sentbox and trash for conversations. It also supports " + "sending notifications to messageable models, intended to be used as system notifications." s.email = "ecasanovac@gmail.com" s.homepage = "https://github.com/ging/mailboxer" s.files = `git ls-files`.split("\n") # Gem dependencies # # SQL foreign keys s.add_runtime_dependency('foreigner', '>= 0.9.1') # Development Gem dependencies # s.add_runtime_dependency('rails', '>= 3.1.0') # Testing database s.add_development_dependency('sqlite3-ruby') # Debugging if RUBY_VERSION < '1.9' s.add_development_dependency('ruby-debug', '>= 0.10.3') end # Specs s.add_development_dependency('rspec-rails', '>= 2.6.1') # Fixtures s.add_development_dependency('factory_girl', '>= 1.3.2') # Population s.add_development_dependency('forgery', '>= 0.3.6') # Integration testing s.add_development_dependency('capybara', '>= 0.3.9') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mailboxer-0.5.4 | mailboxer.gemspec |