Sha256: 2b1f62410871d802c562908c5e8c3e5fbfc3f6e9fee6c916f8559bf175da1b32
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'codesake/commons/version' Gem::Specification.new do |gem| gem.name = "codesake_commons" gem.version = Codesake::Commons::VERSION gem.authors = ["Paolo Perego"] gem.email = ["thesp0nge@gmail.com"] gem.description = %q{codesake.com is an application security startup providing code review and penetration test services for Ruby powered web applications. codesake_commons is the gem containing common ground routines useful across the project} gem.summary = %q{codesake_commons is the gem containing common ground routines useful across the codesake.com project} gem.homepage = "http://codesake.com" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency 'rainbow' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
codesake_commons-0.70.0 | codesake_commons.gemspec |
codesake_commons-0.67.0 | codesake_commons.gemspec |
codesake_commons-0.60.0 | codesake_commons.gemspec |