forked from informatom/hobo_bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hobo_bootstrap.gemspec
31 lines (24 loc) · 991 Bytes
/
hobo_bootstrap.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
name = File.basename( __FILE__, '.gemspec' )
version = File.read(File.expand_path('../VERSION', __FILE__)).strip
require 'date'
Gem::Specification.new do |s|
s.authors = ['Ignacio Huerta']
s.email = 'ignacio@ihuerta.net'
s.homepage = 'https://github.com/Hobo/hobo_bootstrap'
s.rubyforge_project = 'hobo'
s.summary = 'A bootstrap based theme for Hobo'
s.description = 'A bootstrap based theme for Hobo'
s.add_runtime_dependency 'hobo_jquery', ">= 2.0"
s.add_runtime_dependency "bootstrap-sass", "~> 3.3.4"
# https://github.com/twbs/bootstrap-sass
s.add_runtime_dependency 'sass-rails', '>= 3.2'
s.add_runtime_dependency 'sprockets-rails', '>= 2.1.4'
s.add_runtime_dependency "hobo_will_paginate-bootstrap"
s.files = `git ls-files -x #{name}/* -z`.split("\0")
s.name = name
s.version = version
s.date = Date.today.to_s
s.required_rubygems_version = ">= 1.3.6"
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib", "vendor", "taglibs"]
end