forked from seyhunak/twitter-bootstrap-rails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
twitter-bootstrap-rails.gemspec
25 lines (22 loc) · 1.16 KB
/
twitter-bootstrap-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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "twitter/bootstrap/rails/version"
Gem::Specification.new do |s|
s.name = "twitter-bootstrap-rails"
s.version = Twitter::Bootstrap::Rails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Seyhun Akyurek"]
s.email = ["seyhunak@gmail.com"]
s.homepage = "https://github.com/advanced/twitter-bootstrap-rails"
s.summary = %q{Bootstrap CSS toolkit for Rails 3.1 Asset Pipeline}
s.description = %q{twitter-bootstrap-rails project integrates Bootstrap CSS toolkit for Rails 3.1 Asset Pipeline}
s.rubyforge_project = "twitter-bootstrap-rails"
s.files = Dir["lib/**/*"] + Dir["vendor/**/*"] + Dir["app/**/*"] + ["Rakefile", "README.md"]
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'railties', '>= 3.1'
s.add_dependency 'actionpack', '>= 3.1'
s.add_runtime_dependency 'less-rails', '~> 2.2.0'
s.add_development_dependency 'rails', '>= 3.1'
end