forked from CodiTramuntana/ct_table_for
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathct_table_for.gemspec
24 lines (20 loc) · 1011 Bytes
/
ct_table_for.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "ct_table_for/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "ct_table_for"
s.version = CtTableFor::VERSION
s.authors = ["Agustí B.R.", "Isaac Massot", "Marc Reniu"]
s.homepage = "https://github.com/CodiTramuntana/ct_table_for"
s.summary = "Rails table builder that makes it easy to do responsive tables ActiveRecord"
s.description = "table_for is a rails table builder given an ActiveRecord"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 5.0"
s.add_dependency "bootstrap-sass", "~> 3.3"
s.add_dependency "font-awesome-sass", "~> 4.7"
s.add_dependency "include_media_rails", "~> 1.4"
end