-
Notifications
You must be signed in to change notification settings - Fork 6
/
hierapolis-rails.gemspec
34 lines (31 loc) · 1.63 KB
/
hierapolis-rails.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hierapolis/rails/version'
Gem::Specification.new do |spec|
spec.name = 'hierapolis-rails'
spec.version = Hierapolis::Rails::VERSION
spec.authors = ['lab2023']
spec.email = ['[email protected]']
spec.description = %q{This gem using to integrate hierapolis theme on rails project.}
spec.summary = %q{this gem using to integrate hierapolis theme on rails project.}
spec.homepage = 'https://github.com/lab2023/hierapolis-rails'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake', '~> 10.3', '>= 10.3.1'
spec.add_runtime_dependency 'show_for', '~> 0.3', '>= 0.3.0'
spec.add_runtime_dependency 'will_paginate', '~> 3.0', '>= 3.0.3'
spec.add_runtime_dependency 'will_paginate-bootstrap', '~> 0.2', '>= 0.2.3'
spec.add_runtime_dependency 'ransack', '~> 1.2', '>= 1.2.3'
spec.add_runtime_dependency 'breadcrumbs_on_rails', '~> 2.3', '>= 2.3.0'
spec.add_runtime_dependency 'blankable', '~> 0.2', '>= 0.2.0'
spec.add_runtime_dependency 'responder', '~> 0.2', '>= 0.2.4'
spec.add_runtime_dependency 'haml', '~> 4.0'
spec.add_runtime_dependency 'haml-rails', '0.9'
spec.add_runtime_dependency 'compass-rails', '~> 2.0'
spec.add_runtime_dependency 'bootstrap-sass', '~> 3.3'
end