forked from pusewicz/twitter-bootstrap-markup-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter-bootstrap-markup-rails.gemspec
33 lines (28 loc) · 1.5 KB
/
twitter-bootstrap-markup-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 -*-
require File.expand_path('../lib/twitter-bootstrap-markup-rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Piotr Usewicz"]
gem.email = ["[email protected]"]
gem.description = %q{Ruby on Rails helpers for Bootstrap 2.0 - HTML, CSS, and JS toolkit from Twitter}
gem.summary = %q{Ruby on Rails helpers for Bootstrap 2.0 - HTML, CSS, and JS toolkit from Twitter}
gem.homepage = "http://pusewicz.github.com/twitter-bootstrap-markup-rails"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "twitter-bootstrap-markup-rails"
gem.require_paths = ["lib"]
gem.version = Twitter::Bootstrap::Markup::Rails::VERSION
gem.platform = Gem::Platform::RUBY
gem.add_dependency "railties", ">= 3.0"
gem.add_development_dependency "rails", "~> 3.0"
gem.add_development_dependency "rspec-rails", "~> 2.10"
gem.add_development_dependency "rspec_tag_matchers", ">= 1.0"
gem.add_development_dependency "rake"
gem.add_development_dependency 'yard'
gem.add_development_dependency 'redcarpet'
gem.add_development_dependency 'yard-tomdoc'
gem.add_development_dependency 'simple-navigation'
if !defined?(RUBY_ENGINE) || RUBY_ENGINE != 'rbx'
gem.add_development_dependency RUBY_VERSION =~ /^1\.9/ ? "simplecov" : "rcov"
end
end