Sha256: 4a441cc53caaf8f5d0e6e7490e174574fd703c3b25ec2357778d71d4ce1414c4

Contents?: true

Size: 1.37 KB

Versions: 10

Compression:

Stored size: 1.37 KB

Contents

# coding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'smart_table/version'

Gem::Specification.new do |spec|
  spec.name          = "smart_table"
  spec.version       = SmartTable::VERSION
  spec.authors       = ["Henrique Gubert"]
  spec.email         = ["guberthenrique@hotmail.com"]

  spec.summary       = %q{Implements tables with pagination and search for Rails,
    with server-side content loading.}
  spec.description   = %q{}
  spec.homepage      = "https://github.com/hsgubert/smart_table"
  spec.license       = "MIT"

  spec.files         = Dir[File.dirname(__FILE__) + '/**/*'].reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # this gem should be used in a rails app
  spec.add_runtime_dependency 'rails', '<5.3.0', '>4.2.0'
  spec.add_runtime_dependency 'kaminari', '<2', '>0.16'
  spec.add_runtime_dependency 'font-awesome-rails', '<5', '>4.0.0'

  spec.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 12.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency 'rspec-rails', '~> 3.7'
  spec.add_development_dependency 'sqlite3', '~> 1'
  spec.add_development_dependency "byebug", '~> 9'
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
smart_table-0.0.12 ./smart_table.gemspec
smart_table-0.0.11 ./smart_table.gemspec
smart_table-0.0.10 ./smart_table.gemspec
smart_table-0.0.9 ./smart_table.gemspec
smart_table-0.0.8 ./smart_table.gemspec
smart_table-0.0.7 ./smart_table.gemspec
smart_table-0.0.6 ./smart_table.gemspec
smart_table-0.0.5 ./smart_table.gemspec
smart_table-0.0.4 ./smart_table.gemspec
smart_table-0.0.3 ./smart_table.gemspec