Skip to content
This repository was archived by the owner on Feb 7, 2018. It is now read-only.

Commit ae0e03d

Browse files
author
Jon Yurek
committed
News updates
1 parent d5df778 commit ae0e03d

File tree

2 files changed

+24
-14
lines changed

2 files changed

+24
-14
lines changed

NEWS.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
New for 0.6.0:
2+
3+
* Rename the project to Terrapin
4+
5+
New for 0.5.8:
6+
7+
* Improvement: Ensure that argument interpolations can be turned into Strings
8+
* Feature: Save STDOUT and STDERR for inspection when the command completes
9+
* Bug fix: Properly interpolate at the end of the line
10+
111
New for 0.5.7:
212

313
* Feature: Allow collection of both STDOUT and STDERR.

cocaine.gemspec

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
1+
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
22
require 'cocaine/version'
33

44
Gem::Specification.new do |s|
5-
s.name = "cocaine"
5+
s.name = 'cocaine'
66
s.version = Cocaine::VERSION.dup
77
s.platform = Gem::Platform::RUBY
8-
s.author = "Jon Yurek"
9-
s.email = "[email protected]"
10-
s.homepage = "https://github.com/thoughtbot/cocaine"
11-
s.summary = "A small library for doing (command) lines"
12-
s.description = "A small library for doing (command) lines"
13-
s.license = "MIT"
8+
s.author = 'Jon Yurek'
9+
s.email = '[email protected]'
10+
s.homepage = 'https://github.com/thoughtbot/cocaine'
11+
s.summary = 'A small library for doing (command) lines'
12+
s.description = 'A small library for doing (command) lines'
13+
s.license = 'MIT'
1414

15-
s.files = `git ls-files`.split("\n")
16-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18-
s.require_paths = ["lib"]
15+
s.files = `git ls-files`.split('\n')
16+
s.test_files = `git ls-files -- {test,spec,features}/*`.split('\n')
17+
s.executables = `git ls-files -- bin/*`.split('\n').map{ |f| File.basename(f) }
18+
s.require_paths = ['lib']
1919

20-
s.add_dependency("terrapin", "= 0.6.0.alpha")
20+
s.add_dependency('terrapin', '= 0.6.0.alpha')
2121
s.add_development_dependency('rspec')
2222
s.add_development_dependency('bourne')
2323
s.add_development_dependency('mocha')
2424
s.add_development_dependency('rake')
25-
s.add_development_dependency('activesupport', ">= 3.0.0", "< 5.0")
25+
s.add_development_dependency('activesupport', '>= 3.0.0', '< 5.0')
2626
s.add_development_dependency('pry')
2727
end
2828

0 commit comments

Comments
 (0)