Sha256: 118bc1ce0eebc25fca875111a0bd0d0ece0c3c201a9bfa316976ffff25b53731

Contents?: true

Size: 932 Bytes

Versions: 5

Compression:

Stored size: 932 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wiser_chat/version'

Gem::Specification.new do |s|
  s.name          = "wiser_chat"
  s.version       = WiserChat::VERSION
  s.authors       = ["Kenneth John Balgos"]
  s.email         = ["kennethjohnbalgos@gmail.com"]
  s.description   = "Enable real-time chat easily in your Ruby on Rails application."
  s.summary       = "Awesome chat on fire!"
  s.homepage      = "https://github.com/kennethjohnbalgos/wiser_chat"
  s.license       = "MIT"

  s.files         = `git ls-files`.split($/)
  s.executables   = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
  s.test_files    = s.files.grep(%r{^(test|s|features)/})
  s.require_paths = ["lib"]

  s.add_dependency "redis", "3.2.0"
  s.add_dependency "websocket-rails", "0.7.0"

  s.post_install_message = "Welcome to WiserChat v#{WiserChat::VERSION}!"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wiser_chat-0.1.4 wiser_chat.gemspec
wiser_chat-0.1.3 wiser_chat.gemspec
wiser_chat-0.1.2 wiser_chat.gemspec
wiser_chat-0.1.1 wiser_chat.gemspec
wiser_chat-0.1.0 wiser_chat.gemspec