-
Notifications
You must be signed in to change notification settings - Fork 8
/
bootstrapped.gemspec
32 lines (28 loc) · 1.34 KB
/
bootstrapped.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 "bootstrapped/version"
Gem::Specification.new do |s|
s.name = "bootstrapped"
s.version = Bootstrapped::VERSION
s.authors = ["Nicholas Watson"]
s.email = ["nwwatson@gmail.com"]
s.homepage = "http://github.com/entropillc/bootstrapped"
s.summary = %q{Twitters Bootstrap CSS in a gem}
s.description = %q{Twitters Bootstrap CSS and JS files all in one nice little gem}
s.rubyforge_project = "bootstrapped"
s.files = Dir["lib/**/*"] + Dir["vendor/**/*"] + ["Rakefile", "README.rdoc"]
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency 'railties', '>= 3.1'
s.add_dependency 'actionpack', '>= 3.1'
s.add_dependency 'less-rails', '>= 2.1.6' unless RUBY_PLATFORM == 'java'
s.add_development_dependency 'rails', '>= 3.1'
s.add_development_dependency 'rspec-rails', '>= 2.6.1'
s.add_development_dependency 'mocha', '>= 0.9.12'
s.add_development_dependency 'cucumber', '>= 1.0.6'
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rails", ">= 3.1"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
end