rspec_html_formatter 0.0.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -2
- data/Gemfile.lock +15 -11
- data/README.md +9 -27
- data/VERSION +1 -1
- data/lib/rspec_html_formatter.rb +19 -17
- data/rspec_html_formatter.gemspec +3 -6
- data/spec/penders_spec.rb +1 -0
- data/spec/rspec_html_formatter_spec.rb +1 -1
- data/spec/test2_spec.rb +12 -10
- metadata +2 -5
- data/.idea/rspec_html_formatter.iml +0 -49
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.idea/workspace.xml +0 -691
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0052c996525a2900a3906223221803b83ab3f41f
|
4
|
+
data.tar.gz: 7c367730bcf4c4c899a97c0402681fc2eb972578
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ed813dc51c3a38972b56a5bc05484608f83c2ba2a576a57006ce8247e1d6698ab5faa81d8027b897fcd9c556328d5fbe3960875cbf520da5ab692a3f723ec70
|
7
|
+
data.tar.gz: 29bcf6bf845b1a3235c8ed4c59111dc58842274a732a35b128536095891c96a29222d2546304a6a86e59c4e834babeebd5befb3b43e064d00cf6698a9d22ffb2
|
data/Gemfile
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
2
|
# Add dependencies required to use your gem here.
|
3
|
-
gem 'rspec-core', '>=
|
3
|
+
gem 'rspec-core', '>= 3.0.3'
|
4
4
|
gem 'rouge', '>= 1.6.1'
|
5
5
|
gem 'activesupport', '>= 4.1.4'
|
6
6
|
|
7
7
|
# Add dependencies to develop your gem here.
|
8
8
|
# Include everything needed to run rake, tests, features, etc.
|
9
9
|
group :development do
|
10
|
-
gem "rspec", "~>
|
10
|
+
gem "rspec", "~> 3.0.0"
|
11
11
|
gem "rdoc", "~> 3.12"
|
12
12
|
gem "bundler", "~> 1.0"
|
13
13
|
gem "jeweler", "~> 2.0.1"
|
data/Gemfile.lock
CHANGED
@@ -11,7 +11,7 @@ GEM
|
|
11
11
|
builder (3.2.2)
|
12
12
|
descendants_tracker (0.0.4)
|
13
13
|
thread_safe (~> 0.3, >= 0.3.1)
|
14
|
-
diff-lcs (1.
|
14
|
+
diff-lcs (1.2.5)
|
15
15
|
faraday (0.9.0)
|
16
16
|
multipart-post (>= 1.2, < 3)
|
17
17
|
git (1.2.8)
|
@@ -55,14 +55,18 @@ GEM
|
|
55
55
|
rdoc (3.12.2)
|
56
56
|
json (~> 1.4)
|
57
57
|
rouge (1.6.1)
|
58
|
-
rspec (
|
59
|
-
rspec-core (~>
|
60
|
-
rspec-expectations (~>
|
61
|
-
rspec-mocks (~>
|
62
|
-
rspec-core (
|
63
|
-
|
64
|
-
|
65
|
-
|
58
|
+
rspec (3.0.0)
|
59
|
+
rspec-core (~> 3.0.0)
|
60
|
+
rspec-expectations (~> 3.0.0)
|
61
|
+
rspec-mocks (~> 3.0.0)
|
62
|
+
rspec-core (3.0.3)
|
63
|
+
rspec-support (~> 3.0.0)
|
64
|
+
rspec-expectations (3.0.3)
|
65
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
66
|
+
rspec-support (~> 3.0.0)
|
67
|
+
rspec-mocks (3.0.3)
|
68
|
+
rspec-support (~> 3.0.0)
|
69
|
+
rspec-support (3.0.3)
|
66
70
|
thread_safe (0.3.4)
|
67
71
|
tzinfo (1.2.1)
|
68
72
|
thread_safe (~> 0.1)
|
@@ -76,5 +80,5 @@ DEPENDENCIES
|
|
76
80
|
jeweler (~> 2.0.1)
|
77
81
|
rdoc (~> 3.12)
|
78
82
|
rouge (>= 1.6.1)
|
79
|
-
rspec (~>
|
80
|
-
rspec-core (>=
|
83
|
+
rspec (~> 3.0.0)
|
84
|
+
rspec-core (>= 3.0.3)
|
data/README.md
CHANGED
@@ -1,22 +1,26 @@
|
|
1
1
|
# Publish pretty [rspec](http://rspec.info/) reports
|
2
2
|
|
3
|
-
This is a ruby Rspec custom formatter which generates pretty html reports showing the results of rspec tests. This gem was build to use Rspec
|
4
|
-
versions of Rspec then you
|
3
|
+
This is a ruby Rspec custom formatter which generates pretty html reports showing the results of rspec tests. This gem was build to use Rspec 3.x.x If you want to use it with older
|
4
|
+
versions of Rspec then you should use the rspec_reports_formatter 0.2.x (2.8.0 branch)
|
5
|
+
|
6
|
+
* For Rspec 2.x.x please use rspec_reports_formatter version starting with 0.2.x
|
7
|
+
* For Rspec 3.x.x please use the rspec_reports_formatter version starting with 0.3.x
|
8
|
+
|
5
9
|
|
6
10
|
## Install
|
7
11
|
|
8
12
|
```
|
9
|
-
gem install rspec_reports_formatter
|
13
|
+
gem install rspec_reports_formatter -v 0.3.0
|
10
14
|
```
|
11
15
|
|
12
16
|
ideally just add it to your bundler Gemfile as follows:
|
13
17
|
|
14
18
|
```ruby
|
15
|
-
gem 'rspec_reports_formatter'
|
19
|
+
gem 'rspec_reports_formatter','~> 0.3.0'
|
16
20
|
```
|
17
21
|
|
18
22
|
## Use
|
19
|
-
When running your rspec tests with rspec
|
23
|
+
When running your rspec tests with rspec 3.0.0 just use the custom formatter:
|
20
24
|
|
21
25
|
This should work:
|
22
26
|
|
@@ -30,28 +34,6 @@ If not you can explicitly add in a require as follows:
|
|
30
34
|
rspec --require rspec_html_formatter.rb --format RspecHtmlFormatter spec
|
31
35
|
```
|
32
36
|
|
33
|
-
If you are using a more recent version of Rspec (3.0.0 onwards) then you must include the legacy formatter gem into your project by adding it to your Gemfile:
|
34
|
-
|
35
|
-
```ruby
|
36
|
-
|
37
|
-
# Your gemfile
|
38
|
-
group :development do
|
39
|
-
gem 'rspec','~> 3.0.0.rc1'
|
40
|
-
gem 'bundler', '~> 1.0'
|
41
|
-
gem 'rspec-legacy_formatters'
|
42
|
-
gem 'rspec_html_formatter'
|
43
|
-
end
|
44
|
-
|
45
|
-
```
|
46
|
-
|
47
|
-
Then use it at the command line:
|
48
|
-
|
49
|
-
```
|
50
|
-
rspec --require rspec/legacy_formatters -f RspecHtmlFormatter spec
|
51
|
-
```
|
52
|
-
It will probably throw out some deprecation warnings. Sorry. I will probably make a version of this reporting specifically for rspec 3.0.0 and onwards at some point.
|
53
|
-
|
54
|
-
|
55
37
|
![example overview report]
|
56
38
|
(https://raw.githubusercontent.com/kingsleyh/rspec_reports_formatter/master/.README/rspec_reports_overview.png)
|
57
39
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0
|
1
|
+
0.3.0
|
data/lib/rspec_html_formatter.rb
CHANGED
@@ -57,9 +57,9 @@ class Example
|
|
57
57
|
@description = example.description
|
58
58
|
@full_description = example.full_description
|
59
59
|
@execution_result = example.execution_result
|
60
|
-
@run_time = (@execution_result
|
61
|
-
@duration = @execution_result
|
62
|
-
@status = @execution_result
|
60
|
+
@run_time = (@execution_result.run_time).round(5)
|
61
|
+
@duration = @execution_result.run_time.to_s(:rounded, precision: 5)
|
62
|
+
@status = @execution_result.status.to_s
|
63
63
|
@metadata = example.metadata
|
64
64
|
@file_path = @metadata[:file_path]
|
65
65
|
@exception = Oopsy.new(example.exception, @file_path)
|
@@ -111,6 +111,8 @@ end
|
|
111
111
|
|
112
112
|
class RspecHtmlFormatter < RSpec::Core::Formatters::BaseFormatter
|
113
113
|
|
114
|
+
RSpec::Core::Formatters.register self, :example_started, :example_passed, :example_failed, :example_pending, :example_group_finished
|
115
|
+
|
114
116
|
REPORT_PATH = './rspec_html_reports'
|
115
117
|
|
116
118
|
def initialize(io_standard_out)
|
@@ -120,7 +122,7 @@ class RspecHtmlFormatter < RSpec::Core::Formatters::BaseFormatter
|
|
120
122
|
@all_groups = {}
|
121
123
|
end
|
122
124
|
|
123
|
-
def example_group_started(
|
125
|
+
def example_group_started(notification)
|
124
126
|
@example_group = {}
|
125
127
|
@group_examples = []
|
126
128
|
@group_example_count = 0
|
@@ -129,27 +131,27 @@ class RspecHtmlFormatter < RSpec::Core::Formatters::BaseFormatter
|
|
129
131
|
@group_example_pending_count = 0
|
130
132
|
end
|
131
133
|
|
132
|
-
def example_started(
|
134
|
+
def example_started(notification)
|
133
135
|
@group_example_count += 1
|
134
136
|
end
|
135
137
|
|
136
|
-
def example_passed(
|
138
|
+
def example_passed(notification)
|
137
139
|
@group_example_success_count += 1
|
138
|
-
@group_examples << Example.new(example)
|
140
|
+
@group_examples << Example.new(notification.example)
|
139
141
|
end
|
140
142
|
|
141
|
-
def example_failed(
|
143
|
+
def example_failed(notification)
|
142
144
|
@group_example_failure_count += 1
|
143
|
-
@group_examples << Example.new(example)
|
145
|
+
@group_examples << Example.new(notification.example)
|
144
146
|
end
|
145
147
|
|
146
|
-
def example_pending(
|
148
|
+
def example_pending(notification)
|
147
149
|
@group_example_pending_count += 1
|
148
|
-
@group_examples << Example.new(example)
|
150
|
+
@group_examples << Example.new(notification.example)
|
149
151
|
end
|
150
152
|
|
151
|
-
def example_group_finished(
|
152
|
-
File.open("#{REPORT_PATH}/#{
|
153
|
+
def example_group_finished(notification)
|
154
|
+
File.open("#{REPORT_PATH}/#{notification.group.description.parameterize}.html", 'w') do |f|
|
153
155
|
|
154
156
|
@passed = @group_example_success_count
|
155
157
|
@failed = @group_example_failure_count
|
@@ -163,7 +165,7 @@ class RspecHtmlFormatter < RSpec::Core::Formatters::BaseFormatter
|
|
163
165
|
duration_keys = duration_keys << 1
|
164
166
|
end
|
165
167
|
|
166
|
-
@title =
|
168
|
+
@title = notification.group.description
|
167
169
|
@durations = duration_keys.zip(duration_values)
|
168
170
|
@summary_duration = duration_values.inject(0) { |sum, i| sum + i }.to_s(:rounded, precision: 5)
|
169
171
|
@examples = Specify.new(@group_examples).process
|
@@ -171,8 +173,8 @@ class RspecHtmlFormatter < RSpec::Core::Formatters::BaseFormatter
|
|
171
173
|
class_map = {passed: 'success', failed: 'danger', pending: 'warning'}
|
172
174
|
statuses = @examples.map { |e| e.status }
|
173
175
|
status = statuses.include?('failed') ? 'failed' : (statuses.include?('passed') ? 'passed' : 'pending')
|
174
|
-
@all_groups[
|
175
|
-
group:
|
176
|
+
@all_groups[notification.group.description.parameterize] = {
|
177
|
+
group: notification.group.description,
|
176
178
|
examples: @examples.size,
|
177
179
|
status: status,
|
178
180
|
klass: class_map[status.to_sym],
|
@@ -190,7 +192,7 @@ class RspecHtmlFormatter < RSpec::Core::Formatters::BaseFormatter
|
|
190
192
|
|
191
193
|
end
|
192
194
|
|
193
|
-
def close
|
195
|
+
def close(notification)
|
194
196
|
File.open("#{REPORT_PATH}/overview.html", 'w') do |f|
|
195
197
|
@overview = @all_groups
|
196
198
|
|
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: rspec_html_formatter 0.0
|
5
|
+
# stub: rspec_html_formatter 0.2.0 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "rspec_html_formatter"
|
9
|
-
s.version = "0.0
|
9
|
+
s.version = "0.2.0"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["Kingsley Hendrickse"]
|
14
|
-
s.date = "2014-08-
|
14
|
+
s.date = "2014-08-03"
|
15
15
|
s.description = "Rspec custom formatter to generate pretty html results"
|
16
16
|
s.email = "kingsleyhendrickse@me.com"
|
17
17
|
s.extra_rdoc_files = [
|
@@ -22,9 +22,6 @@ Gem::Specification.new do |s|
|
|
22
22
|
".README/rspec_reports_overview.png",
|
23
23
|
".README/rspec_reports_report.png",
|
24
24
|
".document",
|
25
|
-
".idea/rspec_html_formatter.iml",
|
26
|
-
".idea/scopes/scope_settings.xml",
|
27
|
-
".idea/workspace.xml",
|
28
25
|
".rspec",
|
29
26
|
"Gemfile",
|
30
27
|
"Gemfile.lock",
|
data/spec/penders_spec.rb
CHANGED
data/spec/test2_spec.rb
CHANGED
@@ -5,22 +5,23 @@ describe 'The second Test' do
|
|
5
5
|
|
6
6
|
it 'should do cool test stuff' do
|
7
7
|
pending('coming soon')
|
8
|
+
fail
|
8
9
|
end
|
9
10
|
|
10
11
|
it 'should do amazing test stuff' do
|
11
|
-
'boats'.
|
12
|
+
expect('boats').to eq 'boats'
|
12
13
|
end
|
13
14
|
|
14
15
|
it 'should do superb test stuff' do
|
15
16
|
#-> Given there are some ships
|
16
17
|
#-> When I sail one
|
17
18
|
#-> Then it should go fast
|
18
|
-
'ships'.
|
19
|
+
expect('ships').to eq 'ships'
|
19
20
|
end
|
20
21
|
|
21
22
|
it 'should do example stuff' do
|
22
|
-
'apple'.
|
23
|
-
'pear'.
|
23
|
+
expect('apple').to eq 'apple'
|
24
|
+
expect('pear').to eq 1
|
24
25
|
#-> Given I have some stuff to do
|
25
26
|
#-> And I like to do is wait here for a while
|
26
27
|
#-> Then I do it real good!!
|
@@ -28,28 +29,29 @@ describe 'The second Test' do
|
|
28
29
|
|
29
30
|
it 'should do very cool test stuff' do
|
30
31
|
#-> Given I have some cars
|
31
|
-
'cars'.
|
32
|
+
expect('cars').to eq 'cars'
|
32
33
|
#-> And I drive one of them
|
33
|
-
'diesel'.
|
34
|
+
expect('diesel').to eq 'diesels'
|
34
35
|
#-> Then I should go fast
|
35
|
-
'apple'.
|
36
|
+
expect('apple').to eq 'apple'
|
36
37
|
end
|
37
38
|
|
38
39
|
it 'should do very amazing test stuff' do
|
39
|
-
'boats'.
|
40
|
+
expect('boats').to eq 'boats'
|
40
41
|
end
|
41
42
|
|
42
43
|
it 'should do very superb test stuff' do
|
43
|
-
'ships'.
|
44
|
+
expect('ships').to eq 'ships'
|
44
45
|
end
|
45
46
|
|
46
47
|
it 'should do very rawesome test stuff' do
|
47
48
|
#-> Given I have some cars
|
48
49
|
pending('give me a woop')
|
50
|
+
fail
|
49
51
|
end
|
50
52
|
|
51
53
|
it 'should do insane and cool test stuff' do
|
52
|
-
'ships'.
|
54
|
+
expect('ships').to eq 'ships'
|
53
55
|
end
|
54
56
|
|
55
57
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec_html_formatter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kingsley Hendrickse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-core
|
@@ -119,9 +119,6 @@ files:
|
|
119
119
|
- ".README/rspec_reports_overview.png"
|
120
120
|
- ".README/rspec_reports_report.png"
|
121
121
|
- ".document"
|
122
|
-
- ".idea/rspec_html_formatter.iml"
|
123
|
-
- ".idea/scopes/scope_settings.xml"
|
124
|
-
- ".idea/workspace.xml"
|
125
122
|
- ".rspec"
|
126
123
|
- Gemfile
|
127
124
|
- Gemfile.lock
|
@@ -1,49 +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="Ruby 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="jdk" jdkName="RVM: ruby-2.1.0" jdkType="RUBY_SDK" />
|
15
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="activesupport (v4.1.4, RVM: ruby-2.1.0) [gem]" level="application" />
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.3.6, RVM: ruby-2.1.0) [gem]" level="application" />
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.2, RVM: ruby-2.1.0) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.6.2, RVM: ruby-2.1.0) [gem]" level="application" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="descendants_tracker (v0.0.4, RVM: ruby-2.1.0) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.1.3, RVM: ruby-2.1.0) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="faraday (v0.9.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="git (v1.2.8, RVM: ruby-2.1.0) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="github_api (v0.12.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="hashie (v3.2.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
26
|
-
<orderEntry type="library" scope="PROVIDED" name="highline (v1.6.21, RVM: ruby-2.1.0) [gem]" level="application" />
|
27
|
-
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.6.11, RVM: ruby-2.1.0) [gem]" level="application" />
|
28
|
-
<orderEntry type="library" scope="PROVIDED" name="jeweler (v2.0.1, RVM: ruby-2.1.0) [gem]" level="application" />
|
29
|
-
<orderEntry type="library" scope="PROVIDED" name="jwt (v1.0.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
30
|
-
<orderEntry type="library" scope="PROVIDED" name="mini_portile (v0.6.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
31
|
-
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.4.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
32
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.10.1, RVM: ruby-2.1.0) [gem]" level="application" />
|
33
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_xml (v0.5.5, RVM: ruby-2.1.0) [gem]" level="application" />
|
34
|
-
<orderEntry type="library" scope="PROVIDED" name="multipart-post (v2.0.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
35
|
-
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.6.3.1, RVM: ruby-2.1.0) [gem]" level="application" />
|
36
|
-
<orderEntry type="library" scope="PROVIDED" name="oauth2 (v1.0.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
37
|
-
<orderEntry type="library" scope="PROVIDED" name="rack (v1.5.2, RVM: ruby-2.1.0) [gem]" level="application" />
|
38
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.3.2, RVM: ruby-2.1.0) [gem]" level="application" />
|
39
|
-
<orderEntry type="library" scope="PROVIDED" name="rdoc (v3.12.2, RVM: ruby-2.1.0) [gem]" level="application" />
|
40
|
-
<orderEntry type="library" scope="PROVIDED" name="rouge (v1.6.1, RVM: ruby-2.1.0) [gem]" level="application" />
|
41
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec (v2.8.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
42
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v2.8.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
43
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v2.8.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
44
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v2.8.0, RVM: ruby-2.1.0) [gem]" level="application" />
|
45
|
-
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.4, RVM: ruby-2.1.0) [gem]" level="application" />
|
46
|
-
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.1, RVM: ruby-2.1.0) [gem]" level="application" />
|
47
|
-
</component>
|
48
|
-
</module>
|
49
|
-
|
data/.idea/workspace.xml
DELETED
@@ -1,691 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="199a381f-a9d9-4f90-a9ad-740dfdff291e" name="Default" comment="">
|
5
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Rakefile" afterPath="$PROJECT_DIR$/Rakefile" />
|
6
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/VERSION" afterPath="$PROJECT_DIR$/VERSION" />
|
7
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
8
|
-
</list>
|
9
|
-
<ignored path="rspec_html_formatter.iws" />
|
10
|
-
<ignored path=".idea/workspace.xml" />
|
11
|
-
<option name="TRACKING_ENABLED" value="true" />
|
12
|
-
<option name="SHOW_DIALOG" value="false" />
|
13
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
14
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
15
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
16
|
-
</component>
|
17
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
18
|
-
<component name="CreatePatchCommitExecutor">
|
19
|
-
<option name="PATCH_PATH" value="" />
|
20
|
-
</component>
|
21
|
-
<component name="DaemonCodeAnalyzer">
|
22
|
-
<disable_hints />
|
23
|
-
</component>
|
24
|
-
<component name="FavoritesManager">
|
25
|
-
<favorites_list name="rspec_html_formatter" />
|
26
|
-
</component>
|
27
|
-
<component name="FileEditorManager">
|
28
|
-
<leaf>
|
29
|
-
<file leaf-file-name="rspec_html_formatter.rb" pinned="false" current="false" current-in-tab="false">
|
30
|
-
<entry file="file://$PROJECT_DIR$/lib/rspec_html_formatter.rb">
|
31
|
-
<provider selected="true" editor-type-id="text-editor">
|
32
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="3585">
|
33
|
-
<caret line="20" column="95" selection-start-line="20" selection-start-column="95" selection-end-line="20" selection-end-column="95" />
|
34
|
-
<folding />
|
35
|
-
</state>
|
36
|
-
</provider>
|
37
|
-
</entry>
|
38
|
-
</file>
|
39
|
-
<file leaf-file-name="report.erb" pinned="false" current="false" current-in-tab="false">
|
40
|
-
<entry file="file://$PROJECT_DIR$/templates/report.erb">
|
41
|
-
<provider selected="true" editor-type-id="text-editor">
|
42
|
-
<state vertical-scroll-proportion="-17.125" vertical-offset="2094" max-vertical-offset="2865">
|
43
|
-
<caret line="167" column="37" selection-start-line="167" selection-start-column="31" selection-end-line="167" selection-end-column="37" />
|
44
|
-
<folding>
|
45
|
-
<marker date="1407008771000" expanded="true" signature="31:5631" placeholder="..." />
|
46
|
-
<marker date="1407008771000" expanded="true" signature="38:967" placeholder="..." />
|
47
|
-
<marker date="1407008771000" expanded="true" signature="456:641" placeholder="..." />
|
48
|
-
<marker date="1407008771000" expanded="true" signature="836:959" placeholder="..." />
|
49
|
-
<marker date="1407008771000" expanded="true" signature="846:882" placeholder="{...}" />
|
50
|
-
<marker date="1407008771000" expanded="true" signature="974:5623" placeholder="..." />
|
51
|
-
<marker date="1407008771000" expanded="true" signature="998:4707" placeholder="..." />
|
52
|
-
<marker date="1407008771000" expanded="true" signature="1040:1882" placeholder="..." />
|
53
|
-
<marker date="1407008771000" expanded="true" signature="1062:1873" placeholder="..." />
|
54
|
-
<marker date="1407008771000" expanded="true" signature="1092:1862" placeholder="..." />
|
55
|
-
<marker date="1407008771000" expanded="true" signature="1128:1849" placeholder="..." />
|
56
|
-
<marker date="1407008771000" expanded="true" signature="1174:1834" placeholder="..." />
|
57
|
-
<marker date="1407008771000" expanded="true" signature="1214:1587" placeholder="..." />
|
58
|
-
<marker date="1407008771000" expanded="true" signature="1338:1503" placeholder="..." />
|
59
|
-
<marker date="1407008771000" expanded="true" signature="1673:1816" placeholder="..." />
|
60
|
-
<marker date="1407008771000" expanded="true" signature="1715:1797" placeholder="..." />
|
61
|
-
<marker date="1407008771000" expanded="true" signature="1903:2021" placeholder="..." />
|
62
|
-
<marker date="1407008771000" expanded="true" signature="1931:2012" placeholder="..." />
|
63
|
-
<marker date="1407008771000" expanded="true" signature="1969:1983" placeholder="..." />
|
64
|
-
<marker date="1407008771000" expanded="true" signature="2042:2771" placeholder="..." />
|
65
|
-
<marker date="1407008771000" expanded="true" signature="2070:2401" placeholder="..." />
|
66
|
-
<marker date="1407008771000" expanded="true" signature="2111:2389" placeholder="..." />
|
67
|
-
<marker date="1407008771000" expanded="true" signature="2202:2376" placeholder="..." />
|
68
|
-
<marker date="1407008771000" expanded="true" signature="2429:2761" placeholder="..." />
|
69
|
-
<marker date="1407008771000" expanded="true" signature="2470:2749" placeholder="..." />
|
70
|
-
<marker date="1407008771000" expanded="true" signature="2561:2736" placeholder="..." />
|
71
|
-
<marker date="1407008771000" expanded="true" signature="2792:4699" placeholder="..." />
|
72
|
-
<marker date="1407008771000" expanded="true" signature="2821:4690" placeholder="..." />
|
73
|
-
<marker date="1407008771000" expanded="true" signature="2877:4678" placeholder="..." />
|
74
|
-
<marker date="1407008771000" expanded="true" signature="2893:3039" placeholder="..." />
|
75
|
-
<marker date="1407008771000" expanded="true" signature="2906:3022" placeholder="..." />
|
76
|
-
<marker date="1407008771000" expanded="true" signature="3055:4663" placeholder="..." />
|
77
|
-
<marker date="1407008771000" expanded="true" signature="3094:4644" placeholder="do ... end" />
|
78
|
-
<marker date="1407008771000" expanded="true" signature="3128:4628" placeholder="..." />
|
79
|
-
<marker date="1407008771000" expanded="true" signature="3181:4470" placeholder="..." />
|
80
|
-
<marker date="1407008771000" expanded="true" signature="3203:3781" placeholder="..." />
|
81
|
-
<marker date="1407008771000" expanded="true" signature="3226:3756" placeholder="if ... end" />
|
82
|
-
<marker date="1407008771000" expanded="true" signature="3321:3647" placeholder="..." />
|
83
|
-
<marker date="1407008771000" expanded="true" signature="3373:3492" placeholder="..." />
|
84
|
-
<marker date="1407008771000" expanded="true" signature="3541:3618" placeholder="..." />
|
85
|
-
<marker date="1407008771000" expanded="true" signature="3803:4450" placeholder="..." />
|
86
|
-
<marker date="1407008771000" expanded="true" signature="3826:4425" placeholder="if ... end" />
|
87
|
-
<marker date="1407008771000" expanded="true" signature="3909:4398" placeholder="..." />
|
88
|
-
<marker date="1407008771000" expanded="true" signature="3961:4078" placeholder="..." />
|
89
|
-
<marker date="1407008771000" expanded="true" signature="4127:4369" placeholder="..." />
|
90
|
-
<marker date="1407008771000" expanded="true" signature="4740:5613" placeholder="..." />
|
91
|
-
<marker date="1407008771000" expanded="true" signature="4834:4950" placeholder="[...]" />
|
92
|
-
</folding>
|
93
|
-
</state>
|
94
|
-
</provider>
|
95
|
-
</entry>
|
96
|
-
</file>
|
97
|
-
<file leaf-file-name="overview.erb" pinned="false" current="false" current-in-tab="false">
|
98
|
-
<entry file="file://$PROJECT_DIR$/templates/overview.erb">
|
99
|
-
<provider selected="true" editor-type-id="text-editor">
|
100
|
-
<state vertical-scroll-proportion="-17.75" vertical-offset="534" max-vertical-offset="2445">
|
101
|
-
<caret line="64" column="74" selection-start-line="64" selection-start-column="74" selection-end-line="64" selection-end-column="74" />
|
102
|
-
<folding>
|
103
|
-
<marker date="1407008224000" expanded="true" signature="31:4592" placeholder="..." />
|
104
|
-
<marker date="1407008224000" expanded="true" signature="38:962" placeholder="..." />
|
105
|
-
<marker date="1407008224000" expanded="true" signature="451:636" placeholder="..." />
|
106
|
-
<marker date="1407008224000" expanded="true" signature="831:954" placeholder="..." />
|
107
|
-
<marker date="1407008224000" expanded="true" signature="841:877" placeholder="{...}" />
|
108
|
-
<marker date="1407008224000" expanded="true" signature="969:4584" placeholder="..." />
|
109
|
-
<marker date="1407008224000" expanded="true" signature="993:3668" placeholder="..." />
|
110
|
-
<marker date="1407008224000" expanded="true" signature="1035:1647" placeholder="..." />
|
111
|
-
<marker date="1407008224000" expanded="true" signature="1057:1638" placeholder="..." />
|
112
|
-
<marker date="1407008224000" expanded="true" signature="1087:1627" placeholder="..." />
|
113
|
-
<marker date="1407008224000" expanded="true" signature="1123:1614" placeholder="..." />
|
114
|
-
<marker date="1407008224000" expanded="true" signature="1169:1599" placeholder="..." />
|
115
|
-
<marker date="1407008224000" expanded="true" signature="1209:1582" placeholder="..." />
|
116
|
-
<marker date="1407008224000" expanded="true" signature="1333:1498" placeholder="..." />
|
117
|
-
<marker date="1407008224000" expanded="true" signature="1668:1781" placeholder="..." />
|
118
|
-
<marker date="1407008224000" expanded="true" signature="1696:1772" placeholder="..." />
|
119
|
-
<marker date="1407008224000" expanded="true" signature="1734:1748" placeholder="..." />
|
120
|
-
<marker date="1407008224000" expanded="true" signature="1802:2529" placeholder="..." />
|
121
|
-
<marker date="1407008224000" expanded="true" signature="1830:2159" placeholder="..." />
|
122
|
-
<marker date="1407008224000" expanded="true" signature="1871:2147" placeholder="..." />
|
123
|
-
<marker date="1407008224000" expanded="true" signature="1959:2134" placeholder="..." />
|
124
|
-
<marker date="1407008224000" expanded="true" signature="2187:2519" placeholder="..." />
|
125
|
-
<marker date="1407008224000" expanded="true" signature="2228:2507" placeholder="..." />
|
126
|
-
<marker date="1407008224000" expanded="true" signature="2319:2494" placeholder="..." />
|
127
|
-
<marker date="1407008224000" expanded="true" signature="2550:3660" placeholder="..." />
|
128
|
-
<marker date="1407008224000" expanded="true" signature="2579:3651" placeholder="..." />
|
129
|
-
<marker date="1407008224000" expanded="true" signature="2635:3639" placeholder="..." />
|
130
|
-
<marker date="1407008224000" expanded="true" signature="2651:2921" placeholder="..." />
|
131
|
-
<marker date="1407008224000" expanded="true" signature="2664:2904" placeholder="..." />
|
132
|
-
<marker date="1407008224000" expanded="true" signature="2937:3624" placeholder="..." />
|
133
|
-
<marker date="1407008224000" expanded="true" signature="2985:3605" placeholder="do ... end" />
|
134
|
-
<marker date="1407008224000" expanded="true" signature="3025:3570" placeholder="..." />
|
135
|
-
<marker date="1407008224000" expanded="true" signature="3076:3170" placeholder="..." />
|
136
|
-
<marker date="1407008224000" expanded="true" signature="3701:4574" placeholder="..." />
|
137
|
-
<marker date="1407008224000" expanded="true" signature="3795:3911" placeholder="[...]" />
|
138
|
-
</folding>
|
139
|
-
</state>
|
140
|
-
</provider>
|
141
|
-
</entry>
|
142
|
-
</file>
|
143
|
-
<file leaf-file-name="rspec_html_formatter_spec.rb" pinned="false" current="false" current-in-tab="false">
|
144
|
-
<entry file="file://$PROJECT_DIR$/spec/rspec_html_formatter_spec.rb">
|
145
|
-
<provider selected="true" editor-type-id="text-editor">
|
146
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="240">
|
147
|
-
<caret line="7" column="0" selection-start-line="7" selection-start-column="0" selection-end-line="7" selection-end-column="0" />
|
148
|
-
<folding />
|
149
|
-
</state>
|
150
|
-
</provider>
|
151
|
-
</entry>
|
152
|
-
</file>
|
153
|
-
<file leaf-file-name="test2_spec.rb" pinned="false" current="false" current-in-tab="false">
|
154
|
-
<entry file="file://$PROJECT_DIR$/spec/test2_spec.rb">
|
155
|
-
<provider selected="true" editor-type-id="text-editor">
|
156
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="930">
|
157
|
-
<caret line="6" column="26" selection-start-line="6" selection-start-column="26" selection-end-line="6" selection-end-column="26" />
|
158
|
-
<folding>
|
159
|
-
<marker date="1407008989000" expanded="true" signature="93:1222" placeholder="do ... end" />
|
160
|
-
</folding>
|
161
|
-
</state>
|
162
|
-
</provider>
|
163
|
-
</entry>
|
164
|
-
</file>
|
165
|
-
<file leaf-file-name="README.md" pinned="false" current="false" current-in-tab="false">
|
166
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
167
|
-
<provider selected="true" editor-type-id="text-editor">
|
168
|
-
<state vertical-scroll-proportion="-29.0" vertical-offset="250" max-vertical-offset="1140">
|
169
|
-
<caret line="65" column="165" selection-start-line="65" selection-start-column="27" selection-end-line="65" selection-end-column="27" />
|
170
|
-
<folding />
|
171
|
-
</state>
|
172
|
-
</provider>
|
173
|
-
</entry>
|
174
|
-
</file>
|
175
|
-
<file leaf-file-name="rspec_html_formatter.gemspec" pinned="false" current="false" current-in-tab="false">
|
176
|
-
<entry file="file://$PROJECT_DIR$/rspec_html_formatter.gemspec">
|
177
|
-
<provider selected="true" editor-type-id="text-editor">
|
178
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1395">
|
179
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
180
|
-
<folding />
|
181
|
-
</state>
|
182
|
-
</provider>
|
183
|
-
</entry>
|
184
|
-
</file>
|
185
|
-
<file leaf-file-name="Rakefile" pinned="false" current="false" current-in-tab="false">
|
186
|
-
<entry file="file://$PROJECT_DIR$/Rakefile">
|
187
|
-
<provider selected="true" editor-type-id="text-editor">
|
188
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="37" max-vertical-offset="840">
|
189
|
-
<caret line="17" column="69" selection-start-line="17" selection-start-column="69" selection-end-line="17" selection-end-column="69" />
|
190
|
-
<folding />
|
191
|
-
</state>
|
192
|
-
</provider>
|
193
|
-
</entry>
|
194
|
-
</file>
|
195
|
-
<file leaf-file-name="VERSION" pinned="false" current="true" current-in-tab="true">
|
196
|
-
<entry file="file://$PROJECT_DIR$/VERSION">
|
197
|
-
<provider selected="true" editor-type-id="text-editor">
|
198
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="803">
|
199
|
-
<caret line="0" column="5" selection-start-line="0" selection-start-column="5" selection-end-line="0" selection-end-column="5" />
|
200
|
-
<folding />
|
201
|
-
</state>
|
202
|
-
</provider>
|
203
|
-
</entry>
|
204
|
-
</file>
|
205
|
-
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
206
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
207
|
-
<provider selected="true" editor-type-id="text-editor">
|
208
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="300">
|
209
|
-
<caret line="14" column="40" selection-start-line="14" selection-start-column="0" selection-end-line="14" selection-end-column="0" />
|
210
|
-
<folding />
|
211
|
-
</state>
|
212
|
-
</provider>
|
213
|
-
</entry>
|
214
|
-
</file>
|
215
|
-
</leaf>
|
216
|
-
</component>
|
217
|
-
<component name="FindManager">
|
218
|
-
<FindUsagesManager>
|
219
|
-
<setting name="OPEN_NEW_TAB" value="true" />
|
220
|
-
</FindUsagesManager>
|
221
|
-
</component>
|
222
|
-
<component name="Git.Settings">
|
223
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
224
|
-
</component>
|
225
|
-
<component name="IdeDocumentHistory">
|
226
|
-
<option name="changedFiles">
|
227
|
-
<list>
|
228
|
-
<option value="$PROJECT_DIR$/spec/penders_spec.rb" />
|
229
|
-
<option value="$PROJECT_DIR$/templates/overview.erb" />
|
230
|
-
<option value="$PROJECT_DIR$/spec/rspec_html_formatter_spec.rb" />
|
231
|
-
<option value="$PROJECT_DIR$/templates/report.erb" />
|
232
|
-
<option value="$PROJECT_DIR$/spec/test2_spec.rb" />
|
233
|
-
<option value="$PROJECT_DIR$/lib/rspec_html_formatter.rb" />
|
234
|
-
<option value="$PROJECT_DIR$/Gemfile" />
|
235
|
-
<option value="$PROJECT_DIR$/README.md" />
|
236
|
-
<option value="$PROJECT_DIR$/Rakefile" />
|
237
|
-
<option value="$PROJECT_DIR$/VERSION" />
|
238
|
-
</list>
|
239
|
-
</option>
|
240
|
-
</component>
|
241
|
-
<component name="ProjectFrameBounds">
|
242
|
-
<option name="x" value="569" />
|
243
|
-
<option name="y" value="106" />
|
244
|
-
<option name="width" value="1918" />
|
245
|
-
<option name="height" value="1305" />
|
246
|
-
</component>
|
247
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
248
|
-
<OptionsSetting value="true" id="Add" />
|
249
|
-
<OptionsSetting value="true" id="Remove" />
|
250
|
-
<OptionsSetting value="true" id="Checkout" />
|
251
|
-
<OptionsSetting value="true" id="Update" />
|
252
|
-
<OptionsSetting value="true" id="Status" />
|
253
|
-
<OptionsSetting value="true" id="Edit" />
|
254
|
-
<ConfirmationsSetting value="0" id="Add" />
|
255
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
256
|
-
</component>
|
257
|
-
<component name="ProjectReloadState">
|
258
|
-
<option name="STATE" value="0" />
|
259
|
-
</component>
|
260
|
-
<component name="ProjectView">
|
261
|
-
<navigator currentView="ProjectPane" proportions="" version="1">
|
262
|
-
<flattenPackages />
|
263
|
-
<showMembers />
|
264
|
-
<showModules />
|
265
|
-
<showLibraryContents />
|
266
|
-
<hideEmptyPackages />
|
267
|
-
<abbreviatePackageNames />
|
268
|
-
<autoscrollToSource />
|
269
|
-
<autoscrollFromSource />
|
270
|
-
<sortByType />
|
271
|
-
</navigator>
|
272
|
-
<panes>
|
273
|
-
<pane id="Scope" />
|
274
|
-
<pane id="ProjectPane">
|
275
|
-
<subPane>
|
276
|
-
<PATH>
|
277
|
-
<PATH_ELEMENT>
|
278
|
-
<option name="myItemId" value="rspec_html_formatter" />
|
279
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
280
|
-
</PATH_ELEMENT>
|
281
|
-
</PATH>
|
282
|
-
<PATH>
|
283
|
-
<PATH_ELEMENT>
|
284
|
-
<option name="myItemId" value="rspec_html_formatter" />
|
285
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
286
|
-
</PATH_ELEMENT>
|
287
|
-
<PATH_ELEMENT>
|
288
|
-
<option name="myItemId" value="rspec_html_formatter" />
|
289
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
290
|
-
</PATH_ELEMENT>
|
291
|
-
</PATH>
|
292
|
-
</subPane>
|
293
|
-
</pane>
|
294
|
-
</panes>
|
295
|
-
</component>
|
296
|
-
<component name="PropertiesComponent">
|
297
|
-
<property name="options.lastSelected" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
298
|
-
<property name="options.splitter.main.proportions" value="0.3" />
|
299
|
-
<property name="options.splitter.details.proportions" value="0.2" />
|
300
|
-
<property name="options.searchVisible" value="true" />
|
301
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
302
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
303
|
-
</component>
|
304
|
-
<component name="RecentsManager">
|
305
|
-
<key name="CopyFile.RECENT_KEYS">
|
306
|
-
<recent name="$PROJECT_DIR$/spec" />
|
307
|
-
<recent name="$PROJECT_DIR$/templates" />
|
308
|
-
<recent name="$PROJECT_DIR$" />
|
309
|
-
<recent name="$PROJECT_DIR$/resources" />
|
310
|
-
</key>
|
311
|
-
</component>
|
312
|
-
<component name="RunManager">
|
313
|
-
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
314
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
315
|
-
<module name="" />
|
316
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
317
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
318
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
319
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
320
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
321
|
-
<envs />
|
322
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
323
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
324
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
325
|
-
<COVERAGE_PATTERN ENABLED="true">
|
326
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
327
|
-
</COVERAGE_PATTERN>
|
328
|
-
</EXTENSION>
|
329
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
330
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
331
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
332
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
333
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
334
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
335
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
336
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
337
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
338
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
339
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
340
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
341
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
342
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
343
|
-
<method />
|
344
|
-
</configuration>
|
345
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
346
|
-
<module name="" />
|
347
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
348
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
349
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
350
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
351
|
-
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
352
|
-
<envs />
|
353
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
354
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
355
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
356
|
-
<COVERAGE_PATTERN ENABLED="true">
|
357
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
358
|
-
</COVERAGE_PATTERN>
|
359
|
-
</EXTENSION>
|
360
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
361
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
362
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
363
|
-
<method />
|
364
|
-
</configuration>
|
365
|
-
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
366
|
-
<method />
|
367
|
-
</configuration>
|
368
|
-
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
369
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
370
|
-
<module name="" />
|
371
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
372
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
373
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
374
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
375
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
376
|
-
<envs />
|
377
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
378
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
379
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
380
|
-
<COVERAGE_PATTERN ENABLED="true">
|
381
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
382
|
-
</COVERAGE_PATTERN>
|
383
|
-
</EXTENSION>
|
384
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
385
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
386
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
387
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
388
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
389
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
390
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
391
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
392
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
393
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
394
|
-
<method />
|
395
|
-
</configuration>
|
396
|
-
<list size="0" />
|
397
|
-
</component>
|
398
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
399
|
-
<component name="SvnConfiguration">
|
400
|
-
<configuration />
|
401
|
-
</component>
|
402
|
-
<component name="TaskManager">
|
403
|
-
<task active="true" id="Default" summary="Default task">
|
404
|
-
<changelist id="199a381f-a9d9-4f90-a9ad-740dfdff291e" name="Default" comment="" />
|
405
|
-
<created>1406925233469</created>
|
406
|
-
<updated>1406925233469</updated>
|
407
|
-
</task>
|
408
|
-
<servers />
|
409
|
-
</component>
|
410
|
-
<component name="ToolWindowManager">
|
411
|
-
<frame x="569" y="106" width="1918" height="1305" extended-state="0" />
|
412
|
-
<editor active="true" />
|
413
|
-
<layout>
|
414
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3292978" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
415
|
-
<window_info id="Changes" 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" />
|
416
|
-
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3292978" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
417
|
-
<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" />
|
418
|
-
<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="-1" side_tool="false" content_ui="tabs" />
|
419
|
-
<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" />
|
420
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.25" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
421
|
-
<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" />
|
422
|
-
<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="-1" side_tool="true" content_ui="tabs" />
|
423
|
-
<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="-1" side_tool="true" content_ui="tabs" />
|
424
|
-
<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" />
|
425
|
-
<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="-1" side_tool="false" content_ui="tabs" />
|
426
|
-
<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" />
|
427
|
-
<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" />
|
428
|
-
<window_info id="Find" 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" />
|
429
|
-
<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" />
|
430
|
-
<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" />
|
431
|
-
<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" />
|
432
|
-
<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" />
|
433
|
-
</layout>
|
434
|
-
</component>
|
435
|
-
<component name="Vcs.Log.UiProperties">
|
436
|
-
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
437
|
-
<collection />
|
438
|
-
</option>
|
439
|
-
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
440
|
-
<collection />
|
441
|
-
</option>
|
442
|
-
</component>
|
443
|
-
<component name="VcsContentAnnotationSettings">
|
444
|
-
<option name="myLimit" value="2678400000" />
|
445
|
-
</component>
|
446
|
-
<component name="VcsManagerConfiguration">
|
447
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
448
|
-
<option name="myTodoPanelSettings">
|
449
|
-
<TodoPanelSettings />
|
450
|
-
</option>
|
451
|
-
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="true" />
|
452
|
-
<option name="CHANGED_ON_SERVER_INTERVAL" value="5" />
|
453
|
-
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
|
454
|
-
</component>
|
455
|
-
<component name="XDebuggerManager">
|
456
|
-
<breakpoint-manager />
|
457
|
-
</component>
|
458
|
-
<component name="editorHistoryManager">
|
459
|
-
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.1.0/gems/rspec-core-3.0.2/lib/rspec/core/formatters.rb">
|
460
|
-
<provider selected="true" editor-type-id="text-editor">
|
461
|
-
<state vertical-scroll-proportion="0.3325031" vertical-offset="873" max-vertical-offset="3675">
|
462
|
-
<caret line="76" column="11" selection-start-line="76" selection-start-column="11" selection-end-line="76" selection-end-column="11" />
|
463
|
-
<folding />
|
464
|
-
</state>
|
465
|
-
</provider>
|
466
|
-
</entry>
|
467
|
-
<entry file="file://$PROJECT_DIR$/resources/bootstrap-3.2.0-dist/js/bootstrap.min.js">
|
468
|
-
<provider selected="true" editor-type-id="text-editor">
|
469
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="790">
|
470
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
471
|
-
<folding />
|
472
|
-
</state>
|
473
|
-
</provider>
|
474
|
-
</entry>
|
475
|
-
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.4/lib/active_support/number_helper/number_converter.rb">
|
476
|
-
<provider selected="true" editor-type-id="text-editor">
|
477
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="2820">
|
478
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
479
|
-
<folding />
|
480
|
-
</state>
|
481
|
-
</provider>
|
482
|
-
</entry>
|
483
|
-
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.4/lib/active_support/number_helper/number_to_rounded_converter.rb">
|
484
|
-
<provider selected="true" editor-type-id="text-editor">
|
485
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1455">
|
486
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
487
|
-
<folding />
|
488
|
-
</state>
|
489
|
-
</provider>
|
490
|
-
</entry>
|
491
|
-
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.4/lib/active_support/number_helper.rb">
|
492
|
-
<provider selected="true" editor-type-id="text-editor">
|
493
|
-
<state vertical-scroll-proportion="-16.884615" vertical-offset="2246" max-vertical-offset="5280">
|
494
|
-
<caret line="179" column="44" selection-start-line="179" selection-start-column="7" selection-end-line="179" selection-end-column="44" />
|
495
|
-
<folding />
|
496
|
-
</state>
|
497
|
-
</provider>
|
498
|
-
</entry>
|
499
|
-
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.4/lib/active_support/core_ext/numeric/conversions.rb">
|
500
|
-
<provider selected="true" editor-type-id="text-editor">
|
501
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="2115">
|
502
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
503
|
-
<folding />
|
504
|
-
</state>
|
505
|
-
</provider>
|
506
|
-
</entry>
|
507
|
-
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.1.0/gems/rspec-core-2.8.0/lib/rspec/core/formatters/base_formatter.rb">
|
508
|
-
<provider selected="true" editor-type-id="text-editor">
|
509
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="810" max-vertical-offset="2700">
|
510
|
-
<caret line="62" column="6" selection-start-line="62" selection-start-column="6" selection-end-line="64" selection-end-column="11" />
|
511
|
-
<folding />
|
512
|
-
</state>
|
513
|
-
</provider>
|
514
|
-
</entry>
|
515
|
-
<entry file="file://$PROJECT_DIR$/spec/penders_spec.rb">
|
516
|
-
<provider selected="true" editor-type-id="text-editor">
|
517
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="240">
|
518
|
-
<caret line="6" column="23" selection-start-line="6" selection-start-column="23" selection-end-line="6" selection-end-column="23" />
|
519
|
-
<folding />
|
520
|
-
</state>
|
521
|
-
</provider>
|
522
|
-
</entry>
|
523
|
-
<entry file="file://$PROJECT_DIR$/templates/overview.erb">
|
524
|
-
<provider selected="true" editor-type-id="text-editor">
|
525
|
-
<state vertical-scroll-proportion="-17.75" vertical-offset="534" max-vertical-offset="2445">
|
526
|
-
<caret line="64" column="74" selection-start-line="64" selection-start-column="74" selection-end-line="64" selection-end-column="74" />
|
527
|
-
<folding>
|
528
|
-
<marker date="1407008224000" expanded="true" signature="31:4592" placeholder="..." />
|
529
|
-
<marker date="1407008224000" expanded="true" signature="38:962" placeholder="..." />
|
530
|
-
<marker date="1407008224000" expanded="true" signature="451:636" placeholder="..." />
|
531
|
-
<marker date="1407008224000" expanded="true" signature="831:954" placeholder="..." />
|
532
|
-
<marker date="1407008224000" expanded="true" signature="841:877" placeholder="{...}" />
|
533
|
-
<marker date="1407008224000" expanded="true" signature="969:4584" placeholder="..." />
|
534
|
-
<marker date="1407008224000" expanded="true" signature="993:3668" placeholder="..." />
|
535
|
-
<marker date="1407008224000" expanded="true" signature="1035:1647" placeholder="..." />
|
536
|
-
<marker date="1407008224000" expanded="true" signature="1057:1638" placeholder="..." />
|
537
|
-
<marker date="1407008224000" expanded="true" signature="1087:1627" placeholder="..." />
|
538
|
-
<marker date="1407008224000" expanded="true" signature="1123:1614" placeholder="..." />
|
539
|
-
<marker date="1407008224000" expanded="true" signature="1169:1599" placeholder="..." />
|
540
|
-
<marker date="1407008224000" expanded="true" signature="1209:1582" placeholder="..." />
|
541
|
-
<marker date="1407008224000" expanded="true" signature="1333:1498" placeholder="..." />
|
542
|
-
<marker date="1407008224000" expanded="true" signature="1668:1781" placeholder="..." />
|
543
|
-
<marker date="1407008224000" expanded="true" signature="1696:1772" placeholder="..." />
|
544
|
-
<marker date="1407008224000" expanded="true" signature="1734:1748" placeholder="..." />
|
545
|
-
<marker date="1407008224000" expanded="true" signature="1802:2529" placeholder="..." />
|
546
|
-
<marker date="1407008224000" expanded="true" signature="1830:2159" placeholder="..." />
|
547
|
-
<marker date="1407008224000" expanded="true" signature="1871:2147" placeholder="..." />
|
548
|
-
<marker date="1407008224000" expanded="true" signature="1959:2134" placeholder="..." />
|
549
|
-
<marker date="1407008224000" expanded="true" signature="2187:2519" placeholder="..." />
|
550
|
-
<marker date="1407008224000" expanded="true" signature="2228:2507" placeholder="..." />
|
551
|
-
<marker date="1407008224000" expanded="true" signature="2319:2494" placeholder="..." />
|
552
|
-
<marker date="1407008224000" expanded="true" signature="2550:3660" placeholder="..." />
|
553
|
-
<marker date="1407008224000" expanded="true" signature="2579:3651" placeholder="..." />
|
554
|
-
<marker date="1407008224000" expanded="true" signature="2635:3639" placeholder="..." />
|
555
|
-
<marker date="1407008224000" expanded="true" signature="2651:2921" placeholder="..." />
|
556
|
-
<marker date="1407008224000" expanded="true" signature="2664:2904" placeholder="..." />
|
557
|
-
<marker date="1407008224000" expanded="true" signature="2937:3624" placeholder="..." />
|
558
|
-
<marker date="1407008224000" expanded="true" signature="2985:3605" placeholder="do ... end" />
|
559
|
-
<marker date="1407008224000" expanded="true" signature="3025:3570" placeholder="..." />
|
560
|
-
<marker date="1407008224000" expanded="true" signature="3076:3170" placeholder="..." />
|
561
|
-
<marker date="1407008224000" expanded="true" signature="3701:4574" placeholder="..." />
|
562
|
-
<marker date="1407008224000" expanded="true" signature="3795:3911" placeholder="[...]" />
|
563
|
-
</folding>
|
564
|
-
</state>
|
565
|
-
</provider>
|
566
|
-
</entry>
|
567
|
-
<entry file="file://$PROJECT_DIR$/spec/rspec_html_formatter_spec.rb">
|
568
|
-
<provider selected="true" editor-type-id="text-editor">
|
569
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="240">
|
570
|
-
<caret line="7" column="0" selection-start-line="7" selection-start-column="0" selection-end-line="7" selection-end-column="0" />
|
571
|
-
<folding />
|
572
|
-
</state>
|
573
|
-
</provider>
|
574
|
-
</entry>
|
575
|
-
<entry file="file://$PROJECT_DIR$/templates/report.erb">
|
576
|
-
<provider selected="true" editor-type-id="text-editor">
|
577
|
-
<state vertical-scroll-proportion="-17.125" vertical-offset="2094" max-vertical-offset="2865">
|
578
|
-
<caret line="167" column="37" selection-start-line="167" selection-start-column="31" selection-end-line="167" selection-end-column="37" />
|
579
|
-
<folding>
|
580
|
-
<marker date="1407008771000" expanded="true" signature="31:5631" placeholder="..." />
|
581
|
-
<marker date="1407008771000" expanded="true" signature="38:967" placeholder="..." />
|
582
|
-
<marker date="1407008771000" expanded="true" signature="456:641" placeholder="..." />
|
583
|
-
<marker date="1407008771000" expanded="true" signature="836:959" placeholder="..." />
|
584
|
-
<marker date="1407008771000" expanded="true" signature="846:882" placeholder="{...}" />
|
585
|
-
<marker date="1407008771000" expanded="true" signature="974:5623" placeholder="..." />
|
586
|
-
<marker date="1407008771000" expanded="true" signature="998:4707" placeholder="..." />
|
587
|
-
<marker date="1407008771000" expanded="true" signature="1040:1882" placeholder="..." />
|
588
|
-
<marker date="1407008771000" expanded="true" signature="1062:1873" placeholder="..." />
|
589
|
-
<marker date="1407008771000" expanded="true" signature="1092:1862" placeholder="..." />
|
590
|
-
<marker date="1407008771000" expanded="true" signature="1128:1849" placeholder="..." />
|
591
|
-
<marker date="1407008771000" expanded="true" signature="1174:1834" placeholder="..." />
|
592
|
-
<marker date="1407008771000" expanded="true" signature="1214:1587" placeholder="..." />
|
593
|
-
<marker date="1407008771000" expanded="true" signature="1338:1503" placeholder="..." />
|
594
|
-
<marker date="1407008771000" expanded="true" signature="1673:1816" placeholder="..." />
|
595
|
-
<marker date="1407008771000" expanded="true" signature="1715:1797" placeholder="..." />
|
596
|
-
<marker date="1407008771000" expanded="true" signature="1903:2021" placeholder="..." />
|
597
|
-
<marker date="1407008771000" expanded="true" signature="1931:2012" placeholder="..." />
|
598
|
-
<marker date="1407008771000" expanded="true" signature="1969:1983" placeholder="..." />
|
599
|
-
<marker date="1407008771000" expanded="true" signature="2042:2771" placeholder="..." />
|
600
|
-
<marker date="1407008771000" expanded="true" signature="2070:2401" placeholder="..." />
|
601
|
-
<marker date="1407008771000" expanded="true" signature="2111:2389" placeholder="..." />
|
602
|
-
<marker date="1407008771000" expanded="true" signature="2202:2376" placeholder="..." />
|
603
|
-
<marker date="1407008771000" expanded="true" signature="2429:2761" placeholder="..." />
|
604
|
-
<marker date="1407008771000" expanded="true" signature="2470:2749" placeholder="..." />
|
605
|
-
<marker date="1407008771000" expanded="true" signature="2561:2736" placeholder="..." />
|
606
|
-
<marker date="1407008771000" expanded="true" signature="2792:4699" placeholder="..." />
|
607
|
-
<marker date="1407008771000" expanded="true" signature="2821:4690" placeholder="..." />
|
608
|
-
<marker date="1407008771000" expanded="true" signature="2877:4678" placeholder="..." />
|
609
|
-
<marker date="1407008771000" expanded="true" signature="2893:3039" placeholder="..." />
|
610
|
-
<marker date="1407008771000" expanded="true" signature="2906:3022" placeholder="..." />
|
611
|
-
<marker date="1407008771000" expanded="true" signature="3055:4663" placeholder="..." />
|
612
|
-
<marker date="1407008771000" expanded="true" signature="3094:4644" placeholder="do ... end" />
|
613
|
-
<marker date="1407008771000" expanded="true" signature="3128:4628" placeholder="..." />
|
614
|
-
<marker date="1407008771000" expanded="true" signature="3181:4470" placeholder="..." />
|
615
|
-
<marker date="1407008771000" expanded="true" signature="3203:3781" placeholder="..." />
|
616
|
-
<marker date="1407008771000" expanded="true" signature="3226:3756" placeholder="if ... end" />
|
617
|
-
<marker date="1407008771000" expanded="true" signature="3321:3647" placeholder="..." />
|
618
|
-
<marker date="1407008771000" expanded="true" signature="3373:3492" placeholder="..." />
|
619
|
-
<marker date="1407008771000" expanded="true" signature="3541:3618" placeholder="..." />
|
620
|
-
<marker date="1407008771000" expanded="true" signature="3803:4450" placeholder="..." />
|
621
|
-
<marker date="1407008771000" expanded="true" signature="3826:4425" placeholder="if ... end" />
|
622
|
-
<marker date="1407008771000" expanded="true" signature="3909:4398" placeholder="..." />
|
623
|
-
<marker date="1407008771000" expanded="true" signature="3961:4078" placeholder="..." />
|
624
|
-
<marker date="1407008771000" expanded="true" signature="4127:4369" placeholder="..." />
|
625
|
-
<marker date="1407008771000" expanded="true" signature="4740:5613" placeholder="..." />
|
626
|
-
<marker date="1407008771000" expanded="true" signature="4834:4950" placeholder="[...]" />
|
627
|
-
</folding>
|
628
|
-
</state>
|
629
|
-
</provider>
|
630
|
-
</entry>
|
631
|
-
<entry file="file://$PROJECT_DIR$/spec/test2_spec.rb">
|
632
|
-
<provider selected="true" editor-type-id="text-editor">
|
633
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="930">
|
634
|
-
<caret line="6" column="26" selection-start-line="6" selection-start-column="26" selection-end-line="6" selection-end-column="26" />
|
635
|
-
<folding>
|
636
|
-
<marker date="1407008989000" expanded="true" signature="93:1222" placeholder="do ... end" />
|
637
|
-
</folding>
|
638
|
-
</state>
|
639
|
-
</provider>
|
640
|
-
</entry>
|
641
|
-
<entry file="file://$PROJECT_DIR$/rspec_html_formatter.gemspec">
|
642
|
-
<provider selected="true" editor-type-id="text-editor">
|
643
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1410">
|
644
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
645
|
-
<folding />
|
646
|
-
</state>
|
647
|
-
</provider>
|
648
|
-
</entry>
|
649
|
-
<entry file="file://$PROJECT_DIR$/lib/rspec_html_formatter.rb">
|
650
|
-
<provider selected="true" editor-type-id="text-editor">
|
651
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="3585">
|
652
|
-
<caret line="20" column="95" selection-start-line="20" selection-start-column="95" selection-end-line="20" selection-end-column="95" />
|
653
|
-
<folding />
|
654
|
-
</state>
|
655
|
-
</provider>
|
656
|
-
</entry>
|
657
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
658
|
-
<provider selected="true" editor-type-id="text-editor">
|
659
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="300">
|
660
|
-
<caret line="14" column="40" selection-start-line="14" selection-start-column="0" selection-end-line="14" selection-end-column="0" />
|
661
|
-
<folding />
|
662
|
-
</state>
|
663
|
-
</provider>
|
664
|
-
</entry>
|
665
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
666
|
-
<provider selected="true" editor-type-id="text-editor">
|
667
|
-
<state vertical-scroll-proportion="-29.0" vertical-offset="250" max-vertical-offset="1140">
|
668
|
-
<caret line="65" column="165" selection-start-line="65" selection-start-column="27" selection-end-line="65" selection-end-column="27" />
|
669
|
-
<folding />
|
670
|
-
</state>
|
671
|
-
</provider>
|
672
|
-
</entry>
|
673
|
-
<entry file="file://$PROJECT_DIR$/Rakefile">
|
674
|
-
<provider selected="true" editor-type-id="text-editor">
|
675
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="37" max-vertical-offset="840">
|
676
|
-
<caret line="17" column="69" selection-start-line="17" selection-start-column="69" selection-end-line="17" selection-end-column="69" />
|
677
|
-
<folding />
|
678
|
-
</state>
|
679
|
-
</provider>
|
680
|
-
</entry>
|
681
|
-
<entry file="file://$PROJECT_DIR$/VERSION">
|
682
|
-
<provider selected="true" editor-type-id="text-editor">
|
683
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="803">
|
684
|
-
<caret line="0" column="5" selection-start-line="0" selection-start-column="5" selection-end-line="0" selection-end-column="5" />
|
685
|
-
<folding />
|
686
|
-
</state>
|
687
|
-
</provider>
|
688
|
-
</entry>
|
689
|
-
</component>
|
690
|
-
</project>
|
691
|
-
|