Sha256: 462daddd38318a189863e1594638402232526c73b0b601ee92b7dbb6edff1b6f
Contents?: true
Size: 963 Bytes
Versions: 3
Compression:
Stored size: 963 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "talks/version" Gem::Specification.new do |s| s.name = "talks" s.version = Talks::VERSION s.platform = Gem::Platform::RUBY s.authors = ['gazay'] s.email = ['alex.gaziev@gmail.com'] s.homepage = "https://github.com/ruby-talks/talks" s.summary = %q{Gem for talking ruby code and command-line tools} s.description = %q{This gem can be used for wraping command-lines with `talks` command or for adding hooks in ruby code which would tell you something} s.rubyforge_project = "talks" s.add_dependency("notifier") s.add_development_dependency("rspec") s.add_development_dependency("simplecov") s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
talks-0.4.0 | talks.gemspec |
talks-0.3.1 | talks.gemspec |
talks-0.3.0 | talks.gemspec |