slack-rtmapi.gemspec in slack-rtmapi-1.0.0.rc3 vs slack-rtmapi.gemspec in slack-rtmapi-1.0.0.rc4

- old
+ new

@@ -1,34 +1,37 @@ +# coding: utf-8 -require_relative "lib/slack-rtmapi/version" +require_relative 'lib/slack-rtmapi/version' Gem::Specification.new do |s| s.name = 'slack-rtmapi' s.version = SlackRTM::VERSION - s.authors = ["mackwic"] - s.email = ["mackwic@gmail.com"] - s.summary = "Naive wrapper for the Slack RTM api" + s.authors = ['mackwic'] + s.email = ['mackwic@gmail.com'] + s.summary = 'Naive wrapper for the Slack RTM api' s.description = "slack-rtmapi is dumb: no EventMachine, no Celluloid, no Actor design pattern, no thread pool (thought, any of those would be trivial to add). It's a simple blocking loop on top of a SSL socket with a websocket decoder. Minimal dependency. Works out of the box. Hackable. Composable. - + Oh, by the way, it implements very well the Slack API." - s.homepage = "https://github.com/mackwic/slack-rtmapi" - s.license = "GPLv3" + s.homepage = 'https://github.com/mackwic/slack-rtmapi' + s.license = 'GPLv3' s.files = `git ls-files -z`.split("\x0") - 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.executables = s.files.grep(/^bin\//) { |f| File.basename(f) } + s.test_files = s.files.grep(/^(test|spec|features)\//) + s.require_paths = ['lib'] + dev_dep = %w( + bundler + rake colored ) run_dep = %w( websocket-driver ) - dev_dep.each {|d| s.add_development_dependency d} - run_dep.each {|d| s.add_runtime_dependency d} + dev_dep.each { |d| s.add_development_dependency d } + run_dep.each { |d| s.add_runtime_dependency d } end