rspec_term 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0573c8c37f186f9f5d2170eea9bb2c20344d1e6c
4
- data.tar.gz: 038157f3af222d73df45a3490b3786244a25b825
3
+ metadata.gz: 4dc2ac7317a4fc8b7affcc9fd9c555e7c09ddbd8
4
+ data.tar.gz: 83ab76c119e2caf44500d40d75d6dde16ca6a5dd
5
5
  SHA512:
6
- metadata.gz: 577cf4a000a0f3a70bdc52a239989b15e734b75d2fbda2d1171ecf848ec619fdcbca17f1c215d6535df1f8bbb030b47c1fb1eea2ec415b175c2a7119159cc2e8
7
- data.tar.gz: 142c16b281de75a2ca09c9735a839d26ceda80d5be706fc433580d8f16da64ae7532efe348abcca812cb99d54451eab7b17a6c3f62ea30407c3e4fe26c6bc01f
6
+ metadata.gz: db8232915e4aa31818523707e3bcc3062c1e08ac8b0ab8772b208f3c11e2ef3abce4ba6b113c47ec9be1eb73e6e1ccfcd1cc21f5ba1f49f36242c3a5575d5d30
7
+ data.tar.gz: 2834ed89265e28c6dd9b25ee5c3b160ee4b1a3bdd9fd5fa85f100d98f56d23a079f9412476b7ecd022e2408b0b9e66752654b563477d797c0a7a37eb6d0eec10
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # RspecTerm
2
2
  ###### ver 0.1.0
3
3
 
4
- RSpecを実行中、結果によってiTermの背景画像を変更する ruby gem です。
4
+ RSpecの実行中や、テスト結果によってiTermの背景画像を変更する ruby gem です。
5
5
  RSpec2, RSpec3に対応しています。
6
6
 
7
7
  ## Installation
@@ -23,9 +23,9 @@ Or install it yourself as:
23
23
  spec/spec_helper.rb ファイルに以下を記述します
24
24
 
25
25
 
26
- require 'rspec_term'
26
+ require 'rspec_term'
27
27
 
28
- RSpecTerm.configure do |config|↲
28
+ RSpecTerm.configure do |config|
29
29
 
30
30
  #dir = File.expand_path(File.join('../', 'images'), File.dirname(__FILE__))
31
31
  #config.success_file = "#{dir}/success.jpg"
@@ -1,3 +1,3 @@
1
1
  module RspecTerm
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/rspec_term.gemspec CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = ""
14
14
  spec.license = "MIT"
15
15
 
16
- spec.files = `git ls-files -z`.split("\x0")
16
+ spec.files = `git ls-files -z`.split("\x0").reject{ |f| f.start_with?('images') }
17
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_term
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - brightgenerous
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-17 00:00:00.000000000 Z
11
+ date: 2014-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -50,10 +50,6 @@ files:
50
50
  - LICENSE.txt
51
51
  - README.md
52
52
  - Rakefile
53
- - images/failure.jpg
54
- - images/nothing.jpg
55
- - images/running.jpg
56
- - images/success.jpg
57
53
  - lib/rspec_term.rb
58
54
  - lib/rspec_term/configure.rb
59
55
  - lib/rspec_term/formatters.rb
data/images/failure.jpg DELETED
Binary file
data/images/nothing.jpg DELETED
Binary file
data/images/running.jpg DELETED
Binary file
data/images/success.jpg DELETED
Binary file