Sha256: cdf9c32d863321f03989c55d03d11ea033b839866fe1d69206ddc3e88ffbccf5
Contents?: true
Size: 1.52 KB
Versions: 2
Compression:
Stored size: 1.52 KB
Contents
# frozen_string_literal: true require_relative 'lib/smartness_detector/version' Gem::Specification.new do |spec| spec.name = 'smartness_detector' spec.version = SmartnessDetector::VERSION spec.authors = ['sumar7'] spec.email = ['sajjadumardev@gmail.com'] spec.summary = 'This is a super cool gem to detect smartness of people.' spec.description = 'A super cool gem (test gem for education purpose).' spec.homepage = 'https://github.com/SUMAR7/smartness_detectore' spec.license = 'MIT' spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0') spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/SUMAR7/smartness_detectore' # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |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'] # development dependencies spec.add_development_dependency 'aruba', '~> 1.0', '>= 1.0.3' spec.add_development_dependency 'cucumber', '~> 5.2' spec.add_development_dependency 'rspec', '~> 3.10' # external dependencies spec.add_dependency 'activesupport', '~> 6.0', '>= 6.0.3.4' # Thor is a toolkit for building powerful command-line interfaces. spec.add_dependency 'thor', '~> 1.0', '>= 1.0.1' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
smartness_detector-1.0.0 | smartness_detector.gemspec |
smartness_detector-0.1.2 | smartness_detector.gemspec |