forked from matej-outly/rug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrug.gemspec
26 lines (21 loc) · 948 Bytes
/
rug.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
version = File.read(File.expand_path('../RUG_VERSION', __FILE__)).strip
Gem::Specification.new do |spec|
spec.name = "rug"
spec.version = version
spec.authors = ["Matej Outly (Clockstar s.r.o.)"]
spec.email = ["matej@clockstar.cz"]
spec.summary = %q{Rails framewirk extension}
spec.description = %q{This gem is only configurable wrapper for other gems which Rug framework consists of.}
spec.homepage = "http://www.clockstar.cz"
spec.license = "MIT"
spec.files = Dir["README.md", "LICENSE.txt", "lib/**/*", "bin/**/*"]
spec.executables = []
spec.require_paths = ["lib"]
spec.add_dependency "rails", "~> 4.2"
spec.add_dependency "rug_support", version
spec.add_dependency "rug_record", version
#spec.add_dependency "rug_builder", version
end