ekg 1.0.0 → 1.1.0
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.
- data/.gitignore +2 -1
- data/.travis.yml +8 -0
- data/README.md +17 -4
- data/Rakefile +9 -0
- data/ekg.gemspec +1 -0
- data/lib/ekg.rb +24 -3
- data/lib/ekg/data.rb +12 -19
- data/lib/ekg/version.rb +1 -1
- data/spec/ekg/data_spec.rb +1 -1
- data/spec/ekg_spec.rb +92 -0
- data/spec/spec_helper.rb +3 -0
- metadata +64 -25
- checksums.yaml +0 -7
- data/.DS_Store +0 -0
- data/.idea/ekg.iml +0 -18
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.idea/workspace.xml +0 -438
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -1,6 +1,5 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
TODO: Write a gem description
|
1
|
+
# EKG [](http://travis-ci.org/darrencauthon/ekg)
|
2
|
+
[](https://coveralls.io/r/darrencauthon/ekg?branch=master)
|
4
3
|
|
5
4
|
## Installation
|
6
5
|
|
@@ -18,7 +17,21 @@ Or install it yourself as:
|
|
18
17
|
|
19
18
|
## Usage
|
20
19
|
|
21
|
-
|
20
|
+
1. Provide some setup.
|
21
|
+
|
22
|
+
````
|
23
|
+
Ekg.config = { name: 'YOUR APP NAME',
|
24
|
+
firebase_url: 'https://YOURDB.firebaseio.com' }
|
25
|
+
|
26
|
+
````
|
27
|
+
|
28
|
+
2. Call "lub_dub" whenever you want to fire a note that your app is alive.
|
29
|
+
|
30
|
+
````
|
31
|
+
Ekg.lub_dub
|
32
|
+
````
|
33
|
+
|
34
|
+
3. Check your firebase database. You'll find that a note in /heartbeats will be updated with the current timestamp.
|
22
35
|
|
23
36
|
## Contributing
|
24
37
|
|
data/Rakefile
CHANGED
data/ekg.gemspec
CHANGED
@@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.add_development_dependency 'webmock'
|
25
25
|
spec.add_development_dependency 'contrast'
|
26
26
|
spec.add_development_dependency 'mocha'
|
27
|
+
spec.add_development_dependency 'coveralls'
|
27
28
|
spec.add_development_dependency "bundler", "~> 1.3"
|
28
29
|
spec.add_development_dependency "rake"
|
29
30
|
spec.add_development_dependency "faraday"
|
data/lib/ekg.rb
CHANGED
@@ -1,13 +1,34 @@
|
|
1
1
|
Dir[File.dirname(__FILE__) + '/ekg/*.rb'].each {|file| require file }
|
2
2
|
|
3
3
|
module Ekg
|
4
|
+
|
4
5
|
class << self
|
6
|
+
|
5
7
|
attr_accessor :config
|
8
|
+
|
6
9
|
def lub_dub
|
7
|
-
Ekg::Data.send_data({ name:
|
8
|
-
|
9
|
-
|
10
|
+
Ekg::Data.send_data( { name: Ekg.config[:name],
|
11
|
+
version: Ekg.config[:version],
|
12
|
+
time: Time.now } )
|
10
13
|
rescue
|
11
14
|
end
|
15
|
+
|
16
|
+
def time_since_last_heartbeat
|
17
|
+
return nil unless time = the_last_heartbeat_time
|
18
|
+
Time.now - time
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def the_last_heartbeat_time
|
24
|
+
Time.parse the_last_heartbeat_record['time']
|
25
|
+
rescue
|
26
|
+
nil
|
27
|
+
end
|
28
|
+
|
29
|
+
def the_last_heartbeat_record
|
30
|
+
records = Ekg::Data.receive_data
|
31
|
+
records.select { |x| x['name'] == Ekg.config[:name] }.first
|
32
|
+
end
|
12
33
|
end
|
13
34
|
end
|
data/lib/ekg/data.rb
CHANGED
@@ -3,43 +3,36 @@ require 'json'
|
|
3
3
|
|
4
4
|
module Ekg
|
5
5
|
class Data
|
6
|
+
|
6
7
|
class << self
|
8
|
+
|
7
9
|
def send_data(data)
|
8
10
|
name = data[:name]
|
9
|
-
|
10
|
-
send_the_body name, body
|
11
|
+
send_the_body name, data.to_json
|
11
12
|
end
|
12
13
|
|
13
14
|
def receive_data
|
14
|
-
|
15
|
-
faraday.request :url_encoded
|
16
|
-
faraday.response :logger
|
17
|
-
faraday.adapter Faraday.default_adapter
|
18
|
-
end
|
19
|
-
response = connection.get do |req|
|
20
|
-
req.url "/heartbeats.json"
|
21
|
-
end
|
15
|
+
response = connection.get { |req| req.url("/heartbeats.json") }
|
22
16
|
JSON.parse(response.body).map { |x| x[1] }
|
23
17
|
end
|
24
18
|
|
25
|
-
|
26
19
|
private
|
27
20
|
|
28
|
-
def
|
29
|
-
|
21
|
+
def send_the_body(name, body)
|
22
|
+
connection.patch do |req|
|
23
|
+
req.url "/heartbeats/#{name}.json"
|
24
|
+
req.body = body
|
25
|
+
end
|
30
26
|
end
|
31
27
|
|
32
|
-
def
|
33
|
-
|
28
|
+
def connection
|
29
|
+
Faraday.new(:url => Ekg.config[:firebase_url]) do |faraday|
|
34
30
|
faraday.request :url_encoded
|
35
31
|
faraday.response :logger
|
36
32
|
faraday.adapter Faraday.default_adapter
|
37
33
|
end
|
38
|
-
response = connection.patch do |req|
|
39
|
-
req.url "/heartbeats/#{name}.json"
|
40
|
-
req.body = body
|
41
|
-
end
|
42
34
|
end
|
35
|
+
|
43
36
|
end
|
44
37
|
end
|
45
38
|
end
|
data/lib/ekg/version.rb
CHANGED
data/spec/ekg/data_spec.rb
CHANGED
@@ -17,7 +17,7 @@ describe Ekg::Data do
|
|
17
17
|
to_return { |request| request_body = request.body; {body: ''} }
|
18
18
|
Ekg::Data.send_data({name: 'testing', some: 'data', and: 'more'})
|
19
19
|
|
20
|
-
request_body.must_equal "{
|
20
|
+
request_body.must_equal "{\"name\":\"testing\",\"some\":\"data\",\"and\":\"more\"}"
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
data/spec/ekg_spec.rb
CHANGED
@@ -38,4 +38,96 @@ describe Ekg do
|
|
38
38
|
# an error should not bubble up
|
39
39
|
end
|
40
40
|
end
|
41
|
+
|
42
|
+
describe "time_since_last_heartbeat" do
|
43
|
+
[:now, :seconds_ago, :expected_index, :name].to_objects { [
|
44
|
+
["2013-09-30 21:53:56 -0500", 1, 0, 'test'],
|
45
|
+
["2013-09-30 21:53:56 -0500", 1, 1, 'test'],
|
46
|
+
["2013-09-30 21:53:56 -0500", 1, 2, 'test'],
|
47
|
+
["2012-09-30 20:50:00 -0600", 2, 1, 'another']
|
48
|
+
] }.each do |test|
|
49
|
+
describe "when the heartbeat was seconds ago" do
|
50
|
+
before do
|
51
|
+
|
52
|
+
Timecop.freeze Time.parse(test.now)
|
53
|
+
|
54
|
+
Ekg.config = {
|
55
|
+
name: test.name,
|
56
|
+
}
|
57
|
+
|
58
|
+
sample_data = [ { 'name' => 'first',
|
59
|
+
'time' => (Time.now - test.seconds_ago + 5).to_s },
|
60
|
+
{ 'name' => test.name,
|
61
|
+
'time' => (Time.now - test.seconds_ago).to_s },
|
62
|
+
{ 'name' => 'last',
|
63
|
+
'time' => (Time.now - test.seconds_ago + 10).to_s } ]
|
64
|
+
sample_data.each.map { |x, i| [x, i] }.sort_by { |x| x[1] }.map { |x| x[0] }
|
65
|
+
Ekg::Data.stubs(:receive_data).returns(sample_data)
|
66
|
+
end
|
67
|
+
|
68
|
+
it "should return the difference in seconds" do
|
69
|
+
Ekg.time_since_last_heartbeat.must_equal test.seconds_ago
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
describe "when no matching heartbeat exists" do
|
74
|
+
before do
|
75
|
+
|
76
|
+
Timecop.freeze Time.parse(test.now)
|
77
|
+
|
78
|
+
Ekg.config = {
|
79
|
+
name: test.name,
|
80
|
+
}
|
81
|
+
|
82
|
+
sample_data = [ { 'name' => 'first',
|
83
|
+
'time' => (Time.now - test.seconds_ago + 5).to_s },
|
84
|
+
{ 'name' => 'second',
|
85
|
+
'time' => (Time.now - test.seconds_ago).to_s },
|
86
|
+
{ 'name' => 'last',
|
87
|
+
'time' => (Time.now - test.seconds_ago + 10).to_s } ]
|
88
|
+
sample_data.each.map { |x, i| [x, i] }.sort_by { |x| x[1] }.map { |x| x[0] }
|
89
|
+
Ekg::Data.stubs(:receive_data).returns(sample_data)
|
90
|
+
end
|
91
|
+
|
92
|
+
it "should return nil" do
|
93
|
+
Ekg.time_since_last_heartbeat.nil?.must_equal true
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
describe "when no heartbeat exists" do
|
98
|
+
before do
|
99
|
+
|
100
|
+
Timecop.freeze Time.parse(test.now)
|
101
|
+
|
102
|
+
Ekg.config = {
|
103
|
+
name: test.name,
|
104
|
+
}
|
105
|
+
|
106
|
+
sample_data = []
|
107
|
+
Ekg::Data.stubs(:receive_data).returns(sample_data)
|
108
|
+
end
|
109
|
+
|
110
|
+
it "should return nil" do
|
111
|
+
Ekg.time_since_last_heartbeat.nil?.must_equal true
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
describe "when the web call fails" do
|
116
|
+
before do
|
117
|
+
|
118
|
+
Timecop.freeze Time.parse(test.now)
|
119
|
+
|
120
|
+
Ekg.config = {
|
121
|
+
name: test.name,
|
122
|
+
}
|
123
|
+
|
124
|
+
Ekg::Data.stubs(:receive_data).raises 'k'
|
125
|
+
end
|
126
|
+
|
127
|
+
it "should return nil" do
|
128
|
+
Ekg.time_since_last_heartbeat.nil?.must_equal true
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
41
133
|
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ekg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Darren Cauthon
|
@@ -9,39 +10,44 @@ authors:
|
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
12
|
-
date: 2013-
|
13
|
+
date: 2013-10-01 00:00:00.000000000 Z
|
13
14
|
dependencies:
|
14
15
|
- !ruby/object:Gem::Dependency
|
15
16
|
name: minitest
|
16
17
|
requirement: !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
17
19
|
requirements:
|
18
|
-
- - '>='
|
20
|
+
- - ! '>='
|
19
21
|
- !ruby/object:Gem::Version
|
20
22
|
version: '0'
|
21
23
|
type: :development
|
22
24
|
prerelease: false
|
23
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
24
27
|
requirements:
|
25
|
-
- - '>='
|
28
|
+
- - ! '>='
|
26
29
|
- !ruby/object:Gem::Version
|
27
30
|
version: '0'
|
28
31
|
- !ruby/object:Gem::Dependency
|
29
32
|
name: timecop
|
30
33
|
requirement: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
31
35
|
requirements:
|
32
|
-
- - '>='
|
36
|
+
- - ! '>='
|
33
37
|
- !ruby/object:Gem::Version
|
34
38
|
version: '0'
|
35
39
|
type: :development
|
36
40
|
prerelease: false
|
37
41
|
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
38
43
|
requirements:
|
39
|
-
- - '>='
|
44
|
+
- - ! '>='
|
40
45
|
- !ruby/object:Gem::Version
|
41
46
|
version: '0'
|
42
47
|
- !ruby/object:Gem::Dependency
|
43
48
|
name: subtle
|
44
49
|
requirement: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
45
51
|
requirements:
|
46
52
|
- - ~>
|
47
53
|
- !ruby/object:Gem::Version
|
@@ -49,6 +55,7 @@ dependencies:
|
|
49
55
|
type: :development
|
50
56
|
prerelease: false
|
51
57
|
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
52
59
|
requirements:
|
53
60
|
- - ~>
|
54
61
|
- !ruby/object:Gem::Version
|
@@ -56,48 +63,71 @@ dependencies:
|
|
56
63
|
- !ruby/object:Gem::Dependency
|
57
64
|
name: webmock
|
58
65
|
requirement: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
59
67
|
requirements:
|
60
|
-
- - '>='
|
68
|
+
- - ! '>='
|
61
69
|
- !ruby/object:Gem::Version
|
62
70
|
version: '0'
|
63
71
|
type: :development
|
64
72
|
prerelease: false
|
65
73
|
version_requirements: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
66
75
|
requirements:
|
67
|
-
- - '>='
|
76
|
+
- - ! '>='
|
68
77
|
- !ruby/object:Gem::Version
|
69
78
|
version: '0'
|
70
79
|
- !ruby/object:Gem::Dependency
|
71
80
|
name: contrast
|
72
81
|
requirement: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
73
83
|
requirements:
|
74
|
-
- - '>='
|
84
|
+
- - ! '>='
|
75
85
|
- !ruby/object:Gem::Version
|
76
86
|
version: '0'
|
77
87
|
type: :development
|
78
88
|
prerelease: false
|
79
89
|
version_requirements: !ruby/object:Gem::Requirement
|
90
|
+
none: false
|
80
91
|
requirements:
|
81
|
-
- - '>='
|
92
|
+
- - ! '>='
|
82
93
|
- !ruby/object:Gem::Version
|
83
94
|
version: '0'
|
84
95
|
- !ruby/object:Gem::Dependency
|
85
96
|
name: mocha
|
86
97
|
requirement: !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
87
99
|
requirements:
|
88
|
-
- - '>='
|
100
|
+
- - ! '>='
|
89
101
|
- !ruby/object:Gem::Version
|
90
102
|
version: '0'
|
91
103
|
type: :development
|
92
104
|
prerelease: false
|
93
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
94
107
|
requirements:
|
95
|
-
- - '>='
|
108
|
+
- - ! '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: coveralls
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
none: false
|
115
|
+
requirements:
|
116
|
+
- - ! '>='
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
none: false
|
123
|
+
requirements:
|
124
|
+
- - ! '>='
|
96
125
|
- !ruby/object:Gem::Version
|
97
126
|
version: '0'
|
98
127
|
- !ruby/object:Gem::Dependency
|
99
128
|
name: bundler
|
100
129
|
requirement: !ruby/object:Gem::Requirement
|
130
|
+
none: false
|
101
131
|
requirements:
|
102
132
|
- - ~>
|
103
133
|
- !ruby/object:Gem::Version
|
@@ -105,6 +135,7 @@ dependencies:
|
|
105
135
|
type: :development
|
106
136
|
prerelease: false
|
107
137
|
version_requirements: !ruby/object:Gem::Requirement
|
138
|
+
none: false
|
108
139
|
requirements:
|
109
140
|
- - ~>
|
110
141
|
- !ruby/object:Gem::Version
|
@@ -112,29 +143,33 @@ dependencies:
|
|
112
143
|
- !ruby/object:Gem::Dependency
|
113
144
|
name: rake
|
114
145
|
requirement: !ruby/object:Gem::Requirement
|
146
|
+
none: false
|
115
147
|
requirements:
|
116
|
-
- - '>='
|
148
|
+
- - ! '>='
|
117
149
|
- !ruby/object:Gem::Version
|
118
150
|
version: '0'
|
119
151
|
type: :development
|
120
152
|
prerelease: false
|
121
153
|
version_requirements: !ruby/object:Gem::Requirement
|
154
|
+
none: false
|
122
155
|
requirements:
|
123
|
-
- - '>='
|
156
|
+
- - ! '>='
|
124
157
|
- !ruby/object:Gem::Version
|
125
158
|
version: '0'
|
126
159
|
- !ruby/object:Gem::Dependency
|
127
160
|
name: faraday
|
128
161
|
requirement: !ruby/object:Gem::Requirement
|
162
|
+
none: false
|
129
163
|
requirements:
|
130
|
-
- - '>='
|
164
|
+
- - ! '>='
|
131
165
|
- !ruby/object:Gem::Version
|
132
166
|
version: '0'
|
133
167
|
type: :development
|
134
168
|
prerelease: false
|
135
169
|
version_requirements: !ruby/object:Gem::Requirement
|
170
|
+
none: false
|
136
171
|
requirements:
|
137
|
-
- - '>='
|
172
|
+
- - ! '>='
|
138
173
|
- !ruby/object:Gem::Version
|
139
174
|
version: '0'
|
140
175
|
description: Monitor the heartbeat of your app
|
@@ -144,11 +179,8 @@ executables: []
|
|
144
179
|
extensions: []
|
145
180
|
extra_rdoc_files: []
|
146
181
|
files:
|
147
|
-
- .DS_Store
|
148
182
|
- .gitignore
|
149
|
-
- .
|
150
|
-
- .idea/scopes/scope_settings.xml
|
151
|
-
- .idea/workspace.xml
|
183
|
+
- .travis.yml
|
152
184
|
- Gemfile
|
153
185
|
- LICENSE.txt
|
154
186
|
- README.md
|
@@ -164,26 +196,33 @@ files:
|
|
164
196
|
homepage: https://github.com/darrencauthon/ekg
|
165
197
|
licenses:
|
166
198
|
- MIT
|
167
|
-
metadata: {}
|
168
199
|
post_install_message:
|
169
200
|
rdoc_options: []
|
170
201
|
require_paths:
|
171
202
|
- lib
|
172
203
|
required_ruby_version: !ruby/object:Gem::Requirement
|
204
|
+
none: false
|
173
205
|
requirements:
|
174
|
-
- - '>='
|
206
|
+
- - ! '>='
|
175
207
|
- !ruby/object:Gem::Version
|
176
208
|
version: '0'
|
209
|
+
segments:
|
210
|
+
- 0
|
211
|
+
hash: -2582955592845361699
|
177
212
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
213
|
+
none: false
|
178
214
|
requirements:
|
179
|
-
- - '>='
|
215
|
+
- - ! '>='
|
180
216
|
- !ruby/object:Gem::Version
|
181
217
|
version: '0'
|
218
|
+
segments:
|
219
|
+
- 0
|
220
|
+
hash: -2582955592845361699
|
182
221
|
requirements: []
|
183
222
|
rubyforge_project:
|
184
|
-
rubygems_version:
|
223
|
+
rubygems_version: 1.8.25
|
185
224
|
signing_key:
|
186
|
-
specification_version:
|
225
|
+
specification_version: 3
|
187
226
|
summary: Monitor the heartbeat of your app
|
188
227
|
test_files:
|
189
228
|
- spec/ekg/data_spec.rb
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 55bdc73579680440d8ca929bb5b32f1285f10656
|
4
|
-
data.tar.gz: cf7faed83828c5f16c0c3d97c7bba30178086fcb
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 33a74a1eb0c544ce5a56acacfc4581d3c0a3f10014661d9329a35bd8bcc69ba2d9f066f66c6b51a540118ff236c2e4086369c6b1008bb415a9d674e8ca20705c
|
7
|
-
data.tar.gz: 9286ab78330829787f348d9179c041b5ba0e14f83e2c8678b979e3853adeff897b086875ef426bf953b05276e4d452400ae0bc0c01878e5b9c96a8fdf8b0fbeb
|
data/.DS_Store
DELETED
Binary file
|
data/.idea/ekg.iml
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="FacetManager">
|
4
|
-
<facet type="gem" name="Gem">
|
5
|
-
<configuration>
|
6
|
-
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
-
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
-
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
9
|
-
</configuration>
|
10
|
-
</facet>
|
11
|
-
</component>
|
12
|
-
<component name="NewModuleRootManager">
|
13
|
-
<content url="file://$MODULE_DIR$" />
|
14
|
-
<orderEntry type="inheritedJdk" />
|
15
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
16
|
-
</component>
|
17
|
-
</module>
|
18
|
-
|
data/.idea/workspace.xml
DELETED
@@ -1,438 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="6a2f0408-4244-4fa5-82e1-ced494e41658" name="Default" comment="" />
|
5
|
-
<ignored path="ekg.iws" />
|
6
|
-
<ignored path=".idea/workspace.xml" />
|
7
|
-
<file path="/Dummy.txt" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379612149104" ignored="false" />
|
8
|
-
<file path="/ekg.gemspec" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379619943356" ignored="false" />
|
9
|
-
<file path="/temp.rb" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379606192467" ignored="false" />
|
10
|
-
<file path="/a.dummy" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379612084488" ignored="false" />
|
11
|
-
<file path="/Guardfile" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379606333038" ignored="false" />
|
12
|
-
<file path="/README.md" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379611929079" ignored="false" />
|
13
|
-
<file path="/ekg.rb" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379606377523" ignored="false" />
|
14
|
-
<file path="/data.rb" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379612072888" ignored="false" />
|
15
|
-
<file path="/spec_helper.rb" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379606398582" ignored="false" />
|
16
|
-
<file path="/data_spec.rb" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379611913614" ignored="false" />
|
17
|
-
<file path="/.gitignore" changelist="6a2f0408-4244-4fa5-82e1-ced494e41658" time="1379619967801" ignored="false" />
|
18
|
-
<option name="TRACKING_ENABLED" value="true" />
|
19
|
-
<option name="SHOW_DIALOG" value="false" />
|
20
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
21
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
22
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
23
|
-
</component>
|
24
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
25
|
-
<component name="CreatePatchCommitExecutor">
|
26
|
-
<option name="PATCH_PATH" value="" />
|
27
|
-
</component>
|
28
|
-
<component name="DaemonCodeAnalyzer">
|
29
|
-
<disable_hints />
|
30
|
-
</component>
|
31
|
-
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
32
|
-
<component name="FavoritesManager">
|
33
|
-
<favorites_list name="ekg" />
|
34
|
-
</component>
|
35
|
-
<component name="FileEditorManager">
|
36
|
-
<leaf>
|
37
|
-
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
38
|
-
<entry file="file://$USER_HOME$/ekg2/Gemfile">
|
39
|
-
<provider selected="true" editor-type-id="text-editor">
|
40
|
-
<state line="2" column="0" selection-start="31" selection-end="273" vertical-scroll-proportion="0.0">
|
41
|
-
<folding />
|
42
|
-
</state>
|
43
|
-
</provider>
|
44
|
-
</entry>
|
45
|
-
</file>
|
46
|
-
<file leaf-file-name="ekg.gemspec" pinned="false" current="true" current-in-tab="true">
|
47
|
-
<entry file="file://$PROJECT_DIR$/ekg.gemspec">
|
48
|
-
<provider selected="true" editor-type-id="text-editor">
|
49
|
-
<state line="28" column="42" selection-start="1125" selection-end="1125" vertical-scroll-proportion="0.5785124">
|
50
|
-
<folding />
|
51
|
-
</state>
|
52
|
-
</provider>
|
53
|
-
</entry>
|
54
|
-
</file>
|
55
|
-
</leaf>
|
56
|
-
</component>
|
57
|
-
<component name="FindManager">
|
58
|
-
<FindUsagesManager>
|
59
|
-
<setting name="OPEN_NEW_TAB" value="false" />
|
60
|
-
</FindUsagesManager>
|
61
|
-
</component>
|
62
|
-
<component name="Git.Settings">
|
63
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
64
|
-
</component>
|
65
|
-
<component name="GitLogSettings">
|
66
|
-
<option name="myDateState">
|
67
|
-
<MyDateState />
|
68
|
-
</option>
|
69
|
-
</component>
|
70
|
-
<component name="IdeDocumentHistory">
|
71
|
-
<option name="changedFiles">
|
72
|
-
<list>
|
73
|
-
<option value="$PROJECT_DIR$/lib/ekg/version.rb" />
|
74
|
-
<option value="$PROJECT_DIR$/lib/ekg/ekg.rb" />
|
75
|
-
<option value="$PROJECT_DIR$/Gemfile" />
|
76
|
-
<option value="$PROJECT_DIR$/Guardfile" />
|
77
|
-
<option value="$PROJECT_DIR$/lib/ekg.rb" />
|
78
|
-
<option value="$PROJECT_DIR$/spec/spec_helper.rb" />
|
79
|
-
<option value="$PROJECT_DIR$/spec/ekg/ekg_spec.rb" />
|
80
|
-
<option value="$PROJECT_DIR$/README.md" />
|
81
|
-
<option value="$PROJECT_DIR$/spec/ekg/data_spec.rb" />
|
82
|
-
<option value="$PROJECT_DIR$/lib/ekg/data.rb" />
|
83
|
-
<option value="$PROJECT_DIR$/ekg.gemspec" />
|
84
|
-
<option value="$PROJECT_DIR$/.gitignore" />
|
85
|
-
</list>
|
86
|
-
</option>
|
87
|
-
</component>
|
88
|
-
<component name="ProjectFrameBounds">
|
89
|
-
<option name="y" value="22" />
|
90
|
-
<option name="width" value="1600" />
|
91
|
-
<option name="height" value="874" />
|
92
|
-
</component>
|
93
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
94
|
-
<OptionsSetting value="true" id="Add" />
|
95
|
-
<OptionsSetting value="true" id="Remove" />
|
96
|
-
<OptionsSetting value="true" id="Checkout" />
|
97
|
-
<OptionsSetting value="true" id="Update" />
|
98
|
-
<OptionsSetting value="true" id="Status" />
|
99
|
-
<OptionsSetting value="true" id="Edit" />
|
100
|
-
<ConfirmationsSetting value="0" id="Add" />
|
101
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
102
|
-
</component>
|
103
|
-
<component name="ProjectReloadState">
|
104
|
-
<option name="STATE" value="0" />
|
105
|
-
</component>
|
106
|
-
<component name="ProjectView">
|
107
|
-
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
108
|
-
<flattenPackages />
|
109
|
-
<showMembers />
|
110
|
-
<showModules />
|
111
|
-
<showLibraryContents />
|
112
|
-
<hideEmptyPackages />
|
113
|
-
<abbreviatePackageNames />
|
114
|
-
<autoscrollToSource />
|
115
|
-
<autoscrollFromSource />
|
116
|
-
<sortByType />
|
117
|
-
</navigator>
|
118
|
-
<panes>
|
119
|
-
<pane id="ProjectPane">
|
120
|
-
<subPane>
|
121
|
-
<PATH>
|
122
|
-
<PATH_ELEMENT>
|
123
|
-
<option name="myItemId" value="ekg" />
|
124
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
125
|
-
</PATH_ELEMENT>
|
126
|
-
</PATH>
|
127
|
-
<PATH>
|
128
|
-
<PATH_ELEMENT>
|
129
|
-
<option name="myItemId" value="ekg" />
|
130
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
131
|
-
</PATH_ELEMENT>
|
132
|
-
<PATH_ELEMENT>
|
133
|
-
<option name="myItemId" value="ekg" />
|
134
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
135
|
-
</PATH_ELEMENT>
|
136
|
-
</PATH>
|
137
|
-
</subPane>
|
138
|
-
</pane>
|
139
|
-
<pane id="Scope" />
|
140
|
-
</panes>
|
141
|
-
</component>
|
142
|
-
<component name="PropertiesComponent">
|
143
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
144
|
-
<property name="recentsLimit" value="5" />
|
145
|
-
</component>
|
146
|
-
<component name="RunManager" selected="RSpec.Ekg::Data#send_data should fire">
|
147
|
-
<configuration default="false" name="All tests in: spec" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
148
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
149
|
-
<module name="ekg" />
|
150
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
151
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$/spec" />
|
152
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
153
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
154
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
155
|
-
<envs>
|
156
|
-
<env name="JRUBY_OPTS" value="-X+O" />
|
157
|
-
</envs>
|
158
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
159
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
160
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
161
|
-
<COVERAGE_PATTERN ENABLED="true">
|
162
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
163
|
-
</COVERAGE_PATTERN>
|
164
|
-
</EXTENSION>
|
165
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
166
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$PROJECT_DIR$/spec" />
|
167
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
168
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/{*_test,test_*}.rb" />
|
169
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
170
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
|
171
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
172
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
173
|
-
<RunnerSettings RunnerId="RubyRunner" />
|
174
|
-
<ConfigurationWrapper RunnerId="RubyRunner" />
|
175
|
-
<method />
|
176
|
-
</configuration>
|
177
|
-
<configuration default="false" name="Ekg::Data#send_data should fire" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
178
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
179
|
-
<module name="ekg" />
|
180
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
181
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
|
182
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
183
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
184
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
185
|
-
<envs>
|
186
|
-
<env name="JRUBY_OPTS" value="-X+O" />
|
187
|
-
</envs>
|
188
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
189
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
190
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
191
|
-
<COVERAGE_PATTERN ENABLED="true">
|
192
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
193
|
-
</COVERAGE_PATTERN>
|
194
|
-
</EXTENSION>
|
195
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
196
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
197
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$PROJECT_DIR$/spec/ekg/data_spec.rb" />
|
198
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
199
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
200
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="Ekg::Data#send_data should fire" />
|
201
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
202
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
203
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
204
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
205
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
206
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
207
|
-
<RunnerSettings RunnerId="RubyRunner" />
|
208
|
-
<ConfigurationWrapper RunnerId="RubyRunner" />
|
209
|
-
<method />
|
210
|
-
</configuration>
|
211
|
-
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
212
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
213
|
-
<module name="" />
|
214
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
215
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
216
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
217
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
218
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
219
|
-
<envs />
|
220
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
221
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
222
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
223
|
-
<COVERAGE_PATTERN ENABLED="true">
|
224
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
225
|
-
</COVERAGE_PATTERN>
|
226
|
-
</EXTENSION>
|
227
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
228
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
229
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
230
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
231
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
232
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
233
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
234
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
235
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
236
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
237
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
238
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
239
|
-
<method />
|
240
|
-
</configuration>
|
241
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
242
|
-
<module name="" />
|
243
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
244
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
245
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
246
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
247
|
-
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
248
|
-
<envs />
|
249
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
250
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
251
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
252
|
-
<COVERAGE_PATTERN ENABLED="true">
|
253
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
254
|
-
</COVERAGE_PATTERN>
|
255
|
-
</EXTENSION>
|
256
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
257
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
258
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
259
|
-
<method />
|
260
|
-
</configuration>
|
261
|
-
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
262
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
263
|
-
<module name="" />
|
264
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
265
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
266
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
267
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
268
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
269
|
-
<envs />
|
270
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
271
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
272
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
273
|
-
<COVERAGE_PATTERN ENABLED="true">
|
274
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
275
|
-
</COVERAGE_PATTERN>
|
276
|
-
</EXTENSION>
|
277
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
278
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
279
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
280
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
281
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
282
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
283
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
284
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
285
|
-
<method />
|
286
|
-
</configuration>
|
287
|
-
<list size="2">
|
288
|
-
<item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.All tests in: spec" />
|
289
|
-
<item index="1" class="java.lang.String" itemvalue="RSpec.Ekg::Data#send_data should fire" />
|
290
|
-
</list>
|
291
|
-
<recent_temporary>
|
292
|
-
<list size="2">
|
293
|
-
<item index="0" class="java.lang.String" itemvalue="RSpec.Ekg::Data#send_data should fire" />
|
294
|
-
<item index="1" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.All tests in: spec" />
|
295
|
-
</list>
|
296
|
-
</recent_temporary>
|
297
|
-
</component>
|
298
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
299
|
-
<component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false" SSL_PROTOCOLS="sslv3">
|
300
|
-
<option name="USER" value="" />
|
301
|
-
<option name="PASSWORD" value="" />
|
302
|
-
<option name="mySSHConnectionTimeout" value="30000" />
|
303
|
-
<option name="mySSHReadTimeout" value="30000" />
|
304
|
-
<option name="LAST_MERGED_REVISION" />
|
305
|
-
<option name="MERGE_DRY_RUN" value="false" />
|
306
|
-
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
307
|
-
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
308
|
-
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
309
|
-
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
310
|
-
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
311
|
-
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
312
|
-
<option name="FORCE_UPDATE" value="false" />
|
313
|
-
<option name="IGNORE_EXTERNALS" value="false" />
|
314
|
-
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
315
|
-
</component>
|
316
|
-
<component name="TaskManager">
|
317
|
-
<task active="true" id="Default" summary="Default task">
|
318
|
-
<changelist id="6a2f0408-4244-4fa5-82e1-ced494e41658" name="Default" comment="" />
|
319
|
-
<created>1379606072344</created>
|
320
|
-
<updated>1379606072344</updated>
|
321
|
-
</task>
|
322
|
-
<task id="LOCAL-00001" summary="initial commit">
|
323
|
-
<created>1379612155717</created>
|
324
|
-
<updated>1379612155717</updated>
|
325
|
-
</task>
|
326
|
-
<option name="localTasksCounter" value="2" />
|
327
|
-
<servers />
|
328
|
-
</component>
|
329
|
-
<component name="ToolWindowManager">
|
330
|
-
<frame x="0" y="22" width="1600" height="874" extended-state="0" />
|
331
|
-
<editor active="true" />
|
332
|
-
<layout>
|
333
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
334
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32891247" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
335
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
336
|
-
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
337
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
338
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24967825" sideWeight="0.6710875" order="0" side_tool="false" content_ui="combo" />
|
339
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
340
|
-
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
341
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
342
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
343
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
344
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
345
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
346
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
347
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32891247" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
348
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
349
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
350
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
351
|
-
</layout>
|
352
|
-
</component>
|
353
|
-
<component name="VcsContentAnnotationSettings">
|
354
|
-
<option name="myLimit" value="2678400000" />
|
355
|
-
</component>
|
356
|
-
<component name="VcsManagerConfiguration">
|
357
|
-
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
358
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
359
|
-
<option name="CHECK_NEW_TODO" value="true" />
|
360
|
-
<option name="myTodoPanelSettings">
|
361
|
-
<value>
|
362
|
-
<are-packages-shown value="false" />
|
363
|
-
<are-modules-shown value="false" />
|
364
|
-
<flatten-packages value="false" />
|
365
|
-
<is-autoscroll-to-source value="false" />
|
366
|
-
</value>
|
367
|
-
</option>
|
368
|
-
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
369
|
-
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
370
|
-
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
371
|
-
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
372
|
-
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
373
|
-
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
374
|
-
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
375
|
-
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
376
|
-
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
377
|
-
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
378
|
-
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
379
|
-
<option name="SHORT_DIFF_HORIZONTALLY" value="true" />
|
380
|
-
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
381
|
-
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
382
|
-
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
383
|
-
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
384
|
-
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
385
|
-
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
386
|
-
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
|
387
|
-
<option name="LIMIT_HISTORY" value="true" />
|
388
|
-
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
|
389
|
-
<option name="UPDATE_FILTER_SCOPE_NAME" />
|
390
|
-
<option name="USE_COMMIT_MESSAGE_MARGIN" value="false" />
|
391
|
-
<option name="COMMIT_MESSAGE_MARGIN_SIZE" value="72" />
|
392
|
-
<option name="WRAP_WHEN_TYPING_REACHES_RIGHT_MARGIN" value="false" />
|
393
|
-
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
394
|
-
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
395
|
-
<option name="LAST_COMMIT_MESSAGE" value="initial commit" />
|
396
|
-
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
397
|
-
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
398
|
-
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
399
|
-
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
400
|
-
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
401
|
-
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
402
|
-
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
403
|
-
<option name="ACTIVE_VCS_NAME" />
|
404
|
-
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
405
|
-
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
406
|
-
<option name="UPDATE_FILTER_BY_SCOPE" value="false" />
|
407
|
-
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
408
|
-
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
409
|
-
<MESSAGE value="initial commit" />
|
410
|
-
</component>
|
411
|
-
<component name="XDebuggerManager">
|
412
|
-
<breakpoint-manager />
|
413
|
-
</component>
|
414
|
-
<component name="editorHistoryManager">
|
415
|
-
<entry file="file://$USER_HOME$/ekg2/Gemfile">
|
416
|
-
<provider selected="true" editor-type-id="text-editor">
|
417
|
-
<state line="2" column="0" selection-start="31" selection-end="273" vertical-scroll-proportion="0.0">
|
418
|
-
<folding />
|
419
|
-
</state>
|
420
|
-
</provider>
|
421
|
-
</entry>
|
422
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
423
|
-
<provider selected="true" editor-type-id="text-editor">
|
424
|
-
<state line="18" column="6" selection-start="165" selection-end="165" vertical-scroll-proportion="0.37190083">
|
425
|
-
<folding />
|
426
|
-
</state>
|
427
|
-
</provider>
|
428
|
-
</entry>
|
429
|
-
<entry file="file://$PROJECT_DIR$/ekg.gemspec">
|
430
|
-
<provider selected="true" editor-type-id="text-editor">
|
431
|
-
<state line="28" column="42" selection-start="1125" selection-end="1125" vertical-scroll-proportion="0.5785124">
|
432
|
-
<folding />
|
433
|
-
</state>
|
434
|
-
</provider>
|
435
|
-
</entry>
|
436
|
-
</component>
|
437
|
-
</project>
|
438
|
-
|