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 +4 -4
- data/README.md +3 -3
- data/lib/rspec_term/version.rb +1 -1
- data/rspec_term.gemspec +1 -1
- metadata +2 -6
- data/images/failure.jpg +0 -0
- data/images/nothing.jpg +0 -0
- data/images/running.jpg +0 -0
- data/images/success.jpg +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4dc2ac7317a4fc8b7affcc9fd9c555e7c09ddbd8
|
|
4
|
+
data.tar.gz: 83ab76c119e2caf44500d40d75d6dde16ca6a5dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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"
|
data/lib/rspec_term/version.rb
CHANGED
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.
|
|
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-
|
|
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
|