Sha256: 883347f96c3e4c68ede03e9831d660a83a84b91dc06759071431fe9675ed5703
Contents?: true
Size: 1.75 KB
Versions: 3
Compression:
Stored size: 1.75 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'natra/version' Gem::Specification.new do |spec| spec.name = 'natra' spec.version = Natra::VERSION spec.authors = ['Thiru Njuguna'] spec.email = ['uriht@outlook.com'] spec.summary = 'Natra generate a light weight sinatra application' spec.description = 'Natra generate a light weight sinatra application.It is ideal for builing micro-services' spec.homepage = 'https://github.com/thirunjuguna/natra' 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['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/thirunjuguna/natra' spec.metadata['changelog_uri'] = 'https://github.com/thirunjuguna/natra' else raise 'RubyGems 2.0 or newer is required to protect against ' \ 'public gem pushes.' end # 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(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.executables = ['natra'] spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.16' spec.add_development_dependency 'rake', '~> 0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_runtime_dependency('activesupport', '~> 5.0') spec.add_runtime_dependency('thor', '~> 0.18') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
natra-0.0.3 | natra.gemspec |
natra-0.0.2 | natra.gemspec |
natra-0.0.1 | natra.gemspec |