-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbetter_styles.gemspec
27 lines (22 loc) · 1.14 KB
/
better_styles.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "better_styles/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "better_styles"
s.version = BetterStyles::VERSION
s.authors = ["Torsten Wetzel", "Marco Sebald"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://berlinmagic.github.io/better_styles/"
s.summary = "BetterStyles is our new css pack depending on BootStrap 4."
s.description = "Lots of styles and helpers we used for several projects."
s.license = "MIT"
# s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.files = Dir["{app,assets,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
# s.add_dependency "rails", "~> 5.0.2"
s.add_dependency "rails", ">= 4.1", "< 6.0"
# s.add_dependency 'bootstrap', '>= 4.0.0.alpha6'
# s.add_dependency 'bootstrap-sass', '>= 3.3.5.1', '< 3.4'
# s.add_dependency 'rails-assets-tether', '>= 1.3.3'
s.add_dependency 'jquery-rails', '>= 3.1.0'
end