-
Notifications
You must be signed in to change notification settings - Fork 0
/
mcp_common.gemspec
59 lines (45 loc) · 2.15 KB
/
mcp_common.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
$:.push File.expand_path("../lib", __FILE__)
# See: http://stackoverflow.com/questions/5159607/rails-engine-gems-dependencies-how-to-load-them-into-the-application
# Gem vs gemspec:
# See: http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
#
# The gemspec here specifies gems that other engines and the app depends on
# The application's Gemfile.lock will specify the exact version of gems required in the app
# Specify gem version details:
# See: http://docs.rubygems.org/read/chapter/16
# Also see: http://stackoverflow.com/questions/5170547/what-does-tilde-greater-than-mean-in-ruby-gem-dependencies
# Also see: http://gembundler.com/man/gemfile.5.html
# Maintain your gem's version:
require "mcp_common/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "mcp_common"
s.version = McpCommon::VERSION
s.authors = ["Robert Roach"]
s.email = ["[email protected]"]
s.homepage = "http://rjayroach.github.io"
s.summary = "Provides functionality required by other 'Mcp' gems"
s.description = "Common bootstrap layout and helpers, location model with geolocation"
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE", "Rakefile", "README.md"]
s.add_dependency "bootstrap-sass", "= 2.3.2.2"
s.add_dependency "chosen-rails" #, "~> 0.2.0"
s.add_dependency "draper"
s.add_dependency "geocoder" #, "~> 0.2.0"
s.add_dependency "exception_notification", "= 3.0.1"
s.add_dependency "jquery-datatables-rails", "~> 1.11.2"
s.add_dependency "money-rails", ">= 0.8.0"
s.add_dependency "will_paginate", ">= 3.0.3"
s.add_dependency "rabl", "~> 0.8.0"
s.add_dependency "rails", "~> 3.2.14"
s.add_dependency "ransack", "~> 0.7.2"
s.add_dependency "simple_form", "~> 2.1.0"
s.add_dependency "strong_parameters", "~> 0.2.0"
s.add_dependency "sucker_punch", "~> 1.0.0"
s.add_dependency "whenever" #, "~> 0.2.0"
# s.add_dependency "jquery-rails"
s.add_development_dependency "sqlite3"
s.add_development_dependency "commands"
s.add_development_dependency "vcr"
s.add_development_dependency "webmock"
s.add_development_dependency "geminabox-rake"
end