trecs 0.0.1.alpha2 → 0.0.2.alpha2
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/.gitignore +0 -1
- data/Gemfile.lock +11 -11
- data/lib/trecs/version.rb +1 -1
- data/pkg/trecs-0.0.1.alpha2.gem +0 -0
- data/pkg/trecs-0.0.2.alpha.gem +0 -0
- data/spec/trecs_message_spec.rb +2 -2
- data/spec/zip_file_recorder_spec.rb +2 -2
- data/tmp/.gitignore +4 -0
- data/trecs.gemspec +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 892a0d64c6d2ee439cfbedbf62c73de9906b7047
|
|
4
|
+
data.tar.gz: a5c72782a6941095199d2297ec2d7c4e958c9d8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0d586c1bc749e4e6e9c5182c6b46addb03072871575fec1fb5821c98e25a7d281c11184508f171df2600bb289ae4cd5e2209e9d7fcf58e55090cc70305d3a18
|
|
7
|
+
data.tar.gz: ecfbedadaf28ab44eede5ae3e6da236f644b6660c8400ccee2dffc3bff122f363a52ce138f3669c5ebe476e1d1000bea4c31500a7099d650e4dcfbf0881485e4
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
trecs (0.0.
|
|
5
|
-
rubyzip (~> 1.
|
|
4
|
+
trecs (0.0.2.alpha2)
|
|
5
|
+
rubyzip (~> 1.1.4)
|
|
6
6
|
trollop (~> 2.0)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
diff-lcs (1.2.
|
|
11
|
+
diff-lcs (1.2.5)
|
|
12
12
|
given_core (3.5.4)
|
|
13
13
|
sorcerer (>= 0.3.7)
|
|
14
14
|
rake (10.3.2)
|
|
15
|
-
rspec (2.
|
|
16
|
-
rspec-core (~> 2.
|
|
17
|
-
rspec-expectations (~> 2.
|
|
18
|
-
rspec-mocks (~> 2.
|
|
19
|
-
rspec-core (2.
|
|
20
|
-
rspec-expectations (2.
|
|
15
|
+
rspec (2.99.0)
|
|
16
|
+
rspec-core (~> 2.99.0)
|
|
17
|
+
rspec-expectations (~> 2.99.0)
|
|
18
|
+
rspec-mocks (~> 2.99.0)
|
|
19
|
+
rspec-core (2.99.0)
|
|
20
|
+
rspec-expectations (2.99.0)
|
|
21
21
|
diff-lcs (>= 1.1.3, < 2.0)
|
|
22
22
|
rspec-given (3.5.4)
|
|
23
23
|
given_core (= 3.5.4)
|
|
24
24
|
rspec (>= 2.12)
|
|
25
|
-
rspec-mocks (2.
|
|
26
|
-
rubyzip (1.
|
|
25
|
+
rspec-mocks (2.99.0)
|
|
26
|
+
rubyzip (1.1.4)
|
|
27
27
|
sorcerer (1.0.2)
|
|
28
28
|
trollop (2.0)
|
|
29
29
|
|
data/lib/trecs/version.rb
CHANGED
|
Binary file
|
|
Binary file
|
data/spec/trecs_message_spec.rb
CHANGED
|
@@ -64,8 +64,8 @@ describe "T-Recs" do
|
|
|
64
64
|
file_name "i_should_exist"
|
|
65
65
|
trecs("-f", file_name, "--message", "a")
|
|
66
66
|
|
|
67
|
-
File.exists?(file_name).should
|
|
68
|
-
expect { Zip::File.open(file_name) }.not_to raise_error
|
|
67
|
+
File.exists?(file_name).should be_truthy
|
|
68
|
+
expect { Zip::File.open(file_name) }.not_to raise_error
|
|
69
69
|
end
|
|
70
70
|
|
|
71
71
|
context "recording" do
|
|
@@ -36,8 +36,8 @@ module TRecs
|
|
|
36
36
|
|
|
37
37
|
recorder.record
|
|
38
38
|
|
|
39
|
-
File.exists?(file_name).should
|
|
40
|
-
expect { Zip::File.open(file_name) }.not_to raise_error
|
|
39
|
+
File.exists?(file_name).should be_truthy
|
|
40
|
+
expect { Zip::File.open(file_name) }.not_to raise_error
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
it "has the correct frames" do
|
data/tmp/.gitignore
ADDED
data/trecs.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trecs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2.alpha2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Federico Iachetti
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.1.4
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.1.4
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: trollop
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -135,6 +135,8 @@ files:
|
|
|
135
135
|
- lib/timestamps.rb
|
|
136
136
|
- lib/trecs/version.rb
|
|
137
137
|
- pkg/trecs-0.0.1.alpha.gem
|
|
138
|
+
- pkg/trecs-0.0.1.alpha2.gem
|
|
139
|
+
- pkg/trecs-0.0.2.alpha.gem
|
|
138
140
|
- sandbox/create_recording.rb
|
|
139
141
|
- sandbox/lipsum_end
|
|
140
142
|
- sandbox/lipsum_start
|
|
@@ -148,6 +150,7 @@ files:
|
|
|
148
150
|
- spec/trecs_message_spec.rb
|
|
149
151
|
- spec/trecs_spec.rb
|
|
150
152
|
- spec/zip_file_recorder_spec.rb
|
|
153
|
+
- tmp/.gitignore
|
|
151
154
|
- trecs.gemspec
|
|
152
155
|
homepage: ''
|
|
153
156
|
licenses:
|