-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap-file-input.gemspec
More file actions
26 lines (21 loc) · 1 KB
/
bootstrap-file-input.gemspec
File metadata and controls
26 lines (21 loc) · 1 KB
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "bootstrap-file-input/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "bootstrap-file-input"
s.version = BootstrapFileInput::VERSION
s.date = "2013-06-13"
s.authors = ["Sandyy"]
s.email = ["sandstudio@gmail.com"]
s.homepage = "http://gregpike.net/demos/bootstrap-file-input/demo.html"
s.summary = "File input field looks like a Bootstrap button in all browsers."
s.description = "File input field looks like a Bootstrap button in all browsers (Thanks to https://github.com/grevory/bootstrap-file-input)"
s.files = Dir["{app,config,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 3.2.13"
s.add_dependency "jquery-rails"
s.add_development_dependency "sass-rails"
s.add_development_dependency "bootstrap-sass"
s.add_development_dependency "sqlite3"
end