Sha256: d8aaeea68ce48c5fa77e7de712fc3def98ad3b34bc1805489b4658b8ad21b30f
Contents?: true
Size: 605 Bytes
Versions: 19
Compression:
Stored size: 605 Bytes
Contents
Feature: Gem Package As a source code writer I want to be able to package the Gem into .gem file Scenario: Gem can be packaged Given It is Unix Given I have a "execs.rb" file with content: """ #!/usr/bin/env ruby require 'rubygems' spec = Gem::Specification::load('./spec.rb') if spec.executables.empty? fail 'no executables: ' + File.read('./spec.rb') end """ When I run bash with: """ cd rumble gem build rumble.gemspec gem specification --ruby rumble-*.gem > ../spec.rb cd .. ruby execs.rb """ Then Exit code is zero
Version data entries
19 entries across 19 versions & 1 rubygems