Sha256: e71a1563f09d4727510c5f41f3c10b19ec0bb375481799c9996293ebeb170087
Contents?: true
Size: 1.75 KB
Versions: 3
Compression:
Stored size: 1.75 KB
Contents
# coding: utf-8 # frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ragent/version' Gem::Specification.new do |spec| spec.name = 'ragent' spec.version = Ragent::VERSION spec.authors = ['Peter Schrammel'] spec.email = ['peter.schrammel@gmx.de'] spec.summary = 'An agent framework' spec.description = 'Writing of agents for monitoring, chatting, ... should be easy. Ragent eases this with a small extraction layer over celluloid.' spec.homepage = 'https://github.com/pschrammel/ragent' spec.license = 'MIT' # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' else raise 'RubyGems 2.0 or newer is required to protect against ' \ 'public gem pushes.' end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'celluloid', '~>0.17.0' spec.add_dependency 'thor', '~>0.19' # spec.add_dependency 'activesupport' # spec.add_dependency 'eventmachine' # spec.add_dependency 'faye-websocket' spec.add_dependency 'logging', '~>2.1' # spec.add_dependency 'celluloid-io' #needed for a plugin, should be removed spec.add_development_dependency 'bundler', '~> 1.13' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ragent-0.0.6 | ragent.gemspec |
ragent-0.0.5 | ragent.gemspec |
ragent-0.0.4 | ragent.gemspec |