-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodulate.gemspec
30 lines (25 loc) · 1.15 KB
/
modulate.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "modulate/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "modulate"
s.version = Modulate::VERSION
s.authors = ["Zach Colon, Adam Hunter"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = "Easily add the ability to upload documents to any ActiveRecord model"
s.description = "Easily add the ability to upload documents to any ActiveRecord model"
s.files = Dir["{app,config,db,lib}/**/*"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "carrierwave-riak", "~> 0.1.2"
s.add_dependency "rails", "~> 3.2.13"
s.add_dependency "riak-client"
# s.add_dependency "jquery-rails"
s.add_development_dependency "mysql2"
s.add_development_dependency "rspec-rails", "~> 2.13.0"
s.add_development_dependency "capybara", "~> 2.0.2"
s.add_development_dependency "factory_girl_rails", "~> 4.2.1"
s.add_development_dependency "launchy", "~> 2.2.0"
s.add_development_dependency "pry", "~> 0.9.12"
end