-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmessaging.gemspec
33 lines (26 loc) · 1.05 KB
/
messaging.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
#- This Source Code Form is subject to the terms of the Mozilla Public
#- License, v. 2.0. If a copy of the MPL was not distributed with this
#- file, You can obtain one at http://mozilla.org/MPL/2.0/.
$:.push File.expand_path("../lib", __FILE__)
require "messaging/version"
Gem::Specification.new do |s|
s.name = "mambo-messaging"
s.version = Messaging::VERSION
s.authors = ["Chris Dion"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Mambo Messaging}
s.description = %q{Mambo Messaging}
s.rubyforge_project = "mambo-messaging"
s.files = Dir["{app,config,lib}/**/*"] + ["Rakefile"]
# specify any dependencies here; for example:
s.add_runtime_dependency "rails"
s.add_runtime_dependency "mambo-sms"
s.add_runtime_dependency "mambo-support"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "factory_girl"
s.add_development_dependency "combustion"
s.add_development_dependency "mmcopyrights"
s.add_development_dependency "magic_encoding"
end