Sha256: 01902426cbd8833fe6049818ac8bf979e5f719446216a4b6d72997489c9915e5
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'binrip/version' Gem::Specification.new do |spec| unless spec.respond_to?(:metadata) # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', # or delete this section to allow pushing this gem to any host. raise <<-ERR RubyGems 2.0 or newer is required to protect against public gem pushes. ERR end spec.name = 'binrip' spec.version = Binrip::VERSION spec.authors = ['David Siaw'] spec.email = ['davidsiaw@gmail.com'] spec.summary = 'Binary file format language' spec.description = 'Ripper of binary files' spec.homepage = 'https://github.com/davidsiaw/binrip' spec.license = 'MIT' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/davidsiaw/binrip' spec.metadata['changelog_uri'] = 'https://github.com/davidsiaw/binrip' spec.files = Dir['{data,exe,lib,bin}/**/*'] + %w[Gemfile binrip.gemspec] spec.test_files = Dir['{spec,features}/**/*'] spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'activesupport' spec.add_dependency 'optimist' spec.add_dependency 'sinatra', '~> 2.0.3' spec.add_development_dependency 'bundler', '~> 1.9' spec.add_development_dependency 'rspec' spec.metadata['allowed_push_host'] = 'https://rubygems.org' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
binrip-0.1.0 | binrip.gemspec |