features/gem_package.feature in pdd-0.15.2 vs features/gem_package.feature in pdd-0.15.3
- old
+ new
@@ -1,19 +1,19 @@
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')
fail 'no executables' if spec.executables.empty?
"""
When I run bash with
"""
- set -e
cd pdd
gem build pdd.gemspec
gem specification --ruby pdd-*.gem > ../spec.rb
cd ..
ruby execs.rb