Sha256: 7761717dc411d972d27ddb23dea24058b80fc8748aa70dbf3ee50e2da771f615
Contents?: true
Size: 1.32 KB
Versions: 4
Compression:
Stored size: 1.32 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'twirp_rails/version' Gem::Specification.new do |spec| spec.name = 'twirp_rails' spec.version = TwirpRails::VERSION spec.authors = ['Alexandr Zimin'] spec.email = ['a.zimin@talenttech.ru'] spec.summary = %q{Use twirp-ruby from rails.} spec.homepage = 'https://github.com/severgroup-tt/twirp_rails' spec.license = 'MIT' # 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'] spec.add_dependency 'twirp', '~> 1' spec.add_dependency 'railties', '~> 6.0' spec.add_development_dependency 'bundler', '~> 1.17' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rspec-rails', '~> 3.0' spec.add_development_dependency 'generator_spec', '~> 0.9' spec.add_development_dependency 'pry', '~> 0.12' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
twirp_rails-0.1.3 | twirp_rails.gemspec |
twirp_rails-0.1.2 | twirp_rails.gemspec |
twirp_rails-0.1.1 | twirp_rails.gemspec |
twirp_rails-0.1.0 | twirp_rails.gemspec |