active_mocker 1.2.pre → 1.2.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_mocker/version.rb +1 -1
- data/sample_app_rails_4/.idea/.generators +8 -0
- data/sample_app_rails_4/.idea/.name +1 -0
- data/sample_app_rails_4/.idea/.rakeTasks +7 -0
- data/sample_app_rails_4/.idea/dataSources.ids +141 -0
- data/sample_app_rails_4/.idea/dataSources.xml +36 -0
- data/sample_app_rails_4/.idea/dictionaries/zeisler.xml +3 -0
- data/sample_app_rails_4/.idea/encodings.xml +5 -0
- data/sample_app_rails_4/.idea/inspectionProfiles/Project_Default.xml +20 -0
- data/sample_app_rails_4/.idea/inspectionProfiles/profiles_settings.xml +7 -0
- data/sample_app_rails_4/.idea/misc.xml +5 -0
- data/sample_app_rails_4/.idea/modules.xml +10 -0
- data/sample_app_rails_4/.idea/runConfigurations/Development__sample_app_rails_4.xml +28 -0
- data/sample_app_rails_4/.idea/runConfigurations/Production__sample_app_rails_4.xml +28 -0
- data/sample_app_rails_4/.idea/runConfigurations/spec__sample_app_rails_4.xml +26 -0
- data/sample_app_rails_4/.idea/runConfigurations/test__sample_app_rails_4.xml +28 -0
- data/sample_app_rails_4/.idea/sample_app_rails_4.iml +262 -0
- data/sample_app_rails_4/.idea/scopes/scope_settings.xml +5 -0
- data/sample_app_rails_4/.idea/vcs.xml +7 -0
- data/sample_app_rails_4/.idea/workspace.xml +969 -0
- data/sample_app_rails_4/.rspec +1 -0
- data/sample_app_rails_4/.secret +1 -0
- data/sample_app_rails_4/Gemfile +53 -0
- data/sample_app_rails_4/Guardfile +53 -0
- data/sample_app_rails_4/LICENSE +21 -0
- data/sample_app_rails_4/README.md +25 -0
- data/sample_app_rails_4/README.nitrous.md +20 -0
- data/sample_app_rails_4/Rakefile +6 -0
- data/sample_app_rails_4/app/assets/images/rails.png +0 -0
- data/sample_app_rails_4/app/assets/javascripts/application.js +17 -0
- data/sample_app_rails_4/app/assets/javascripts/sessions.js.coffee +3 -0
- data/sample_app_rails_4/app/assets/javascripts/static_pages.js.coffee +3 -0
- data/sample_app_rails_4/app/assets/javascripts/users.js.coffee +3 -0
- data/sample_app_rails_4/app/assets/stylesheets/application.css +13 -0
- data/sample_app_rails_4/app/assets/stylesheets/custom.css.scss +246 -0
- data/sample_app_rails_4/app/assets/stylesheets/sessions.css.scss +3 -0
- data/sample_app_rails_4/app/assets/stylesheets/static_pages.css.scss +3 -0
- data/sample_app_rails_4/app/assets/stylesheets/users.css.scss +3 -0
- data/sample_app_rails_4/app/controllers/application_controller.rb +6 -0
- data/sample_app_rails_4/app/controllers/concerns/.keep +0 -0
- data/sample_app_rails_4/app/controllers/microposts_controller.rb +31 -0
- data/sample_app_rails_4/app/controllers/relationships_controller.rb +21 -0
- data/sample_app_rails_4/app/controllers/sessions_controller.rb +21 -0
- data/sample_app_rails_4/app/controllers/static_pages_controller.rb +18 -0
- data/sample_app_rails_4/app/controllers/users_controller.rb +80 -0
- data/sample_app_rails_4/app/helpers/application_helper.rb +12 -0
- data/sample_app_rails_4/app/helpers/sessions_helper.rb +49 -0
- data/sample_app_rails_4/app/helpers/static_pages_helper.rb +2 -0
- data/sample_app_rails_4/app/helpers/users_helper.rb +10 -0
- data/sample_app_rails_4/app/mailers/.keep +0 -0
- data/sample_app_rails_4/app/models/.keep +0 -0
- data/sample_app_rails_4/app/models/concerns/.keep +0 -0
- data/sample_app_rails_4/app/models/micropost.rb +14 -0
- data/sample_app_rails_4/app/models/relationship.rb +6 -0
- data/sample_app_rails_4/app/models/user.rb +47 -0
- data/sample_app_rails_4/app/views/layouts/_footer.html.erb +13 -0
- data/sample_app_rails_4/app/views/layouts/_header.html.erb +31 -0
- data/sample_app_rails_4/app/views/layouts/_shim.html.erb +3 -0
- data/sample_app_rails_4/app/views/layouts/application.html.erb +22 -0
- data/sample_app_rails_4/app/views/microposts/_micropost.html.erb +11 -0
- data/sample_app_rails_4/app/views/relationships/create.js.erb +2 -0
- data/sample_app_rails_4/app/views/relationships/destroy.js.erb +2 -0
- data/sample_app_rails_4/app/views/sessions/new.html.erb +19 -0
- data/sample_app_rails_4/app/views/shared/_error_messages.html.erb +12 -0
- data/sample_app_rails_4/app/views/shared/_feed.html.erb +6 -0
- data/sample_app_rails_4/app/views/shared/_feed_item.html.erb +15 -0
- data/sample_app_rails_4/app/views/shared/_micropost_form.html.erb +7 -0
- data/sample_app_rails_4/app/views/shared/_stats.html.erb +15 -0
- data/sample_app_rails_4/app/views/shared/_user_info.html.erb +12 -0
- data/sample_app_rails_4/app/views/static_pages/about.html.erb +8 -0
- data/sample_app_rails_4/app/views/static_pages/contact.html.erb +6 -0
- data/sample_app_rails_4/app/views/static_pages/help.html.erb +8 -0
- data/sample_app_rails_4/app/views/static_pages/home.html.erb +34 -0
- data/sample_app_rails_4/app/views/static_pages/show.html.erb +0 -0
- data/sample_app_rails_4/app/views/users/_follow.html.erb +5 -0
- data/sample_app_rails_4/app/views/users/_follow_form.html.erb +9 -0
- data/sample_app_rails_4/app/views/users/_unfollow.html.erb +5 -0
- data/sample_app_rails_4/app/views/users/_user.html.erb +8 -0
- data/sample_app_rails_4/app/views/users/edit.html.erb +27 -0
- data/sample_app_rails_4/app/views/users/index.html.erb +10 -0
- data/sample_app_rails_4/app/views/users/new.html.erb +24 -0
- data/sample_app_rails_4/app/views/users/show.html.erb +24 -0
- data/sample_app_rails_4/app/views/users/show_follow.html.erb +30 -0
- data/sample_app_rails_4/bin/bundle +3 -0
- data/sample_app_rails_4/bin/rails +4 -0
- data/sample_app_rails_4/bin/rake +4 -0
- data/sample_app_rails_4/config.ru +4 -0
- data/sample_app_rails_4/config/application.rb +31 -0
- data/sample_app_rails_4/config/boot.rb +4 -0
- data/sample_app_rails_4/config/cucumber.yml +8 -0
- data/sample_app_rails_4/config/database.yml +28 -0
- data/sample_app_rails_4/config/environment.rb +5 -0
- data/sample_app_rails_4/config/environments/development.rb +27 -0
- data/sample_app_rails_4/config/environments/production.rb +79 -0
- data/sample_app_rails_4/config/environments/test.rb +39 -0
- data/sample_app_rails_4/config/initializers/active_mocker.rb +10 -0
- data/sample_app_rails_4/config/initializers/backtrace_silencers.rb +7 -0
- data/sample_app_rails_4/config/initializers/filter_parameter_logging.rb +4 -0
- data/sample_app_rails_4/config/initializers/inflections.rb +16 -0
- data/sample_app_rails_4/config/initializers/mime_types.rb +5 -0
- data/sample_app_rails_4/config/initializers/secret_token.rb +22 -0
- data/sample_app_rails_4/config/initializers/session_store.rb +3 -0
- data/sample_app_rails_4/config/initializers/wrap_parameters.rb +14 -0
- data/sample_app_rails_4/config/locales/en.yml +23 -0
- data/sample_app_rails_4/config/routes.rb +17 -0
- data/sample_app_rails_4/db/development.sqlite3 +0 -0
- data/sample_app_rails_4/db/migrate/20130311191400_create_users.rb +10 -0
- data/sample_app_rails_4/db/migrate/20130311194153_add_index_to_users_email.rb +5 -0
- data/sample_app_rails_4/db/migrate/20130311201841_add_password_digest_to_users.rb +5 -0
- data/sample_app_rails_4/db/migrate/20130314184954_add_remember_token_to_users.rb +6 -0
- data/sample_app_rails_4/db/migrate/20130315015932_add_admin_to_users.rb +5 -0
- data/sample_app_rails_4/db/migrate/20130315175534_create_microposts.rb +11 -0
- data/sample_app_rails_4/db/migrate/20130315230445_create_relationships.rb +13 -0
- data/sample_app_rails_4/db/schema.rb +49 -0
- data/sample_app_rails_4/db/seeds.rb +7 -0
- data/sample_app_rails_4/db/test.sqlite3 +0 -0
- data/sample_app_rails_4/features/signing_in.feature +13 -0
- data/sample_app_rails_4/features/step_definitions/authentication_steps.rb +30 -0
- data/sample_app_rails_4/features/support/env.rb +59 -0
- data/sample_app_rails_4/lib/assets/.keep +0 -0
- data/sample_app_rails_4/lib/tasks/.keep +0 -0
- data/sample_app_rails_4/lib/tasks/cucumber.rake +65 -0
- data/sample_app_rails_4/lib/tasks/mocks.rake +10 -0
- data/sample_app_rails_4/lib/tasks/sample_data.rake +42 -0
- data/sample_app_rails_4/log/.keep +0 -0
- data/sample_app_rails_4/log/development.log +603 -0
- data/sample_app_rails_4/log/test.log +6727 -0
- data/sample_app_rails_4/public/404.html +27 -0
- data/sample_app_rails_4/public/422.html +26 -0
- data/sample_app_rails_4/public/500.html +26 -0
- data/sample_app_rails_4/public/assets/application-4962059d8f80f9bb096692bacc29c4e8.css +5091 -0
- data/sample_app_rails_4/public/assets/application-4962059d8f80f9bb096692bacc29c4e8.css.gz +0 -0
- data/sample_app_rails_4/public/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js +12952 -0
- data/sample_app_rails_4/public/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js.gz +0 -0
- data/sample_app_rails_4/public/assets/glyphicons-halflings-c806376f05e4ccabe2c5315a8e95667c.png +0 -0
- data/sample_app_rails_4/public/assets/glyphicons-halflings-white-62b67d9edee3db90d18833087f848d6e.png +0 -0
- data/sample_app_rails_4/public/assets/manifest-802de9eb1c853769101852422b620883.json +1 -0
- data/sample_app_rails_4/public/assets/rails-231a680f23887d9dd70710ea5efd3c62.png +0 -0
- data/sample_app_rails_4/public/favicon.ico +0 -0
- data/sample_app_rails_4/public/robots.txt +5 -0
- data/sample_app_rails_4/script/cucumber +10 -0
- data/sample_app_rails_4/spec/controllers/relationships_controller_spec.rb +42 -0
- data/sample_app_rails_4/spec/factories.rb +17 -0
- data/sample_app_rails_4/spec/helpers/application_helper_spec.rb +18 -0
- data/sample_app_rails_4/spec/models/micropost_spec.rb +30 -0
- data/sample_app_rails_4/spec/models/relationship_spec.rb +29 -0
- data/sample_app_rails_4/spec/models/user_spec.rb +194 -0
- data/sample_app_rails_4/spec/spec_helper.rb +49 -0
- data/sample_app_rails_4/spec/support/utilities.rb +21 -0
- data/sample_app_rails_4/vendor/assets/javascripts/.keep +0 -0
- data/sample_app_rails_4/vendor/assets/stylesheets/.keep +0 -0
- metadata +151 -1
@@ -0,0 +1,969 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="BuildServerSettings">
|
4
|
+
<option name="LOGIN" value="" />
|
5
|
+
<option name="SERVER_URL" value="http://buildserver" />
|
6
|
+
<option name="PASSWORD" />
|
7
|
+
<option name="REMEMBER_ME" value="true" />
|
8
|
+
<option name="USE_IDEA_PROXY_SETTINGS" value="true" />
|
9
|
+
<option name="INSPECTIONS_BUILD_TYPE_IDS" />
|
10
|
+
<option name="DUPLICATES_BUILD_TYPE_IDS" />
|
11
|
+
<option name="COVERAGE_SETTINGS" />
|
12
|
+
<option name="TEST_STATUS_ENABLED" value="true" />
|
13
|
+
<option name="TEST_STATUS_SHOW_SUCCESSFUL" value="false" />
|
14
|
+
<option name="ARTIFACTS_BUILD_TYPE_IDS" />
|
15
|
+
<option name="PERFORM_COMMIT_IF_SUCCESSFUL" value="true" />
|
16
|
+
<option name="PERFORM_COMMIT_IF_NO_NEW_FAILED_TESTS" value="false" />
|
17
|
+
<option name="REQUEST_CONFIRMATON" value="false" />
|
18
|
+
<option name="PRE_TESTED_COMMIT" value="true" />
|
19
|
+
<option name="PROJECT_STATUS_DIALOG_SPLITTER_DIVIDER_LOCATION" value="500" />
|
20
|
+
<option name="CHANGES_STATUS_DIALOG_SPLITTER_DIVIDER_LOCATION" value="500" />
|
21
|
+
<option name="FILTER_BY_STATUS" value="false" />
|
22
|
+
<option name="FILTER_MARKED_AS_FIXED" value="false" />
|
23
|
+
<option name="SHOW_CLOSE_PROMPT" value="true" />
|
24
|
+
<option name="TOOL_WINDOW_SELECTED_CONTENT_INDEX" value="0" />
|
25
|
+
<option name="FILTER_BY_CURRENT_PROJECT" value="true" />
|
26
|
+
</component>
|
27
|
+
<component name="ChangeListManager">
|
28
|
+
<list default="true" id="e05f6a63-a137-4f8f-a338-a26ada5f522b" name="Default" comment="">
|
29
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/../../lib/active_mocker/mock_task.rb" />
|
30
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/tasks/mocks.rake" />
|
31
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/../../lib/active_mocker/micropost_mock.rb" afterPath="" />
|
32
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/../../lib/active_mocker/person_mock.rb" afterPath="" />
|
33
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/../../lib/active_mocker/plan_mock.rb" afterPath="" />
|
34
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/../../lib/active_mocker/relationship_mock.rb" afterPath="" />
|
35
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/../../lib/active_mocker/user_mock.rb" afterPath="" />
|
36
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/../../lib/tasks/db.rake" afterPath="" />
|
37
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/config/database.yml.example" afterPath="" />
|
38
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/spec/requests/authentication_pages_spec.rb" afterPath="" />
|
39
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/spec/requests/micropost_pages_spec.rb" afterPath="" />
|
40
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/spec/requests/static_pages_spec.rb" afterPath="" />
|
41
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/spec/requests/user_pages_spec.rb" afterPath="" />
|
42
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$" afterPath="$PROJECT_DIR$" />
|
43
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.rspec" afterPath="$PROJECT_DIR$/.rspec" />
|
44
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Gemfile.lock" afterPath="$PROJECT_DIR$/Gemfile.lock" />
|
45
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Gemfile" afterPath="$PROJECT_DIR$/Gemfile" />
|
46
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/../../lib/active_mocker.rb" afterPath="$PROJECT_DIR$/../../lib/active_mocker.rb" />
|
47
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/../lib/active_mocker/generate_spec.rb" afterPath="$PROJECT_DIR$/../lib/active_mocker/generate_spec.rb" />
|
48
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/../mocks/micropost_mock.rb" afterPath="$PROJECT_DIR$/../mocks/micropost_mock.rb" />
|
49
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/../../lib/mock_template.erb" afterPath="$PROJECT_DIR$/../../lib/mock_template.erb" />
|
50
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/../../lib/active_mocker/public_methods.rb" afterPath="$PROJECT_DIR$/../../lib/active_mocker/public_methods.rb" />
|
51
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/../mocks/relationship_mock.rb" afterPath="$PROJECT_DIR$/../mocks/relationship_mock.rb" />
|
52
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/spec/spec_helper.rb" afterPath="$PROJECT_DIR$/spec/spec_helper.rb" />
|
53
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/../mocks/user_mock.rb" afterPath="$PROJECT_DIR$/../mocks/user_mock.rb" />
|
54
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/../mocks/user_mock_spec.rb" afterPath="$PROJECT_DIR$/../mocks/user_mock_spec.rb" />
|
55
|
+
</list>
|
56
|
+
<ignored path="sample_app_rails_4.iws" />
|
57
|
+
<ignored path=".idea/workspace.xml" />
|
58
|
+
<option name="TRACKING_ENABLED" value="true" />
|
59
|
+
<option name="SHOW_DIALOG" value="false" />
|
60
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
61
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
62
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
63
|
+
</component>
|
64
|
+
<component name="ChangesViewManager" flattened_view="false" show_ignored="false" />
|
65
|
+
<component name="CoverageDataManager">
|
66
|
+
<SUITE FILE_PATH="coverage/sample_app_rails_4@All_specs_in_spec__sample_app_rails_4.coverage" NAME="All specs in spec: sample_app_rails_4 Coverage Results" MODIFIED="1400029243286" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="sample_app_rails_4" />
|
67
|
+
<SUITE FILE_PATH="coverage/sample_app_rails_4@ActiveMocker__Generate__active_mocker.coverage" NAME="ActiveMocker::Generate: active_mocker Coverage Results" MODIFIED="1400080256433" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/../.." MODULE_NAME="active_mocker" />
|
68
|
+
<SUITE FILE_PATH="coverage/sample_app_rails_4@All_tests_in_spec__sample_app_rails_4.coverage" NAME="All tests in spec: sample_app_rails_4 Coverage Results" MODIFIED="1400028616392" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/spec" MODULE_NAME="sample_app_rails_4" />
|
69
|
+
<SUITE FILE_PATH="coverage/sample_app_rails_4@Run_spec__generate_spec___active_mocker.coverage" NAME="Run spec 'generate_spec': active_mocker Coverage Results" MODIFIED="1400078522602" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/../.." MODULE_NAME="active_mocker" />
|
70
|
+
<SUITE FILE_PATH="coverage/sample_app_rails_4@Run_spec__user_mock_spec___active_mocker.coverage" NAME="Run spec 'user_mock_spec': active_mocker Coverage Results" MODIFIED="1400078574467" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/../.." MODULE_NAME="active_mocker" />
|
71
|
+
</component>
|
72
|
+
<component name="CreatePatchCommitExecutor">
|
73
|
+
<option name="PATCH_PATH" value="" />
|
74
|
+
</component>
|
75
|
+
<component name="DaemonCodeAnalyzer">
|
76
|
+
<disable_hints />
|
77
|
+
</component>
|
78
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
79
|
+
<component name="FavoritesManager">
|
80
|
+
<favorites_list name="sample_app_rails_4" />
|
81
|
+
</component>
|
82
|
+
<component name="FileEditorManager">
|
83
|
+
<leaf>
|
84
|
+
<file leaf-file-name="mock_task.rb" pinned="false" current="false" current-in-tab="false">
|
85
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/mock_task.rb">
|
86
|
+
<provider selected="true" editor-type-id="text-editor">
|
87
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="255">
|
88
|
+
<caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="11" selection-end-column="3" />
|
89
|
+
<folding />
|
90
|
+
</state>
|
91
|
+
</provider>
|
92
|
+
</entry>
|
93
|
+
</file>
|
94
|
+
<file leaf-file-name=".gitignore" pinned="false" current="false" current-in-tab="false">
|
95
|
+
<entry file="file://$PROJECT_DIR$/../../.gitignore">
|
96
|
+
<provider selected="true" editor-type-id="text-editor">
|
97
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="345">
|
98
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
99
|
+
<folding />
|
100
|
+
</state>
|
101
|
+
</provider>
|
102
|
+
</entry>
|
103
|
+
</file>
|
104
|
+
<file leaf-file-name="active_mocker.rb" pinned="false" current="false" current-in-tab="false">
|
105
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker.rb">
|
106
|
+
<provider selected="true" editor-type-id="text-editor">
|
107
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="495">
|
108
|
+
<caret line="27" column="0" selection-start-line="27" selection-start-column="0" selection-end-line="27" selection-end-column="0" />
|
109
|
+
<folding />
|
110
|
+
</state>
|
111
|
+
</provider>
|
112
|
+
</entry>
|
113
|
+
</file>
|
114
|
+
<file leaf-file-name="mocks.rake" pinned="false" current="true" current-in-tab="true">
|
115
|
+
<entry file="file://$PROJECT_DIR$/lib/tasks/mocks.rake">
|
116
|
+
<provider selected="true" editor-type-id="text-editor">
|
117
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1340">
|
118
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="4" selection-end-column="3" />
|
119
|
+
<folding />
|
120
|
+
</state>
|
121
|
+
</provider>
|
122
|
+
</entry>
|
123
|
+
</file>
|
124
|
+
<file leaf-file-name="active_mocker.rb" pinned="false" current="false" current-in-tab="false">
|
125
|
+
<entry file="file://$PROJECT_DIR$/config/initializers/active_mocker.rb">
|
126
|
+
<provider selected="true" editor-type-id="text-editor">
|
127
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="225">
|
128
|
+
<caret line="0" column="22" selection-start-line="0" selection-start-column="22" selection-end-line="0" selection-end-column="22" />
|
129
|
+
<folding />
|
130
|
+
</state>
|
131
|
+
</provider>
|
132
|
+
</entry>
|
133
|
+
</file>
|
134
|
+
<file leaf-file-name="mock_template.erb" pinned="false" current="false" current-in-tab="false">
|
135
|
+
<entry file="file://$PROJECT_DIR$/../../lib/mock_template.erb">
|
136
|
+
<provider selected="true" editor-type-id="text-editor">
|
137
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="330" max-vertical-offset="1350">
|
138
|
+
<caret line="22" column="17" selection-start-line="22" selection-start-column="17" selection-end-line="22" selection-end-column="17" />
|
139
|
+
<folding />
|
140
|
+
</state>
|
141
|
+
</provider>
|
142
|
+
</entry>
|
143
|
+
</file>
|
144
|
+
<file leaf-file-name="public_methods.rb" pinned="false" current="false" current-in-tab="false">
|
145
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/public_methods.rb">
|
146
|
+
<provider selected="true" editor-type-id="text-editor">
|
147
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="165" max-vertical-offset="300">
|
148
|
+
<caret line="11" column="22" selection-start-line="11" selection-start-column="4" selection-end-line="11" selection-end-column="22" />
|
149
|
+
<folding />
|
150
|
+
</state>
|
151
|
+
</provider>
|
152
|
+
</entry>
|
153
|
+
</file>
|
154
|
+
<file leaf-file-name="user_mock.rb" pinned="false" current="false" current-in-tab="false">
|
155
|
+
<entry file="file://$PROJECT_DIR$/../mocks/user_mock.rb">
|
156
|
+
<provider selected="true" editor-type-id="text-editor">
|
157
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="2504" max-vertical-offset="3030">
|
158
|
+
<caret line="193" column="0" selection-start-line="193" selection-start-column="0" selection-end-line="193" selection-end-column="0" />
|
159
|
+
<folding />
|
160
|
+
</state>
|
161
|
+
</provider>
|
162
|
+
</entry>
|
163
|
+
</file>
|
164
|
+
<file leaf-file-name="user_mock_spec.rb" pinned="false" current="false" current-in-tab="false">
|
165
|
+
<entry file="file://$PROJECT_DIR$/../mocks/user_mock_spec.rb">
|
166
|
+
<provider selected="true" editor-type-id="text-editor">
|
167
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="60" max-vertical-offset="2670">
|
168
|
+
<caret line="4" column="20" selection-start-line="4" selection-start-column="20" selection-end-line="4" selection-end-column="20" />
|
169
|
+
<folding />
|
170
|
+
</state>
|
171
|
+
</provider>
|
172
|
+
</entry>
|
173
|
+
</file>
|
174
|
+
</leaf>
|
175
|
+
</component>
|
176
|
+
<component name="FindManager">
|
177
|
+
<FindUsagesManager>
|
178
|
+
<setting name="OPEN_NEW_TAB" value="true" />
|
179
|
+
</FindUsagesManager>
|
180
|
+
</component>
|
181
|
+
<component name="Git.Settings">
|
182
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
183
|
+
</component>
|
184
|
+
<component name="IdeDocumentHistory">
|
185
|
+
<option name="changedFiles">
|
186
|
+
<list>
|
187
|
+
<option value="$PROJECT_DIR$/../../lib/mock_requires.rb" />
|
188
|
+
<option value="$PROJECT_DIR$/../mocks/user_mock.rb" />
|
189
|
+
<option value="$PROJECT_DIR$/../../lib/active_mocker/mock_requires.rb" />
|
190
|
+
<option value="$PROJECT_DIR$/../mocks/user_mock_spec.rb" />
|
191
|
+
<option value="$PROJECT_DIR$/../../lib/mock_template.erb" />
|
192
|
+
<option value="$PROJECT_DIR$/../../lib/active_mocker/public_methods.rb" />
|
193
|
+
<option value="$PROJECT_DIR$/../lib/active_mocker/generate_spec.rb" />
|
194
|
+
<option value="$PROJECT_DIR$/../../lib/tasks/db.rake" />
|
195
|
+
<option value="$PROJECT_DIR$/config/initializers/active_mocker.rb" />
|
196
|
+
<option value="$PROJECT_DIR$/../../tasks/mocks.rake" />
|
197
|
+
<option value="$PROJECT_DIR$/../../lib/active_mocker/tasks/mocks.rake" />
|
198
|
+
<option value="$PROJECT_DIR$/../../lib/active_mocker/railtie.rb" />
|
199
|
+
<option value="$PROJECT_DIR$/../../lib/active_mocker.rb" />
|
200
|
+
<option value="$PROJECT_DIR$/lib/tasks/mocks.rake" />
|
201
|
+
</list>
|
202
|
+
</option>
|
203
|
+
</component>
|
204
|
+
<component name="LogFilters">
|
205
|
+
<option name="FILTER_ERRORS" value="false" />
|
206
|
+
<option name="FILTER_WARNINGS" value="false" />
|
207
|
+
<option name="FILTER_INFO" value="true" />
|
208
|
+
<option name="FILTER_DEBUG" value="true" />
|
209
|
+
<option name="CUSTOM_FILTER" />
|
210
|
+
</component>
|
211
|
+
<component name="ProjectFrameBounds">
|
212
|
+
<option name="x" value="1440" />
|
213
|
+
<option name="y" value="22" />
|
214
|
+
<option name="width" value="2560" />
|
215
|
+
<option name="height" value="1414" />
|
216
|
+
</component>
|
217
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
218
|
+
<OptionsSetting value="true" id="Add" />
|
219
|
+
<OptionsSetting value="true" id="Remove" />
|
220
|
+
<OptionsSetting value="true" id="Checkout" />
|
221
|
+
<OptionsSetting value="true" id="Update" />
|
222
|
+
<OptionsSetting value="true" id="Status" />
|
223
|
+
<OptionsSetting value="true" id="Edit" />
|
224
|
+
<ConfirmationsSetting value="0" id="Add" />
|
225
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
226
|
+
</component>
|
227
|
+
<component name="ProjectReloadState">
|
228
|
+
<option name="STATE" value="0" />
|
229
|
+
</component>
|
230
|
+
<component name="ProjectView">
|
231
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
232
|
+
<flattenPackages />
|
233
|
+
<showMembers />
|
234
|
+
<showModules />
|
235
|
+
<showLibraryContents />
|
236
|
+
<hideEmptyPackages />
|
237
|
+
<abbreviatePackageNames />
|
238
|
+
<autoscrollToSource />
|
239
|
+
<autoscrollFromSource />
|
240
|
+
<sortByType />
|
241
|
+
</navigator>
|
242
|
+
<panes>
|
243
|
+
<pane id="RailsProjectView" />
|
244
|
+
<pane id="Scope" />
|
245
|
+
<pane id="ProjectPane">
|
246
|
+
<subPane>
|
247
|
+
<PATH>
|
248
|
+
<PATH_ELEMENT>
|
249
|
+
<option name="myItemId" value="sample_app_rails_4" />
|
250
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
251
|
+
</PATH_ELEMENT>
|
252
|
+
<PATH_ELEMENT>
|
253
|
+
<option name="myItemId" value="External Libraries" />
|
254
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
255
|
+
</PATH_ELEMENT>
|
256
|
+
</PATH>
|
257
|
+
<PATH>
|
258
|
+
<PATH_ELEMENT>
|
259
|
+
<option name="myItemId" value="sample_app_rails_4" />
|
260
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
261
|
+
</PATH_ELEMENT>
|
262
|
+
<PATH_ELEMENT>
|
263
|
+
<option name="myItemId" value="active_mocker" />
|
264
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
265
|
+
</PATH_ELEMENT>
|
266
|
+
</PATH>
|
267
|
+
<PATH>
|
268
|
+
<PATH_ELEMENT>
|
269
|
+
<option name="myItemId" value="sample_app_rails_4" />
|
270
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
271
|
+
</PATH_ELEMENT>
|
272
|
+
<PATH_ELEMENT>
|
273
|
+
<option name="myItemId" value="active_mocker" />
|
274
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
275
|
+
</PATH_ELEMENT>
|
276
|
+
<PATH_ELEMENT>
|
277
|
+
<option name="myItemId" value="spec" />
|
278
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
279
|
+
</PATH_ELEMENT>
|
280
|
+
</PATH>
|
281
|
+
<PATH>
|
282
|
+
<PATH_ELEMENT>
|
283
|
+
<option name="myItemId" value="sample_app_rails_4" />
|
284
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
285
|
+
</PATH_ELEMENT>
|
286
|
+
<PATH_ELEMENT>
|
287
|
+
<option name="myItemId" value="active_mocker" />
|
288
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
289
|
+
</PATH_ELEMENT>
|
290
|
+
<PATH_ELEMENT>
|
291
|
+
<option name="myItemId" value="schema_mashal" />
|
292
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
293
|
+
</PATH_ELEMENT>
|
294
|
+
</PATH>
|
295
|
+
<PATH>
|
296
|
+
<PATH_ELEMENT>
|
297
|
+
<option name="myItemId" value="sample_app_rails_4" />
|
298
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
299
|
+
</PATH_ELEMENT>
|
300
|
+
<PATH_ELEMENT>
|
301
|
+
<option name="myItemId" value="active_mocker" />
|
302
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
303
|
+
</PATH_ELEMENT>
|
304
|
+
<PATH_ELEMENT>
|
305
|
+
<option name="myItemId" value="lib" />
|
306
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
307
|
+
</PATH_ELEMENT>
|
308
|
+
</PATH>
|
309
|
+
<PATH>
|
310
|
+
<PATH_ELEMENT>
|
311
|
+
<option name="myItemId" value="sample_app_rails_4" />
|
312
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
313
|
+
</PATH_ELEMENT>
|
314
|
+
<PATH_ELEMENT>
|
315
|
+
<option name="myItemId" value="active_mocker" />
|
316
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
317
|
+
</PATH_ELEMENT>
|
318
|
+
<PATH_ELEMENT>
|
319
|
+
<option name="myItemId" value="lib" />
|
320
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
321
|
+
</PATH_ELEMENT>
|
322
|
+
<PATH_ELEMENT>
|
323
|
+
<option name="myItemId" value="active_mocker" />
|
324
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
325
|
+
</PATH_ELEMENT>
|
326
|
+
</PATH>
|
327
|
+
</subPane>
|
328
|
+
</pane>
|
329
|
+
</panes>
|
330
|
+
</component>
|
331
|
+
<component name="PropertiesComponent">
|
332
|
+
<property name="options.splitter.main.proportions" value="0.3" />
|
333
|
+
<property name="options.lastSelected" value="vcs.Git" />
|
334
|
+
<property name="options.searchVisible" value="true" />
|
335
|
+
<property name="options.splitter.details.proportions" value="0.2" />
|
336
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
337
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
338
|
+
<property name="recentsLimit" value="5" />
|
339
|
+
<property name="dynamic.classpath" value="false" />
|
340
|
+
<property name="project.settings.patched" value="true" />
|
341
|
+
<property name="FullScreen" value="false" />
|
342
|
+
</component>
|
343
|
+
<component name="RecentsManager">
|
344
|
+
<key name="MoveFile.RECENT_KEYS">
|
345
|
+
<recent name="$PROJECT_DIR$/../../lib/active_mocker" />
|
346
|
+
<recent name="$PROJECT_DIR$/../../lib" />
|
347
|
+
<recent name="$PROJECT_DIR$/../.." />
|
348
|
+
</key>
|
349
|
+
</component>
|
350
|
+
<component name="RunManager" selected="RSpec.ActiveMocker::Generate: active_mocker">
|
351
|
+
<configuration default="false" name="Run spec 'user_mock_spec': active_mocker" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
352
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
353
|
+
<module name="active_mocker" />
|
354
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
355
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
356
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
357
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
358
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
359
|
+
<envs>
|
360
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
361
|
+
</envs>
|
362
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
363
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
364
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
365
|
+
<COVERAGE_PATTERN ENABLED="true">
|
366
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
367
|
+
</COVERAGE_PATTERN>
|
368
|
+
</EXTENSION>
|
369
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
370
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
371
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/mocks/user_mock_spec.rb" />
|
372
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
373
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
374
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
375
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
376
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
377
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
378
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
379
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
380
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
381
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
382
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
383
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
384
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
385
|
+
<method />
|
386
|
+
</configuration>
|
387
|
+
<configuration default="false" name="UserMock: active_mocker" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
388
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
389
|
+
<module name="active_mocker" />
|
390
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
391
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
392
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
393
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
394
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
395
|
+
<envs>
|
396
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
397
|
+
</envs>
|
398
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
399
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
400
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
401
|
+
<COVERAGE_PATTERN ENABLED="true">
|
402
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
403
|
+
</COVERAGE_PATTERN>
|
404
|
+
</EXTENSION>
|
405
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
406
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
407
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/mocks/user_mock_spec.rb" />
|
408
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
409
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
410
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="UserMock" />
|
411
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
412
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
413
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
414
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
415
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
416
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
417
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
418
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
419
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
420
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
421
|
+
<method />
|
422
|
+
</configuration>
|
423
|
+
<configuration default="false" name="All specs in spec: sample_app_rails_4" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
424
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
425
|
+
<module name="sample_app_rails_4" />
|
426
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
427
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
428
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
429
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
430
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
431
|
+
<envs>
|
432
|
+
<env name="RAILS_ENV" value="test" />
|
433
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
434
|
+
</envs>
|
435
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
436
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
437
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
438
|
+
<COVERAGE_PATTERN ENABLED="true">
|
439
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
440
|
+
</COVERAGE_PATTERN>
|
441
|
+
</EXTENSION>
|
442
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
443
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$MODULE_DIR$/spec" />
|
444
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
445
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
446
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
447
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
448
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
|
449
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
450
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
451
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
452
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
453
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
454
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
455
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
456
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
457
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
458
|
+
<method />
|
459
|
+
</configuration>
|
460
|
+
<configuration default="false" name="Run spec 'generate_spec': active_mocker" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
461
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
462
|
+
<module name="active_mocker" />
|
463
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
464
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
465
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
466
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
467
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
468
|
+
<envs>
|
469
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
470
|
+
</envs>
|
471
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
472
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
473
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
474
|
+
<COVERAGE_PATTERN ENABLED="true">
|
475
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
476
|
+
</COVERAGE_PATTERN>
|
477
|
+
</EXTENSION>
|
478
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
479
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
480
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/lib/active_mocker/generate_spec.rb" />
|
481
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
482
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
483
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
484
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
485
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
486
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
487
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
488
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
489
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
490
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
491
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
492
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
493
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
494
|
+
<method />
|
495
|
+
</configuration>
|
496
|
+
<configuration default="false" name="ActiveMocker::Generate: active_mocker" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
497
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
498
|
+
<module name="active_mocker" />
|
499
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
500
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
501
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
502
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
503
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
504
|
+
<envs>
|
505
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
506
|
+
</envs>
|
507
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
508
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
509
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
510
|
+
<COVERAGE_PATTERN ENABLED="true">
|
511
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
512
|
+
</COVERAGE_PATTERN>
|
513
|
+
</EXTENSION>
|
514
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
515
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
516
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/lib/active_mocker/generate_spec.rb" />
|
517
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
518
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
519
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="ActiveMocker::Generate" />
|
520
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
521
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
522
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
523
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
524
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
525
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
526
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
527
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
528
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
529
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
530
|
+
<method />
|
531
|
+
</configuration>
|
532
|
+
<configuration default="true" type="RakeRunConfigurationType" factoryName="Rake">
|
533
|
+
<module name="" />
|
534
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
535
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
536
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
537
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
538
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
539
|
+
<envs />
|
540
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
541
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
542
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
543
|
+
<COVERAGE_PATTERN ENABLED="true">
|
544
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
545
|
+
</COVERAGE_PATTERN>
|
546
|
+
</EXTENSION>
|
547
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
548
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="" />
|
549
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
550
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE="" />
|
551
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
552
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
553
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
554
|
+
<method />
|
555
|
+
</configuration>
|
556
|
+
<configuration default="true" type="RailsRunConfigurationType" factoryName="Rails">
|
557
|
+
<predefined_log_file id="RUBY_RAILS_SERVER" enabled="true" />
|
558
|
+
<module name="" />
|
559
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
560
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
561
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
562
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
563
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
564
|
+
<envs />
|
565
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
566
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
567
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
568
|
+
<COVERAGE_PATTERN ENABLED="true">
|
569
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
570
|
+
</COVERAGE_PATTERN>
|
571
|
+
</EXTENSION>
|
572
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
573
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SCRIPT_ARGS" VALUE="" />
|
574
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="PORT" VALUE="3000" />
|
575
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="IP" VALUE="0.0.0.0" />
|
576
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="DUMMY_APP" VALUE="test/dummy" />
|
577
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RAILS_SERVER_TYPE" VALUE="Default" />
|
578
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ENVIRONMENT_TYPE" VALUE="development" />
|
579
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="LAUNCH_JS" VALUE="false" />
|
580
|
+
<method />
|
581
|
+
</configuration>
|
582
|
+
<configuration default="true" type="JSTestDriver:ConfigurationType" factoryName="JsTestDriver">
|
583
|
+
<setting name="configLocationType" value="CONFIG_FILE" />
|
584
|
+
<setting name="settingsFile" value="" />
|
585
|
+
<setting name="serverType" value="INTERNAL" />
|
586
|
+
<setting name="preferredDebugBrowser" value="Chrome" />
|
587
|
+
<method />
|
588
|
+
</configuration>
|
589
|
+
<configuration default="true" type="JavaScriptTestRunnerKarma" factoryName="Karma" config-file="">
|
590
|
+
<envs />
|
591
|
+
<method />
|
592
|
+
</configuration>
|
593
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
594
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
595
|
+
<module name="" />
|
596
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
597
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
598
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
599
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
600
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
601
|
+
<envs />
|
602
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
603
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
604
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
605
|
+
<COVERAGE_PATTERN ENABLED="true">
|
606
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
607
|
+
</COVERAGE_PATTERN>
|
608
|
+
</EXTENSION>
|
609
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
610
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
611
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
612
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
613
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
614
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
615
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
616
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
617
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
618
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
619
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
620
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
621
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
622
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
623
|
+
<method />
|
624
|
+
</configuration>
|
625
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
626
|
+
<module name="" />
|
627
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
628
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
629
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
630
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
631
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
632
|
+
<envs />
|
633
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
634
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
635
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
636
|
+
<COVERAGE_PATTERN ENABLED="true">
|
637
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
638
|
+
</COVERAGE_PATTERN>
|
639
|
+
</EXTENSION>
|
640
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
641
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
642
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
643
|
+
<method />
|
644
|
+
</configuration>
|
645
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
646
|
+
<method />
|
647
|
+
</configuration>
|
648
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
649
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
650
|
+
<module name="" />
|
651
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
652
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
653
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
654
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
655
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
656
|
+
<envs />
|
657
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
658
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
659
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
660
|
+
<COVERAGE_PATTERN ENABLED="true">
|
661
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
662
|
+
</COVERAGE_PATTERN>
|
663
|
+
</EXTENSION>
|
664
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
665
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
666
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
667
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
668
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
669
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
670
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
671
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
672
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
673
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
674
|
+
<method />
|
675
|
+
</configuration>
|
676
|
+
<configuration default="true" type="com.intellij.persistence.run.ConsoleRunConfigurationType" factoryName="Query Language Console">
|
677
|
+
<option name="VM_PARAMETERS" value="" />
|
678
|
+
<option name="USER_CFG_CLASS" />
|
679
|
+
<option name="CONTEXT_PROVIDER" />
|
680
|
+
<method />
|
681
|
+
</configuration>
|
682
|
+
<list size="9">
|
683
|
+
<item index="0" class="java.lang.String" itemvalue="Rails.Development: sample_app_rails_4" />
|
684
|
+
<item index="1" class="java.lang.String" itemvalue="Rails.Production: sample_app_rails_4" />
|
685
|
+
<item index="2" class="java.lang.String" itemvalue="Rake.spec: sample_app_rails_4" />
|
686
|
+
<item index="3" class="java.lang.String" itemvalue="Rake.test: sample_app_rails_4" />
|
687
|
+
<item index="4" class="java.lang.String" itemvalue="RSpec.Run spec 'user_mock_spec': active_mocker" />
|
688
|
+
<item index="5" class="java.lang.String" itemvalue="RSpec.UserMock: active_mocker" />
|
689
|
+
<item index="6" class="java.lang.String" itemvalue="RSpec.All specs in spec: sample_app_rails_4" />
|
690
|
+
<item index="7" class="java.lang.String" itemvalue="RSpec.Run spec 'generate_spec': active_mocker" />
|
691
|
+
<item index="8" class="java.lang.String" itemvalue="RSpec.ActiveMocker::Generate: active_mocker" />
|
692
|
+
</list>
|
693
|
+
<recent_temporary>
|
694
|
+
<list size="5">
|
695
|
+
<item index="0" class="java.lang.String" itemvalue="RSpec.All specs in spec: sample_app_rails_4" />
|
696
|
+
<item index="1" class="java.lang.String" itemvalue="RSpec.ActiveMocker::Generate: active_mocker" />
|
697
|
+
<item index="2" class="java.lang.String" itemvalue="RSpec.Run spec 'generate_spec': active_mocker" />
|
698
|
+
<item index="3" class="java.lang.String" itemvalue="RSpec.UserMock: active_mocker" />
|
699
|
+
<item index="4" class="java.lang.String" itemvalue="RSpec.Run spec 'user_mock_spec': active_mocker" />
|
700
|
+
</list>
|
701
|
+
</recent_temporary>
|
702
|
+
</component>
|
703
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
704
|
+
<component name="TaskManager">
|
705
|
+
<task active="true" id="Default" summary="Default task">
|
706
|
+
<changelist id="e05f6a63-a137-4f8f-a338-a26ada5f522b" name="Default" comment="" />
|
707
|
+
<created>1400028890205</created>
|
708
|
+
<updated>1400028890205</updated>
|
709
|
+
</task>
|
710
|
+
<servers />
|
711
|
+
</component>
|
712
|
+
<component name="ToolWindowManager">
|
713
|
+
<frame x="1440" y="22" width="2560" height="1414" extended-state="6" />
|
714
|
+
<editor active="true" />
|
715
|
+
<layout>
|
716
|
+
<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="7" side_tool="false" content_ui="tabs" />
|
717
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
718
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32968637" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
719
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
720
|
+
<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" />
|
721
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
722
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
723
|
+
<window_info id="TeamCity" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
724
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
725
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32968637" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
726
|
+
<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" />
|
727
|
+
<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" />
|
728
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.140625" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
729
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.19985412" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
730
|
+
<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" />
|
731
|
+
<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" />
|
732
|
+
<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" />
|
733
|
+
<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" />
|
734
|
+
<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" />
|
735
|
+
<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" />
|
736
|
+
</layout>
|
737
|
+
</component>
|
738
|
+
<component name="Vcs.Log.UiProperties">
|
739
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
740
|
+
<collection />
|
741
|
+
</option>
|
742
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
743
|
+
<collection />
|
744
|
+
</option>
|
745
|
+
</component>
|
746
|
+
<component name="VcsContentAnnotationSettings">
|
747
|
+
<option name="myLimit" value="2678400000" />
|
748
|
+
</component>
|
749
|
+
<component name="VcsManagerConfiguration">
|
750
|
+
<option name="myTodoPanelSettings">
|
751
|
+
<TodoPanelSettings />
|
752
|
+
</option>
|
753
|
+
</component>
|
754
|
+
<component name="XDebuggerManager">
|
755
|
+
<breakpoint-manager />
|
756
|
+
</component>
|
757
|
+
<component name="editorHistoryManager">
|
758
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/mock_task.rb">
|
759
|
+
<provider selected="true" editor-type-id="text-editor">
|
760
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="165" max-vertical-offset="255">
|
761
|
+
<caret line="11" column="3" selection-start-line="8" selection-start-column="0" selection-end-line="11" selection-end-column="3" />
|
762
|
+
<folding />
|
763
|
+
</state>
|
764
|
+
</provider>
|
765
|
+
</entry>
|
766
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/railtie.rb">
|
767
|
+
<provider selected="true" editor-type-id="text-editor">
|
768
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="195" max-vertical-offset="285">
|
769
|
+
<caret line="13" column="3" selection-start-line="13" selection-start-column="3" selection-end-line="13" selection-end-column="3" />
|
770
|
+
<folding />
|
771
|
+
</state>
|
772
|
+
</provider>
|
773
|
+
</entry>
|
774
|
+
<entry file="file://$PROJECT_DIR$/../../.gitignore">
|
775
|
+
<provider selected="true" editor-type-id="text-editor">
|
776
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="345">
|
777
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
778
|
+
<folding />
|
779
|
+
</state>
|
780
|
+
</provider>
|
781
|
+
</entry>
|
782
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker.rb">
|
783
|
+
<provider selected="true" editor-type-id="text-editor">
|
784
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="405" max-vertical-offset="495">
|
785
|
+
<caret line="27" column="0" selection-start-line="27" selection-start-column="0" selection-end-line="27" selection-end-column="0" />
|
786
|
+
<folding />
|
787
|
+
</state>
|
788
|
+
</provider>
|
789
|
+
</entry>
|
790
|
+
<entry file="file://$PROJECT_DIR$/lib/tasks/mocks.rake">
|
791
|
+
<provider selected="true" editor-type-id="text-editor">
|
792
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="15" max-vertical-offset="105">
|
793
|
+
<caret line="1" column="22" selection-start-line="1" selection-start-column="22" selection-end-line="1" selection-end-column="22" />
|
794
|
+
<folding />
|
795
|
+
</state>
|
796
|
+
</provider>
|
797
|
+
</entry>
|
798
|
+
<entry file="file://$PROJECT_DIR$/config/initializers/active_mocker.rb">
|
799
|
+
<provider selected="true" editor-type-id="text-editor">
|
800
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="225">
|
801
|
+
<caret line="0" column="22" selection-start-line="0" selection-start-column="22" selection-end-line="0" selection-end-column="22" />
|
802
|
+
<folding />
|
803
|
+
</state>
|
804
|
+
</provider>
|
805
|
+
</entry>
|
806
|
+
<entry file="file://$PROJECT_DIR$/../../lib/mock_template.erb">
|
807
|
+
<provider selected="true" editor-type-id="text-editor">
|
808
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="330" max-vertical-offset="1350">
|
809
|
+
<caret line="22" column="17" selection-start-line="22" selection-start-column="17" selection-end-line="22" selection-end-column="17" />
|
810
|
+
<folding />
|
811
|
+
</state>
|
812
|
+
</provider>
|
813
|
+
</entry>
|
814
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/public_methods.rb">
|
815
|
+
<provider selected="true" editor-type-id="text-editor">
|
816
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="165" max-vertical-offset="300">
|
817
|
+
<caret line="11" column="22" selection-start-line="11" selection-start-column="4" selection-end-line="11" selection-end-column="22" />
|
818
|
+
<folding />
|
819
|
+
</state>
|
820
|
+
</provider>
|
821
|
+
</entry>
|
822
|
+
<entry file="file://$PROJECT_DIR$/../mocks/user_mock.rb">
|
823
|
+
<provider selected="true" editor-type-id="text-editor">
|
824
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="2504" max-vertical-offset="3030">
|
825
|
+
<caret line="193" column="0" selection-start-line="193" selection-start-column="0" selection-end-line="193" selection-end-column="0" />
|
826
|
+
<folding />
|
827
|
+
</state>
|
828
|
+
</provider>
|
829
|
+
</entry>
|
830
|
+
<entry file="file://$PROJECT_DIR$/../mocks/user_mock_spec.rb">
|
831
|
+
<provider selected="true" editor-type-id="text-editor">
|
832
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="60" max-vertical-offset="2670">
|
833
|
+
<caret line="4" column="20" selection-start-line="4" selection-start-column="20" selection-end-line="4" selection-end-column="20" />
|
834
|
+
<folding />
|
835
|
+
</state>
|
836
|
+
</provider>
|
837
|
+
</entry>
|
838
|
+
<entry file="file://$PROJECT_DIR$/script/cucumber">
|
839
|
+
<provider selected="true" editor-type-id="text-editor">
|
840
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="240">
|
841
|
+
<caret line="10" column="0" selection-start-line="10" selection-start-column="0" selection-end-line="10" selection-end-column="0" />
|
842
|
+
</state>
|
843
|
+
</provider>
|
844
|
+
</entry>
|
845
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/config.rb">
|
846
|
+
<provider selected="true" editor-type-id="text-editor">
|
847
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="810">
|
848
|
+
<caret line="15" column="8" selection-start-line="15" selection-start-column="8" selection-end-line="15" selection-end-column="8" />
|
849
|
+
</state>
|
850
|
+
</provider>
|
851
|
+
</entry>
|
852
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/generate.rb">
|
853
|
+
<provider selected="true" editor-type-id="text-editor">
|
854
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="2310">
|
855
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
856
|
+
</state>
|
857
|
+
</provider>
|
858
|
+
</entry>
|
859
|
+
<entry file="file://$PROJECT_DIR$/../lib/active_mocker/base_spec.rb">
|
860
|
+
<provider selected="true" editor-type-id="text-editor">
|
861
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="7020">
|
862
|
+
<caret line="1" column="0" selection-start-line="1" selection-start-column="0" selection-end-line="1" selection-end-column="47" />
|
863
|
+
</state>
|
864
|
+
</provider>
|
865
|
+
</entry>
|
866
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/base.rb">
|
867
|
+
<provider selected="true" editor-type-id="text-editor">
|
868
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="3612" max-vertical-offset="7005">
|
869
|
+
<caret line="281" column="7" selection-start-line="263" selection-start-column="4" selection-end-line="281" selection-end-column="7" />
|
870
|
+
</state>
|
871
|
+
</provider>
|
872
|
+
</entry>
|
873
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/mock_requires.rb">
|
874
|
+
<provider selected="true" editor-type-id="text-editor">
|
875
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="255">
|
876
|
+
<caret line="5" column="0" selection-start-line="5" selection-start-column="0" selection-end-line="5" selection-end-column="0" />
|
877
|
+
</state>
|
878
|
+
</provider>
|
879
|
+
</entry>
|
880
|
+
<entry file="file://$PROJECT_DIR$/../lib/active_mocker/generate_spec.rb">
|
881
|
+
<provider selected="true" editor-type-id="text-editor">
|
882
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="255" max-vertical-offset="810">
|
883
|
+
<caret line="23" column="31" selection-start-line="23" selection-start-column="9" selection-end-line="23" selection-end-column="31" />
|
884
|
+
</state>
|
885
|
+
</provider>
|
886
|
+
</entry>
|
887
|
+
<entry file="file://$PROJECT_DIR$/../../.gitignore">
|
888
|
+
<provider selected="true" editor-type-id="text-editor">
|
889
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1340">
|
890
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
891
|
+
<folding />
|
892
|
+
</state>
|
893
|
+
</provider>
|
894
|
+
</entry>
|
895
|
+
<entry file="file://$PROJECT_DIR$/../../lib/mock_template.erb">
|
896
|
+
<provider selected="true" editor-type-id="text-editor">
|
897
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="330" max-vertical-offset="1350">
|
898
|
+
<caret line="22" column="17" selection-start-line="22" selection-start-column="17" selection-end-line="22" selection-end-column="17" />
|
899
|
+
<folding />
|
900
|
+
</state>
|
901
|
+
</provider>
|
902
|
+
</entry>
|
903
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/public_methods.rb">
|
904
|
+
<provider selected="true" editor-type-id="text-editor">
|
905
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="300">
|
906
|
+
<caret line="11" column="22" selection-start-line="11" selection-start-column="4" selection-end-line="11" selection-end-column="22" />
|
907
|
+
<folding />
|
908
|
+
</state>
|
909
|
+
</provider>
|
910
|
+
</entry>
|
911
|
+
<entry file="file://$PROJECT_DIR$/../mocks/user_mock.rb">
|
912
|
+
<provider selected="true" editor-type-id="text-editor">
|
913
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="2504" max-vertical-offset="3030">
|
914
|
+
<caret line="193" column="0" selection-start-line="193" selection-start-column="0" selection-end-line="193" selection-end-column="0" />
|
915
|
+
<folding />
|
916
|
+
</state>
|
917
|
+
</provider>
|
918
|
+
</entry>
|
919
|
+
<entry file="file://$PROJECT_DIR$/../mocks/user_mock_spec.rb">
|
920
|
+
<provider selected="true" editor-type-id="text-editor">
|
921
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="2670">
|
922
|
+
<caret line="4" column="20" selection-start-line="4" selection-start-column="20" selection-end-line="4" selection-end-column="20" />
|
923
|
+
<folding />
|
924
|
+
</state>
|
925
|
+
</provider>
|
926
|
+
</entry>
|
927
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/railtie.rb">
|
928
|
+
<provider selected="true" editor-type-id="text-editor">
|
929
|
+
<state vertical-scroll-proportion="0.14552239" vertical-offset="0" max-vertical-offset="1340">
|
930
|
+
<caret line="13" column="3" selection-start-line="13" selection-start-column="3" selection-end-line="13" selection-end-column="3" />
|
931
|
+
<folding />
|
932
|
+
</state>
|
933
|
+
</provider>
|
934
|
+
</entry>
|
935
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker.rb">
|
936
|
+
<provider selected="true" editor-type-id="text-editor">
|
937
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="495">
|
938
|
+
<caret line="27" column="0" selection-start-line="27" selection-start-column="0" selection-end-line="27" selection-end-column="0" />
|
939
|
+
<folding />
|
940
|
+
</state>
|
941
|
+
</provider>
|
942
|
+
</entry>
|
943
|
+
<entry file="file://$PROJECT_DIR$/../../lib/active_mocker/mock_task.rb">
|
944
|
+
<provider selected="true" editor-type-id="text-editor">
|
945
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="255">
|
946
|
+
<caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="11" selection-end-column="3" />
|
947
|
+
<folding />
|
948
|
+
</state>
|
949
|
+
</provider>
|
950
|
+
</entry>
|
951
|
+
<entry file="file://$PROJECT_DIR$/config/initializers/active_mocker.rb">
|
952
|
+
<provider selected="true" editor-type-id="text-editor">
|
953
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="526">
|
954
|
+
<caret line="0" column="22" selection-start-line="0" selection-start-column="22" selection-end-line="0" selection-end-column="22" />
|
955
|
+
<folding />
|
956
|
+
</state>
|
957
|
+
</provider>
|
958
|
+
</entry>
|
959
|
+
<entry file="file://$PROJECT_DIR$/lib/tasks/mocks.rake">
|
960
|
+
<provider selected="true" editor-type-id="text-editor">
|
961
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="1340">
|
962
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="4" selection-end-column="3" />
|
963
|
+
<folding />
|
964
|
+
</state>
|
965
|
+
</provider>
|
966
|
+
</entry>
|
967
|
+
</component>
|
968
|
+
</project>
|
969
|
+
|