specfactor 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +28 -2
- data/lib/e2e_module.rb +97 -0
- data/lib/specfac/version.rb +1 -1
- data/lib/specfac.rb +70 -25
- metadata +3 -9
- data/.idea/.rakeTasks +0 -7
- data/.idea/inspectionProfiles/Project_Default.xml +0 -6
- data/.idea/misc.xml +0 -7
- data/.idea/modules.xml +0 -8
- data/.idea/specfac.iml +0 -26
- data/.idea/vcs.xml +0 -6
- data/.idea/workspace.xml +0 -517
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01a13f3f2f64bd2403f39348c65aa0b323d27944b580a433e2413d5b79b9e16b
|
4
|
+
data.tar.gz: 7c399d1104c9c5ec0aecaa2d8a029c35fb64badb75ff1e9b46efa7de4dc916eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e518dc8d7f4d3d1386d96e4467e652f42425b6e5e3d0d7e01d0f93be40c2e74d401088a6577fcab8a842f2f959085cb22f33289427ca9080de2202d60abd86b2
|
7
|
+
data.tar.gz: c01ffc8b9f818f18c9fe3f08af325079917e98276392c6c72bbec43d72a0219df41094b713d973b2ba2cc90dc41897a065af42f657ddcb70adecc68c2d7c1c9a
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -31,7 +31,11 @@ Or install it yourself as:
|
|
31
31
|
|
32
32
|
In terminal, type:
|
33
33
|
|
34
|
-
specfac generate
|
34
|
+
specfac generate -options <controller> <actions>
|
35
|
+
|
36
|
+
or
|
37
|
+
|
38
|
+
specfac g -options <controller> <actions>
|
35
39
|
|
36
40
|
__[controller]__ should be the name of the controller you'd like to generate tests for
|
37
41
|
|
@@ -43,14 +47,36 @@ An example usage for specific tests:
|
|
43
47
|
|
44
48
|
An example for all available tests:
|
45
49
|
|
46
|
-
specfac
|
50
|
+
specfac g participants ALL
|
47
51
|
|
48
52
|
An example generating a FactoryBot factory for the controller:
|
49
53
|
|
50
54
|
specfac generate -f dogs ALL
|
51
55
|
|
56
|
+
An example generating Capybara End-to-End/Feature tests for the controller:
|
57
|
+
|
58
|
+
specfac g -e cats ALL
|
59
|
+
|
60
|
+
Or generate both E2E tests and the Factory:
|
61
|
+
|
62
|
+
specfac g -f -e dragons index show
|
63
|
+
|
52
64
|
Currently, tests can be generated for :index, :show, :new, :create, :edit, :update, and :destroy.
|
53
65
|
|
66
|
+
## Other Commands
|
67
|
+
|
68
|
+
To generate configuration settings for DatabaseCleaner and FactoryBot:
|
69
|
+
|
70
|
+
specfac setup factory_bot
|
71
|
+
|
72
|
+
specfac setup database_cleaner
|
73
|
+
|
74
|
+
To print the version number for Specfactor:
|
75
|
+
|
76
|
+
specfac -v
|
77
|
+
|
78
|
+
specfac --version
|
79
|
+
|
54
80
|
## Contributing
|
55
81
|
|
56
82
|
Bug reports and pull requests are welcome on GitHub at https://github.com/viktharien/specfacthor.
|
data/lib/e2e_module.rb
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'specfac_utils'
|
2
|
+
|
3
|
+
module E2eModule
|
4
|
+
#end to end testing
|
5
|
+
|
6
|
+
def self.index
|
7
|
+
"describe 'index' do
|
8
|
+
before do
|
9
|
+
visit #{Utils.pl}_path
|
10
|
+
end
|
11
|
+
it 'can be reached successfully' do
|
12
|
+
expect(page.status_code).to eq(200)
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'has a title of #{Utils.si}s' do
|
16
|
+
expect(page).to have_content('#{Utils.si}s')
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'has a list of #{Utils.si}s' do
|
20
|
+
create(:#{Utils.si})
|
21
|
+
create(:second_#{Utils.si})
|
22
|
+
visit #{Utils.si}s_path
|
23
|
+
expect(page).to have_content(#{Utils.si_ca}) # change this
|
24
|
+
end
|
25
|
+
end"
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.show
|
29
|
+
"describe 'show' do
|
30
|
+
before do
|
31
|
+
@#{Utils.si} = create(:#{Utils.si})
|
32
|
+
visit #{Utils.si}_path(@#{Utils.si})
|
33
|
+
end
|
34
|
+
it 'has a show page that can be reached' do
|
35
|
+
expect(page.status_code).to eq(200)
|
36
|
+
end
|
37
|
+
it 'has content' do
|
38
|
+
# expect(page).to have_content('Content')
|
39
|
+
end
|
40
|
+
end"
|
41
|
+
end
|
42
|
+
|
43
|
+
def self.new
|
44
|
+
"describe 'new' do
|
45
|
+
before do
|
46
|
+
visit new_#{Utils.si}_path
|
47
|
+
end
|
48
|
+
it 'has a new page that can be reached' do
|
49
|
+
expect(page.status_code).to eq(200)
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'can be created from new form page' do
|
53
|
+
# fill_in '#{Utils.si}[date]', with: '#{Date.today}'
|
54
|
+
# fill_in '#{Utils.si}[rationale]', with: 'Some Rationale'
|
55
|
+
#
|
56
|
+
# click_on 'Submit'
|
57
|
+
|
58
|
+
# expect(page).to have_content('Rationale')
|
59
|
+
end
|
60
|
+
end"
|
61
|
+
end
|
62
|
+
|
63
|
+
def self.create
|
64
|
+
|
65
|
+
end
|
66
|
+
|
67
|
+
def self.update
|
68
|
+
|
69
|
+
end
|
70
|
+
|
71
|
+
def self.destroy
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
|
76
|
+
def self.edit
|
77
|
+
"describe 'edit' do
|
78
|
+
before do
|
79
|
+
@#{Utils.si} = create(:#{Utils.si})
|
80
|
+
visit edit_#{Utils.si}_path(@#{Utils.si})
|
81
|
+
end
|
82
|
+
it 'has an edit page that can be reached' do
|
83
|
+
expect(page.status_code).to eq(200)
|
84
|
+
end
|
85
|
+
it 'can be edited' do
|
86
|
+
|
87
|
+
# fill_in '#{Utils.si}[date]', with: '#{Date.today}'
|
88
|
+
# fill_in '#{Utils.si}[rationale]', with: 'Edited Content'
|
89
|
+
#
|
90
|
+
# click_on 'Submit'
|
91
|
+
#
|
92
|
+
# expect(page).to have_content('Edited Content')
|
93
|
+
end
|
94
|
+
end"
|
95
|
+
end
|
96
|
+
|
97
|
+
end
|
data/lib/specfac/version.rb
CHANGED
data/lib/specfac.rb
CHANGED
@@ -4,26 +4,41 @@ require 'thor'
|
|
4
4
|
require 'spec_module'
|
5
5
|
require 'factory_module'
|
6
6
|
require 'support_module'
|
7
|
+
require 'e2e_module'
|
7
8
|
module Specfac
|
8
9
|
class CLI < Thor
|
9
10
|
include Utils
|
10
11
|
include SpecModule
|
11
12
|
include FactoryModule
|
12
13
|
include SupportModule
|
13
|
-
|
14
|
+
include E2eModule
|
15
|
+
|
16
|
+
attr_accessor :dir_support, :dir_controllers, :dir_factories, :dir_features, :working_dirs, :working_file, :available_methods
|
14
17
|
|
15
18
|
######### AVAILABLE COMMANDS
|
19
|
+
|
20
|
+
# desc "test_command", "a test command for testing"
|
21
|
+
# option :f, :type => :boolean
|
22
|
+
# option :e, :type => :boolean
|
23
|
+
# def test_command(*args)
|
24
|
+
# puts options
|
25
|
+
# puts args
|
26
|
+
# end
|
27
|
+
|
28
|
+
# -----
|
29
|
+
|
16
30
|
desc "generate [controller] [actions]", "Generates tests for specified actions. Separate actions with spaces."
|
17
31
|
method_option :aliases => "g"
|
18
|
-
option :f, :type => :boolean
|
32
|
+
option :f, :type => :boolean #factory
|
33
|
+
option :e, :type => :boolean #end to end tests
|
19
34
|
def generate(*args)
|
20
|
-
init_vars
|
35
|
+
init_vars(options)
|
21
36
|
|
22
37
|
controller = args.shift
|
23
38
|
actions = args
|
24
39
|
|
25
40
|
if controller
|
26
|
-
sanitize(controller, actions, options
|
41
|
+
sanitize(controller, actions, options)
|
27
42
|
else
|
28
43
|
puts "Please provide a controller name."
|
29
44
|
exit
|
@@ -44,7 +59,7 @@ module Specfac
|
|
44
59
|
def setup(*args)
|
45
60
|
init_vars
|
46
61
|
@working_file = "#{@dir_support}/specfac/config.rb"
|
47
|
-
args != nil ? args.each {|arg| opener("support", SupportModule.public_send(arg.to_sym))} : nil
|
62
|
+
args != nil ? args.each {|arg| opener("support", SupportModule.public_send(arg.to_sym), "a")} : nil
|
48
63
|
puts "Generating support: #{@working_file}"
|
49
64
|
sleep 1
|
50
65
|
puts "> completed"
|
@@ -54,14 +69,29 @@ module Specfac
|
|
54
69
|
#
|
55
70
|
|
56
71
|
no_commands do
|
57
|
-
def init_vars
|
58
|
-
@working_dirs = ["spec", "controllers", "factories", "support"]
|
72
|
+
def init_vars(options=nil)
|
73
|
+
@working_dirs = ["spec", "controllers", "factories", "support", "features"]
|
59
74
|
@dir_support = "#{@working_dirs[0]}/#{@working_dirs[3]}"
|
60
75
|
@dir_controllers = "#{@working_dirs[0]}/#{@working_dirs[1]}"
|
61
76
|
@dir_factories = "#{@working_dirs[0]}/#{@working_dirs[2]}"
|
77
|
+
@dir_features = "#{@working_dirs[0]}/#{@working_dirs[4]}"
|
62
78
|
@available_methods = SpecModule.methods(false).to_a.map {|item| item.to_s}
|
63
79
|
@working_file = nil
|
64
|
-
|
80
|
+
|
81
|
+
create_directories(@working_dirs[0])
|
82
|
+
|
83
|
+
if options
|
84
|
+
create_directories(@dir_controllers)
|
85
|
+
if options[:f]
|
86
|
+
create_directories(@dir_factories)
|
87
|
+
end
|
88
|
+
if options[:e]
|
89
|
+
create_directories(@dir_features)
|
90
|
+
end
|
91
|
+
else
|
92
|
+
create_directories(@dir_support, "#{@dir_support}/specfac")
|
93
|
+
end
|
94
|
+
|
65
95
|
end
|
66
96
|
|
67
97
|
def create_directories(*dirs)
|
@@ -74,43 +104,58 @@ module Specfac
|
|
74
104
|
# Spec tests
|
75
105
|
|
76
106
|
opener(
|
77
|
-
"
|
78
|
-
["require 'rails_helper'","RSpec.describe #{controller.capitalize}Controller, type: :controller do"]
|
107
|
+
"spec",
|
108
|
+
["require 'rails_helper'","RSpec.describe #{controller.capitalize}Controller, type: :controller do"],
|
109
|
+
"w"
|
79
110
|
)
|
80
111
|
|
81
112
|
Utils.define_utils_methods_params(controller)
|
82
|
-
actions != nil ? actions.each {|action| opener("
|
83
|
-
opener("end", "end")
|
113
|
+
actions != nil ? actions.each {|action| opener("tests", SpecModule.public_send(action.to_sym), "a")} : nil
|
114
|
+
opener("end", "end", "a")
|
84
115
|
|
85
116
|
# Factories
|
86
117
|
|
87
118
|
if options
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
119
|
+
if options[:f]
|
120
|
+
puts
|
121
|
+
@working_file = "#{@dir_factories}/#{Utils.pluralize(controller.downcase)}.rb"
|
122
|
+
opener("factory", FactoryModule.create, "w")
|
123
|
+
opener("end", nil, "a")
|
124
|
+
end
|
125
|
+
|
126
|
+
# end to end tests
|
127
|
+
|
128
|
+
if options[:e]
|
129
|
+
puts
|
130
|
+
@working_file = "#{@dir_features}/#{Utils.pluralize(controller.downcase)}_spec.rb"
|
131
|
+
opener("feature",
|
132
|
+
["require 'rails_helper'", "describe 'navigation' do"],
|
133
|
+
"w")
|
134
|
+
actions != nil ? actions.each {|action| opener("tests", E2eModule.public_send(action.to_sym), "a")} : nil
|
135
|
+
opener("end", "end", "a")
|
136
|
+
end
|
92
137
|
end
|
93
138
|
|
139
|
+
|
94
140
|
end
|
95
141
|
|
96
|
-
def opener(mode, lines)
|
142
|
+
def opener(mode, lines, open_type)
|
97
143
|
filer = lambda do |type, output|
|
98
144
|
File.open(@working_file, type) { |handle| handle.puts output}
|
99
145
|
end
|
100
|
-
|
101
|
-
|
102
|
-
|
146
|
+
|
147
|
+
if mode == "spec" || mode == "feature"
|
148
|
+
puts "Creating #{mode}: #{@working_file}."
|
149
|
+
filer.call(open_type, nil)
|
103
150
|
lines.each do |item|
|
104
151
|
filer.call("a", item)
|
105
152
|
end
|
106
|
-
elsif mode == "factory"
|
107
|
-
puts "Creating factory: #{@working_file}."
|
108
|
-
filer.call("w", lines)
|
109
153
|
elsif mode == "end"
|
110
154
|
puts "> completed"
|
111
|
-
filer.call(
|
155
|
+
filer.call(open_type, lines)
|
112
156
|
else
|
113
|
-
|
157
|
+
puts "Creating #{mode}: #{@working_file}"
|
158
|
+
filer.call(open_type, lines)
|
114
159
|
end
|
115
160
|
end
|
116
161
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: specfactor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- viktharien
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -89,13 +89,6 @@ extensions: []
|
|
89
89
|
extra_rdoc_files: []
|
90
90
|
files:
|
91
91
|
- ".gitignore"
|
92
|
-
- ".idea/.rakeTasks"
|
93
|
-
- ".idea/inspectionProfiles/Project_Default.xml"
|
94
|
-
- ".idea/misc.xml"
|
95
|
-
- ".idea/modules.xml"
|
96
|
-
- ".idea/specfac.iml"
|
97
|
-
- ".idea/vcs.xml"
|
98
|
-
- ".idea/workspace.xml"
|
99
92
|
- ".rspec"
|
100
93
|
- ".travis.yml"
|
101
94
|
- Gemfile
|
@@ -106,6 +99,7 @@ files:
|
|
106
99
|
- bin/console
|
107
100
|
- bin/setup
|
108
101
|
- exe/specfac
|
102
|
+
- lib/e2e_module.rb
|
109
103
|
- lib/factory_module.rb
|
110
104
|
- lib/spec_module.rb
|
111
105
|
- lib/specfac.rb
|
data/.idea/.rakeTasks
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
-
You are allowed to:
|
4
|
-
1. Remove rake task
|
5
|
-
2. Add existing rake tasks
|
6
|
-
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
-
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build specfac-0.1.0.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated files" fullCmd="clobber" taksId="clobber" /><RakeTask description="Build and install specfac-0.1.0.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install specfac-0.1.0.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v0.1.0 and build and push specfac-0.1.0.gem to TODO: Set to 'http://mygemserver.com'" fullCmd="release[remote]" taksId="release[remote]" /><RakeTask description="Run RSpec code examples" fullCmd="spec" taksId="spec" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
|
data/.idea/misc.xml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="JavaScriptSettings">
|
4
|
-
<option name="languageLevel" value="ES6" />
|
5
|
-
</component>
|
6
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.4.4" project-jdk-type="RUBY_SDK" />
|
7
|
-
</project>
|
data/.idea/modules.xml
DELETED
data/.idea/specfac.iml
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="ModuleRunConfigurationManager">
|
4
|
-
<shared />
|
5
|
-
</component>
|
6
|
-
<component name="NewModuleRootManager">
|
7
|
-
<content url="file://$MODULE_DIR$" />
|
8
|
-
<orderEntry type="inheritedJdk" />
|
9
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
-
<orderEntry type="library" scope="PROVIDED" name="activesupport (v5.2.1, RVM: ruby-2.4.4) [gem]" level="application" />
|
11
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.16.3, RVM: ruby-2.4.4) [gem]" level="application" />
|
12
|
-
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.0.5, RVM: ruby-2.4.4) [gem]" level="application" />
|
13
|
-
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.4.4) [gem]" level="application" />
|
14
|
-
<orderEntry type="library" scope="PROVIDED" name="i18n (v1.1.0, RVM: ruby-2.4.4) [gem]" level="application" />
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.11.3, RVM: ruby-2.4.4) [gem]" level="application" />
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, RVM: ruby-2.4.4) [gem]" level="application" />
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.8.0, RVM: ruby-2.4.4) [gem]" level="application" />
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.8.0, RVM: ruby-2.4.4) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.8.1, RVM: ruby-2.4.4) [gem]" level="application" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.8.0, RVM: ruby-2.4.4) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.8.0, RVM: ruby-2.4.4) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="thor (v0.20.0, RVM: ruby-2.4.4) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.6, RVM: ruby-2.4.4) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.5, RVM: ruby-2.4.4) [gem]" level="application" />
|
25
|
-
</component>
|
26
|
-
</module>
|
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,517 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="9c170d0c-08bf-4830-a863-b6dfc3a02d09" name="Default" comment="">
|
5
|
-
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
6
|
-
<change beforePath="$PROJECT_DIR$/Gemfile.lock" beforeDir="false" afterPath="$PROJECT_DIR$/Gemfile.lock" afterDir="false" />
|
7
|
-
<change beforePath="$PROJECT_DIR$/lib/specfac.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/specfac.rb" afterDir="false" />
|
8
|
-
<change beforePath="$PROJECT_DIR$/lib/specfac/version.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/specfac/version.rb" afterDir="false" />
|
9
|
-
</list>
|
10
|
-
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
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="FileEditorManager">
|
18
|
-
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
19
|
-
<file leaf-file-name="specfac.gemspec" pinned="false" current-in-tab="false">
|
20
|
-
<entry file="file://$PROJECT_DIR$/specfac.gemspec">
|
21
|
-
<provider selected="true" editor-type-id="text-editor">
|
22
|
-
<state relative-caret-position="165">
|
23
|
-
<caret line="11" column="124" selection-start-line="11" selection-start-column="124" selection-end-line="11" selection-end-column="124" />
|
24
|
-
</state>
|
25
|
-
</provider>
|
26
|
-
</entry>
|
27
|
-
</file>
|
28
|
-
<file leaf-file-name="specfac" pinned="false" current-in-tab="false">
|
29
|
-
<entry file="file://$PROJECT_DIR$/exe/specfac">
|
30
|
-
<provider selected="true" editor-type-id="text-editor">
|
31
|
-
<state relative-caret-position="45">
|
32
|
-
<caret line="3" column="5" selection-start-line="3" selection-start-column="5" selection-end-line="3" selection-end-column="5" />
|
33
|
-
</state>
|
34
|
-
</provider>
|
35
|
-
</entry>
|
36
|
-
</file>
|
37
|
-
<file leaf-file-name="specfac.rb" pinned="false" current-in-tab="true">
|
38
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac.rb">
|
39
|
-
<provider selected="true" editor-type-id="text-editor">
|
40
|
-
<state relative-caret-position="87">
|
41
|
-
<caret line="47" column="48" selection-start-line="47" selection-start-column="48" selection-end-line="47" selection-end-column="48" />
|
42
|
-
</state>
|
43
|
-
</provider>
|
44
|
-
</entry>
|
45
|
-
</file>
|
46
|
-
<file leaf-file-name="config.rb" pinned="false" current-in-tab="false">
|
47
|
-
<entry file="file://$PROJECT_DIR$/spec/support/config.rb">
|
48
|
-
<provider selected="true" editor-type-id="text-editor" />
|
49
|
-
</entry>
|
50
|
-
</file>
|
51
|
-
<file leaf-file-name="spec_module.rb" pinned="false" current-in-tab="false">
|
52
|
-
<entry file="file://$PROJECT_DIR$/lib/spec_module.rb">
|
53
|
-
<provider selected="true" editor-type-id="text-editor">
|
54
|
-
<state relative-caret-position="120">
|
55
|
-
<caret line="8" column="21" selection-start-line="8" selection-start-column="21" selection-end-line="8" selection-end-column="21" />
|
56
|
-
</state>
|
57
|
-
</provider>
|
58
|
-
</entry>
|
59
|
-
</file>
|
60
|
-
<file leaf-file-name="support_module.rb" pinned="false" current-in-tab="false">
|
61
|
-
<entry file="file://$PROJECT_DIR$/lib/support_module.rb">
|
62
|
-
<provider selected="true" editor-type-id="text-editor">
|
63
|
-
<state relative-caret-position="630">
|
64
|
-
<caret line="42" selection-start-line="42" selection-end-line="42" />
|
65
|
-
</state>
|
66
|
-
</provider>
|
67
|
-
</entry>
|
68
|
-
</file>
|
69
|
-
<file leaf-file-name="factory_module.rb" pinned="false" current-in-tab="false">
|
70
|
-
<entry file="file://$PROJECT_DIR$/lib/factory_module.rb">
|
71
|
-
<provider selected="true" editor-type-id="text-editor">
|
72
|
-
<state relative-caret-position="60">
|
73
|
-
<caret line="4" selection-start-line="4" selection-end-line="4" />
|
74
|
-
</state>
|
75
|
-
</provider>
|
76
|
-
</entry>
|
77
|
-
</file>
|
78
|
-
<file leaf-file-name="version.rb" pinned="false" current-in-tab="false">
|
79
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac/version.rb">
|
80
|
-
<provider selected="true" editor-type-id="text-editor">
|
81
|
-
<state relative-caret-position="15">
|
82
|
-
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
83
|
-
</state>
|
84
|
-
</provider>
|
85
|
-
</entry>
|
86
|
-
</file>
|
87
|
-
<file leaf-file-name="specfac_utils.rb" pinned="false" current-in-tab="false">
|
88
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac_utils.rb">
|
89
|
-
<provider selected="true" editor-type-id="text-editor">
|
90
|
-
<state relative-caret-position="392">
|
91
|
-
<caret line="30" column="3" selection-start-line="30" selection-start-column="3" selection-end-line="30" selection-end-column="3" />
|
92
|
-
</state>
|
93
|
-
</provider>
|
94
|
-
</entry>
|
95
|
-
</file>
|
96
|
-
<file leaf-file-name=".gitignore" pinned="false" current-in-tab="false">
|
97
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
98
|
-
<provider selected="true" editor-type-id="text-editor">
|
99
|
-
<state relative-caret-position="150">
|
100
|
-
<caret line="10" column="8" selection-start-line="10" selection-start-column="8" selection-end-line="10" selection-end-column="8" />
|
101
|
-
</state>
|
102
|
-
</provider>
|
103
|
-
</entry>
|
104
|
-
</file>
|
105
|
-
</leaf>
|
106
|
-
</component>
|
107
|
-
<component name="FindInProjectRecents">
|
108
|
-
<findStrings>
|
109
|
-
<find>Walter</find>
|
110
|
-
<find>SpecModule</find>
|
111
|
-
<find>"</find>
|
112
|
-
</findStrings>
|
113
|
-
<replaceStrings>
|
114
|
-
<replace>Specfac</replace>
|
115
|
-
<replace>Utils</replace>
|
116
|
-
<replace>'</replace>
|
117
|
-
</replaceStrings>
|
118
|
-
</component>
|
119
|
-
<component name="Git.Settings">
|
120
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
121
|
-
</component>
|
122
|
-
<component name="IdeDocumentHistory">
|
123
|
-
<option name="CHANGED_PATHS">
|
124
|
-
<list>
|
125
|
-
<option value="$PROJECT_DIR$/lib/factory/spec_module.rb" />
|
126
|
-
<option value="$PROJECT_DIR$/lib/specfac_utils.rb" />
|
127
|
-
<option value="$PROJECT_DIR$/lib/factory_module.rb" />
|
128
|
-
<option value="$PROJECT_DIR$/lib/spec_module.rb" />
|
129
|
-
<option value="$PROJECT_DIR$/README.md" />
|
130
|
-
<option value="$PROJECT_DIR$/specfac.gemspec" />
|
131
|
-
<option value="$PROJECT_DIR$/exe/specfac" />
|
132
|
-
<option value="$PROJECT_DIR$/.gitignore" />
|
133
|
-
<option value="$PROJECT_DIR$/lib/support_module.rb" />
|
134
|
-
<option value="$PROJECT_DIR$/lib/specfac/version.rb" />
|
135
|
-
<option value="$PROJECT_DIR$/lib/specfac.rb" />
|
136
|
-
</list>
|
137
|
-
</option>
|
138
|
-
</component>
|
139
|
-
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
140
|
-
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
141
|
-
<component name="JsGulpfileManager">
|
142
|
-
<detection-done>true</detection-done>
|
143
|
-
<sorting>DEFINITION_ORDER</sorting>
|
144
|
-
</component>
|
145
|
-
<component name="NodePackageJsonFileManager">
|
146
|
-
<packageJsonPaths />
|
147
|
-
</component>
|
148
|
-
<component name="ProjectFrameBounds">
|
149
|
-
<option name="y" value="23" />
|
150
|
-
<option name="width" value="1440" />
|
151
|
-
<option name="height" value="797" />
|
152
|
-
</component>
|
153
|
-
<component name="ProjectView">
|
154
|
-
<navigator proportions="" version="1">
|
155
|
-
<foldersAlwaysOnTop value="true" />
|
156
|
-
</navigator>
|
157
|
-
<panes>
|
158
|
-
<pane id="Scope" />
|
159
|
-
<pane id="ProjectPane">
|
160
|
-
<subPane>
|
161
|
-
<expand>
|
162
|
-
<path>
|
163
|
-
<item name="specfac" type="b2602c69:ProjectViewProjectNode" />
|
164
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
165
|
-
</path>
|
166
|
-
<path>
|
167
|
-
<item name="specfac" type="b2602c69:ProjectViewProjectNode" />
|
168
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
169
|
-
<item name="exe" type="462c0819:PsiDirectoryNode" />
|
170
|
-
</path>
|
171
|
-
<path>
|
172
|
-
<item name="specfac" type="b2602c69:ProjectViewProjectNode" />
|
173
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
174
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
175
|
-
</path>
|
176
|
-
<path>
|
177
|
-
<item name="specfac" type="b2602c69:ProjectViewProjectNode" />
|
178
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
179
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
180
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
181
|
-
</path>
|
182
|
-
<path>
|
183
|
-
<item name="specfac" type="b2602c69:ProjectViewProjectNode" />
|
184
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
185
|
-
<item name="spec" type="462c0819:PsiDirectoryNode" />
|
186
|
-
</path>
|
187
|
-
<path>
|
188
|
-
<item name="specfac" type="b2602c69:ProjectViewProjectNode" />
|
189
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
190
|
-
<item name="spec" type="462c0819:PsiDirectoryNode" />
|
191
|
-
<item name="controllers" type="462c0819:PsiDirectoryNode" />
|
192
|
-
</path>
|
193
|
-
<path>
|
194
|
-
<item name="specfac" type="b2602c69:ProjectViewProjectNode" />
|
195
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
196
|
-
<item name="spec" type="462c0819:PsiDirectoryNode" />
|
197
|
-
<item name="factories" type="462c0819:PsiDirectoryNode" />
|
198
|
-
</path>
|
199
|
-
<path>
|
200
|
-
<item name="specfac" type="b2602c69:ProjectViewProjectNode" />
|
201
|
-
<item name="specfac" type="462c0819:PsiDirectoryNode" />
|
202
|
-
<item name="spec" type="462c0819:PsiDirectoryNode" />
|
203
|
-
<item name="support" type="462c0819:PsiDirectoryNode" />
|
204
|
-
</path>
|
205
|
-
</expand>
|
206
|
-
<select />
|
207
|
-
</subPane>
|
208
|
-
</pane>
|
209
|
-
</panes>
|
210
|
-
</component>
|
211
|
-
<component name="PropertiesComponent">
|
212
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
213
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
214
|
-
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
215
|
-
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
216
|
-
<property name="settings.editor.selected.configurable" value="configurable.group.build" />
|
217
|
-
</component>
|
218
|
-
<component name="RecentsManager">
|
219
|
-
<key name="MoveFile.RECENT_KEYS">
|
220
|
-
<recent name="$PROJECT_DIR$/lib" />
|
221
|
-
</key>
|
222
|
-
</component>
|
223
|
-
<component name="RunDashboard">
|
224
|
-
<option name="ruleStates">
|
225
|
-
<list>
|
226
|
-
<RuleState>
|
227
|
-
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
228
|
-
</RuleState>
|
229
|
-
<RuleState>
|
230
|
-
<option name="name" value="StatusDashboardGroupingRule" />
|
231
|
-
</RuleState>
|
232
|
-
</list>
|
233
|
-
</option>
|
234
|
-
</component>
|
235
|
-
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
236
|
-
<component name="SvnConfiguration">
|
237
|
-
<configuration />
|
238
|
-
</component>
|
239
|
-
<component name="TaskManager">
|
240
|
-
<task active="true" id="Default" summary="Default task">
|
241
|
-
<changelist id="9c170d0c-08bf-4830-a863-b6dfc3a02d09" name="Default" comment="" />
|
242
|
-
<created>1534450331409</created>
|
243
|
-
<option name="number" value="Default" />
|
244
|
-
<option name="presentableId" value="Default" />
|
245
|
-
<updated>1534450331409</updated>
|
246
|
-
<workItem from="1534450332680" duration="4232000" />
|
247
|
-
<workItem from="1534944836242" duration="417000" />
|
248
|
-
<workItem from="1534945842456" duration="1238000" />
|
249
|
-
<workItem from="1535055366512" duration="3819000" />
|
250
|
-
<workItem from="1535063383155" duration="1862000" />
|
251
|
-
<workItem from="1535082797411" duration="1957000" />
|
252
|
-
<workItem from="1535598682549" duration="1631000" />
|
253
|
-
<workItem from="1535649364064" duration="2501000" />
|
254
|
-
<workItem from="1535719960729" duration="2220000" />
|
255
|
-
</task>
|
256
|
-
<servers />
|
257
|
-
</component>
|
258
|
-
<component name="TimeTrackingManager">
|
259
|
-
<option name="totallyTimeSpent" value="23061000" />
|
260
|
-
</component>
|
261
|
-
<component name="ToolWindowManager">
|
262
|
-
<frame x="0" y="23" width="1440" height="797" extended-state="0" />
|
263
|
-
<editor active="true" />
|
264
|
-
<layout>
|
265
|
-
<window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.27825466" />
|
266
|
-
<window_info anchor="bottom" id="TODO" order="6" />
|
267
|
-
<window_info anchor="bottom" id="Docker" order="7" show_stripe_button="false" />
|
268
|
-
<window_info anchor="bottom" id="Event Log" order="7" side_tool="true" />
|
269
|
-
<window_info anchor="right" id="Database" order="3" />
|
270
|
-
<window_info anchor="bottom" id="Database Changes" order="7" show_stripe_button="false" />
|
271
|
-
<window_info anchor="bottom" id="Version Control" order="7" />
|
272
|
-
<window_info anchor="bottom" id="Run" order="2" />
|
273
|
-
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
274
|
-
<window_info active="true" anchor="bottom" id="Terminal" order="7" visible="true" />
|
275
|
-
<window_info id="Favorites" order="2" side_tool="true" />
|
276
|
-
<window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
|
277
|
-
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
278
|
-
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
279
|
-
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
280
|
-
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
281
|
-
<window_info anchor="bottom" id="Message" order="0" />
|
282
|
-
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
283
|
-
<window_info anchor="bottom" id="Find" order="1" />
|
284
|
-
</layout>
|
285
|
-
</component>
|
286
|
-
<component name="TypeScriptGeneratedFilesManager">
|
287
|
-
<option name="version" value="1" />
|
288
|
-
</component>
|
289
|
-
<component name="VcsContentAnnotationSettings">
|
290
|
-
<option name="myLimit" value="2678400000" />
|
291
|
-
</component>
|
292
|
-
<component name="editorHistoryManager">
|
293
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
294
|
-
<provider selected="true" editor-type-id="text-editor">
|
295
|
-
<state relative-caret-position="120">
|
296
|
-
<caret line="8" column="18" selection-start-line="8" selection-start-column="18" selection-end-line="8" selection-end-column="18" />
|
297
|
-
</state>
|
298
|
-
</provider>
|
299
|
-
</entry>
|
300
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac.rb">
|
301
|
-
<provider selected="true" editor-type-id="text-editor">
|
302
|
-
<state relative-caret-position="990">
|
303
|
-
<caret line="66" column="30" selection-start-line="66" selection-start-column="30" selection-end-line="66" selection-end-column="30" />
|
304
|
-
</state>
|
305
|
-
</provider>
|
306
|
-
</entry>
|
307
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
308
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
309
|
-
<state split_layout="SPLIT">
|
310
|
-
<first_editor relative-caret-position="765">
|
311
|
-
<caret line="51" column="94" selection-start-line="51" selection-start-column="94" selection-end-line="51" selection-end-column="94" />
|
312
|
-
</first_editor>
|
313
|
-
<second_editor />
|
314
|
-
</state>
|
315
|
-
</provider>
|
316
|
-
</entry>
|
317
|
-
<entry file="file://$PROJECT_DIR$/lib/spec_module.rb">
|
318
|
-
<provider selected="true" editor-type-id="text-editor">
|
319
|
-
<state relative-caret-position="2700">
|
320
|
-
<caret line="180" selection-start-line="180" selection-end-line="180" />
|
321
|
-
</state>
|
322
|
-
</provider>
|
323
|
-
</entry>
|
324
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac/version.rb">
|
325
|
-
<provider selected="true" editor-type-id="text-editor">
|
326
|
-
<state relative-caret-position="15">
|
327
|
-
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
328
|
-
</state>
|
329
|
-
</provider>
|
330
|
-
</entry>
|
331
|
-
<entry file="file://$PROJECT_DIR$/specfac.gemspec">
|
332
|
-
<provider selected="true" editor-type-id="text-editor">
|
333
|
-
<state relative-caret-position="390">
|
334
|
-
<caret line="26" column="49" selection-start-line="26" selection-start-column="49" selection-end-line="26" selection-end-column="49" />
|
335
|
-
</state>
|
336
|
-
</provider>
|
337
|
-
</entry>
|
338
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
339
|
-
<provider selected="true" editor-type-id="text-editor">
|
340
|
-
<state relative-caret-position="120">
|
341
|
-
<caret line="8" column="18" selection-start-line="8" selection-start-column="18" selection-end-line="8" selection-end-column="18" />
|
342
|
-
</state>
|
343
|
-
</provider>
|
344
|
-
</entry>
|
345
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac.rb">
|
346
|
-
<provider selected="true" editor-type-id="text-editor">
|
347
|
-
<state relative-caret-position="990">
|
348
|
-
<caret line="66" column="30" selection-start-line="66" selection-start-column="30" selection-end-line="66" selection-end-column="30" />
|
349
|
-
</state>
|
350
|
-
</provider>
|
351
|
-
</entry>
|
352
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/yoddels_controller_spec.rb" />
|
353
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/robots_controller_spec.rb" />
|
354
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/rabbits_controller_spec.rb" />
|
355
|
-
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb" />
|
356
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/tests_controller_spec.rb" />
|
357
|
-
<entry file="file://$PROJECT_DIR$/lib/spec_module.rb">
|
358
|
-
<provider selected="true" editor-type-id="text-editor">
|
359
|
-
<state relative-caret-position="2700">
|
360
|
-
<caret line="180" selection-start-line="180" selection-end-line="180" />
|
361
|
-
</state>
|
362
|
-
</provider>
|
363
|
-
</entry>
|
364
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
365
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
366
|
-
<state split_layout="SPLIT">
|
367
|
-
<first_editor relative-caret-position="765">
|
368
|
-
<caret line="51" column="94" selection-start-line="51" selection-start-column="94" selection-end-line="51" selection-end-column="94" />
|
369
|
-
</first_editor>
|
370
|
-
<second_editor />
|
371
|
-
</state>
|
372
|
-
</provider>
|
373
|
-
</entry>
|
374
|
-
<entry file="file://$PROJECT_DIR$/specfac.gemspec">
|
375
|
-
<provider selected="true" editor-type-id="text-editor">
|
376
|
-
<state relative-caret-position="390">
|
377
|
-
<caret line="26" column="49" selection-start-line="26" selection-start-column="49" selection-end-line="26" selection-end-column="49" />
|
378
|
-
</state>
|
379
|
-
</provider>
|
380
|
-
</entry>
|
381
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
382
|
-
<provider selected="true" editor-type-id="text-editor">
|
383
|
-
<state relative-caret-position="120">
|
384
|
-
<caret line="8" column="18" selection-start-line="8" selection-start-column="18" selection-end-line="8" selection-end-column="18" />
|
385
|
-
</state>
|
386
|
-
</provider>
|
387
|
-
</entry>
|
388
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac.rb">
|
389
|
-
<provider selected="true" editor-type-id="text-editor">
|
390
|
-
<state relative-caret-position="990">
|
391
|
-
<caret line="66" column="30" selection-start-line="66" selection-start-column="30" selection-end-line="66" selection-end-column="30" />
|
392
|
-
</state>
|
393
|
-
</provider>
|
394
|
-
</entry>
|
395
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/yoddels_controller_spec.rb" />
|
396
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/robots_controller_spec.rb" />
|
397
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/rabbits_controller_spec.rb" />
|
398
|
-
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb" />
|
399
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/tests_controller_spec.rb" />
|
400
|
-
<entry file="file://$PROJECT_DIR$/lib/spec_module.rb">
|
401
|
-
<provider selected="true" editor-type-id="text-editor">
|
402
|
-
<state relative-caret-position="2700">
|
403
|
-
<caret line="180" selection-start-line="180" selection-end-line="180" />
|
404
|
-
</state>
|
405
|
-
</provider>
|
406
|
-
</entry>
|
407
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
408
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
409
|
-
<state split_layout="SPLIT">
|
410
|
-
<first_editor relative-caret-position="615">
|
411
|
-
<caret line="41" column="21" selection-start-line="41" selection-start-column="21" selection-end-line="41" selection-end-column="21" />
|
412
|
-
</first_editor>
|
413
|
-
<second_editor />
|
414
|
-
</state>
|
415
|
-
</provider>
|
416
|
-
</entry>
|
417
|
-
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb" />
|
418
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/rabbits_controller_spec.rb" />
|
419
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/robots_controller_spec.rb" />
|
420
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/yoddels_controller_spec.rb" />
|
421
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/yammos_controller_spec.rb" />
|
422
|
-
<entry file="file://$PROJECT_DIR$/spec/factories/static_spec.rb" />
|
423
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/rog_controller_spec.rb" />
|
424
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/dogs_controller_spec.rb">
|
425
|
-
<provider selected="true" editor-type-id="text-editor" />
|
426
|
-
</entry>
|
427
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/tests_controller_spec.rb" />
|
428
|
-
<entry file="file://$PROJECT_DIR$/spec/factories/dogs_spec.rb" />
|
429
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
430
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
431
|
-
<state split_layout="SPLIT">
|
432
|
-
<first_editor relative-caret-position="705">
|
433
|
-
<caret line="47" lean-forward="true" selection-start-line="47" selection-end-line="47" />
|
434
|
-
</first_editor>
|
435
|
-
<second_editor />
|
436
|
-
</state>
|
437
|
-
</provider>
|
438
|
-
</entry>
|
439
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/dreamcasts_controller_spec.rb" />
|
440
|
-
<entry file="file://$PROJECT_DIR$/spec/factories/dreamcasts_spec.rb">
|
441
|
-
<provider selected="true" editor-type-id="text-editor" />
|
442
|
-
</entry>
|
443
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/participants_controller_spec.rb" />
|
444
|
-
<entry file="file://$PROJECT_DIR$/spec/controllers/rockets_controller_spec.rb">
|
445
|
-
<provider selected="true" editor-type-id="text-editor" />
|
446
|
-
</entry>
|
447
|
-
<entry file="file://$PROJECT_DIR$/specfac.gemspec">
|
448
|
-
<provider selected="true" editor-type-id="text-editor">
|
449
|
-
<state relative-caret-position="165">
|
450
|
-
<caret line="11" column="124" selection-start-line="11" selection-start-column="124" selection-end-line="11" selection-end-column="124" />
|
451
|
-
</state>
|
452
|
-
</provider>
|
453
|
-
</entry>
|
454
|
-
<entry file="file://$PROJECT_DIR$/exe/specfac">
|
455
|
-
<provider selected="true" editor-type-id="text-editor">
|
456
|
-
<state relative-caret-position="45">
|
457
|
-
<caret line="3" column="5" selection-start-line="3" selection-start-column="5" selection-end-line="3" selection-end-column="5" />
|
458
|
-
</state>
|
459
|
-
</provider>
|
460
|
-
</entry>
|
461
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
462
|
-
<provider selected="true" editor-type-id="text-editor">
|
463
|
-
<state relative-caret-position="150">
|
464
|
-
<caret line="10" column="8" selection-start-line="10" selection-start-column="8" selection-end-line="10" selection-end-column="8" />
|
465
|
-
</state>
|
466
|
-
</provider>
|
467
|
-
</entry>
|
468
|
-
<entry file="file://$PROJECT_DIR$/spec/factories/rockets_spec.rb">
|
469
|
-
<provider selected="true" editor-type-id="text-editor" />
|
470
|
-
</entry>
|
471
|
-
<entry file="file://$PROJECT_DIR$/lib/factory_module.rb">
|
472
|
-
<provider selected="true" editor-type-id="text-editor">
|
473
|
-
<state relative-caret-position="60">
|
474
|
-
<caret line="4" selection-start-line="4" selection-end-line="4" />
|
475
|
-
</state>
|
476
|
-
</provider>
|
477
|
-
</entry>
|
478
|
-
<entry file="file://$PROJECT_DIR$/lib/spec_module.rb">
|
479
|
-
<provider selected="true" editor-type-id="text-editor">
|
480
|
-
<state relative-caret-position="120">
|
481
|
-
<caret line="8" column="21" selection-start-line="8" selection-start-column="21" selection-end-line="8" selection-end-column="21" />
|
482
|
-
</state>
|
483
|
-
</provider>
|
484
|
-
</entry>
|
485
|
-
<entry file="file://$PROJECT_DIR$/lib/support_module.rb">
|
486
|
-
<provider selected="true" editor-type-id="text-editor">
|
487
|
-
<state relative-caret-position="630">
|
488
|
-
<caret line="42" selection-start-line="42" selection-end-line="42" />
|
489
|
-
</state>
|
490
|
-
</provider>
|
491
|
-
</entry>
|
492
|
-
<entry file="file://$PROJECT_DIR$/spec/support/config.rb">
|
493
|
-
<provider selected="true" editor-type-id="text-editor" />
|
494
|
-
</entry>
|
495
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac/version.rb">
|
496
|
-
<provider selected="true" editor-type-id="text-editor">
|
497
|
-
<state relative-caret-position="15">
|
498
|
-
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
499
|
-
</state>
|
500
|
-
</provider>
|
501
|
-
</entry>
|
502
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac_utils.rb">
|
503
|
-
<provider selected="true" editor-type-id="text-editor">
|
504
|
-
<state relative-caret-position="392">
|
505
|
-
<caret line="30" column="3" selection-start-line="30" selection-start-column="3" selection-end-line="30" selection-end-column="3" />
|
506
|
-
</state>
|
507
|
-
</provider>
|
508
|
-
</entry>
|
509
|
-
<entry file="file://$PROJECT_DIR$/lib/specfac.rb">
|
510
|
-
<provider selected="true" editor-type-id="text-editor">
|
511
|
-
<state relative-caret-position="87">
|
512
|
-
<caret line="47" column="48" selection-start-line="47" selection-start-column="48" selection-end-line="47" selection-end-column="48" />
|
513
|
-
</state>
|
514
|
-
</provider>
|
515
|
-
</entry>
|
516
|
-
</component>
|
517
|
-
</project>
|