forked from idl3/twitter-bootstrap-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter-bootstrap-rails.gemspec
32 lines (27 loc) · 1.37 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
26
27
28
29
30
31
32
# -*- 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/seyhunak/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'
if (RUBY_PLATFORM == 'java')
s.add_dependency 'therubyrhino', '~> 1.73.4'
elsif (RUBY_PLATFORM != 'i386-mingw32')
s.add_dependency 'therubyracer', '>= 0.11.0beta5'
end
s.add_runtime_dependency 'less-rails', '~> 2.2.3'
s.add_development_dependency 'rails', '>= 3.1'
end