eve-4 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.DS_Store +0 -0
- data/.gitignore +0 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/dictionaries/tylercollins.xml +3 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/eve-updated.iml +58 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +554 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +108 -0
- data/History.txt +7 -0
- data/Rakefile +37 -0
- data/eve.gemspec +36 -0
- data/lib/eve.rb +26 -0
- data/lib/eve/api.rb +249 -0
- data/lib/eve/api/connectivity.rb +39 -0
- data/lib/eve/api/request.rb +80 -0
- data/lib/eve/api/response.rb +34 -0
- data/lib/eve/api/response/result.rb +87 -0
- data/lib/eve/api/response/row.rb +42 -0
- data/lib/eve/api/response/rowset.rb +18 -0
- data/lib/eve/api/services.rb +20 -0
- data/lib/eve/api/services/account.rb +12 -0
- data/lib/eve/api/services/character.rb +96 -0
- data/lib/eve/api/services/corporation.rb +150 -0
- data/lib/eve/api/services/eve.rb +76 -0
- data/lib/eve/api/services/map.rb +45 -0
- data/lib/eve/api/services/misc.rb +24 -0
- data/lib/eve/api/services/server.rb +20 -0
- data/lib/eve/dependencies.rb +48 -0
- data/lib/eve/deprecation.rb +3 -0
- data/lib/eve/errors.rb +129 -0
- data/lib/eve/errors/authentication_errors.rb +33 -0
- data/lib/eve/errors/internal_errors.rb +64 -0
- data/lib/eve/errors/miscellaneous_errors.rb +19 -0
- data/lib/eve/errors/user_input_errors.rb +62 -0
- data/lib/eve/javascript_helper.rb +196 -0
- data/lib/eve/trust.rb +87 -0
- data/lib/eve/trust/controller_helpers.rb +86 -0
- data/lib/eve/trust/igb_interface.rb +92 -0
- data/lib/eve/trust/mime_types.rb +4 -0
- data/lib/eve/version.rb +8 -0
- data/log/development.log +30 -0
- data/spec/controllers/controller_helpers_spec.rb +91 -0
- data/spec/helpers/javascript_helper_spec.rb +80 -0
- data/spec/helpers/view_helper_spec.rb +7 -0
- data/spec/lib/eve/api/calls/account/characters_spec.rb +22 -0
- data/spec/lib/eve/api/calls/character/account_balance_spec.rb +21 -0
- data/spec/lib/eve/api/calls/character/asset_list_spec.rb +23 -0
- data/spec/lib/eve/api/calls/character/character_sheet_spec.rb +51 -0
- data/spec/lib/eve/api/calls/character/fac_war_stats_spec.rb +31 -0
- data/spec/lib/eve/api/calls/character/industry_jobs_spec.rb +27 -0
- data/spec/lib/eve/api/calls/character/kill_log_spec.rb +27 -0
- data/spec/lib/eve/api/calls/character/mail_messages_spec.rb +21 -0
- data/spec/lib/eve/api/calls/character/mailing_lists_spec.rb +21 -0
- data/spec/lib/eve/api/calls/character/market_orders_spec.rb +21 -0
- data/spec/lib/eve/api/calls/character/medals_spec.rb +24 -0
- data/spec/lib/eve/api/calls/character/research_spec.rb +21 -0
- data/spec/lib/eve/api/calls/character/skill_in_training_spec.rb +44 -0
- data/spec/lib/eve/api/calls/character/skill_queue_spec.rb +21 -0
- data/spec/lib/eve/api/calls/character/standings_spec.rb +26 -0
- data/spec/lib/eve/api/calls/character/wallet_journal_spec.rb +21 -0
- data/spec/lib/eve/api/calls/character/wallet_transactions_spec.rb +21 -0
- data/spec/lib/eve/api/calls/character_portrait_spec.rb +17 -0
- data/spec/lib/eve/api/calls/corporation/account_balances_spec.rb +21 -0
- data/spec/lib/eve/api/calls/corporation/asset_list_spec.rb +25 -0
- data/spec/lib/eve/api/calls/corporation/container_log_spec.rb +23 -0
- data/spec/lib/eve/api/calls/corporation/corporation_sheet_spec.rb +36 -0
- data/spec/lib/eve/api/calls/corporation/fac_war_stats_spec.rb +23 -0
- data/spec/lib/eve/api/calls/corporation/industry_jobs_spec.rb +30 -0
- data/spec/lib/eve/api/calls/corporation/kill_log_spec.rb +27 -0
- data/spec/lib/eve/api/calls/corporation/market_orders_spec.rb +22 -0
- data/spec/lib/eve/api/calls/corporation/medals_spec.rb +21 -0
- data/spec/lib/eve/api/calls/corporation/member_medals_spec.rb +21 -0
- data/spec/lib/eve/api/calls/corporation/member_security_log_spec.rb +24 -0
- data/spec/lib/eve/api/calls/corporation/member_security_spec.rb +25 -0
- data/spec/lib/eve/api/calls/corporation/member_tracking_spec.rb +22 -0
- data/spec/lib/eve/api/calls/corporation/shareholders_spec.rb +23 -0
- data/spec/lib/eve/api/calls/corporation/standings_spec.rb +30 -0
- data/spec/lib/eve/api/calls/corporation/starbase_detail_spec.rb +32 -0
- data/spec/lib/eve/api/calls/corporation/starbase_list_spec.rb +22 -0
- data/spec/lib/eve/api/calls/corporation/titles_spec.rb +26 -0
- data/spec/lib/eve/api/calls/corporation/wallet_journal_spec.rb +22 -0
- data/spec/lib/eve/api/calls/corporation/wallet_transactions_spec.rb +22 -0
- data/spec/lib/eve/api/calls/empty_call_spec.rb +29 -0
- data/spec/lib/eve/api/calls/eve/alliance_list_spec.rb +26 -0
- data/spec/lib/eve/api/calls/eve/certificate_tree_spec.rb +18 -0
- data/spec/lib/eve/api/calls/eve/character_id_spec.rb +27 -0
- data/spec/lib/eve/api/calls/eve/conquerable_station_list_spec.rb +11 -0
- data/spec/lib/eve/api/calls/eve/error_list_spec.rb +21 -0
- data/spec/lib/eve/api/calls/eve/fac_war_stats_spec.rb +25 -0
- data/spec/lib/eve/api/calls/eve/fac_war_top_stats_spec.rb +54 -0
- data/spec/lib/eve/api/calls/eve/ref_types_spec.rb +11 -0
- data/spec/lib/eve/api/calls/eve/skill_tree_spec.rb +17 -0
- data/spec/lib/eve/api/calls/map/fac_war_systems_spec.rb +11 -0
- data/spec/lib/eve/api/calls/map/jumps_spec.rb +11 -0
- data/spec/lib/eve/api/calls/map/kills_spec.rb +11 -0
- data/spec/lib/eve/api/calls/map/sovereignty_spec.rb +11 -0
- data/spec/lib/eve/api/calls/server_status_spec.rb +28 -0
- data/spec/lib/eve/api/request_spec.rb +18 -0
- data/spec/lib/eve/api/response/error_spec.rb +13 -0
- data/spec/lib/eve/api/response_spec.rb +79 -0
- data/spec/lib/eve/api_spec.rb +13 -0
- data/spec/lib/eve/core_extensions/hash_spec.rb +23 -0
- data/spec/lib/eve/core_extensions/string_spec.rb +8 -0
- data/spec/lib/eve/trust/igb_interface_spec.rb +112 -0
- data/spec/log/development.log +0 -0
- data/spec/rcov.opts +2 -0
- data/spec/readme_spec.rb +36 -0
- data/spec/sample_api_key.yml +20 -0
- data/spec/spec.opts +4 -0
- data/spec/spec_helper.rb +63 -0
- data/spec/support/behaves_like_rowset.rb +50 -0
- data/spec/support/controllers/trust_controller.rb +24 -0
- data/spec/support/jpg/mock_portrait.jpg +0 -0
- data/spec/support/mock_api_helpers.rb +46 -0
- data/spec/support/views/trust/html_and_igb.html.erb +1 -0
- data/spec/support/views/trust/html_and_igb.igb.erb +1 -0
- data/spec/support/views/trust/html_only.html.erb +1 -0
- data/spec/support/views/trust/igb_only.igb.erb +1 -0
- data/spec/support/xml/account/characters.xml +15 -0
- data/spec/support/xml/character/account_balance.xml +10 -0
- data/spec/support/xml/character/asset_list.xml +50 -0
- data/spec/support/xml/character/character_sheet.xml +65 -0
- data/spec/support/xml/character/fac_war_stats.xml +20 -0
- data/spec/support/xml/character/industry_jobs.xml +70 -0
- data/spec/support/xml/character/kill_log.xml +51 -0
- data/spec/support/xml/character/mail_messages.xml +12 -0
- data/spec/support/xml/character/mailing_lists.xml +12 -0
- data/spec/support/xml/character/market_orders.xml +11 -0
- data/spec/support/xml/character/medals.xml +13 -0
- data/spec/support/xml/character/research.xml +13 -0
- data/spec/support/xml/character/skill_in_training.xml +14 -0
- data/spec/support/xml/character/skill_not_in_training.xml +7 -0
- data/spec/support/xml/character/skill_queue.xml +11 -0
- data/spec/support/xml/character/standings.xml +32 -0
- data/spec/support/xml/character/wallet_journal.xml +39 -0
- data/spec/support/xml/character/wallet_transactions.xml +44 -0
- data/spec/support/xml/corporation/account_balance.xml +15 -0
- data/spec/support/xml/corporation/asset_list.xml +50 -0
- data/spec/support/xml/corporation/container_log.xml +32 -0
- data/spec/support/xml/corporation/fac_war_stats.xml +19 -0
- data/spec/support/xml/corporation/industry_jobs.xml +70 -0
- data/spec/support/xml/corporation/kill_log.xml +51 -0
- data/spec/support/xml/corporation/market_orders.xml +37 -0
- data/spec/support/xml/corporation/medals.xml +8 -0
- data/spec/support/xml/corporation/member_corporation_sheet.xml +51 -0
- data/spec/support/xml/corporation/member_medals.xml +10 -0
- data/spec/support/xml/corporation/member_security.xml +21 -0
- data/spec/support/xml/corporation/member_security_log.xml +55 -0
- data/spec/support/xml/corporation/member_tracking.xml +18 -0
- data/spec/support/xml/corporation/non_member_corporation_sheet.xml +30 -0
- data/spec/support/xml/corporation/shareholders.xml +11 -0
- data/spec/support/xml/corporation/standings.xml +33 -0
- data/spec/support/xml/corporation/starbase_detail.xml +33 -0
- data/spec/support/xml/corporation/starbase_list.xml +17 -0
- data/spec/support/xml/corporation/titles.xml +34 -0
- data/spec/support/xml/corporation/wallet_journal.xml +40 -0
- data/spec/support/xml/corporation/wallet_transactions.xml +12 -0
- data/spec/support/xml/errors/106.xml +5 -0
- data/spec/support/xml/errors/516.xml +5 -0
- data/spec/support/xml/eve/alliance_list.xml +22 -0
- data/spec/support/xml/eve/certificate_tree.xml +49 -0
- data/spec/support/xml/eve/character_id.xml +15 -0
- data/spec/support/xml/eve/conquerable_station_list.xml +24 -0
- data/spec/support/xml/eve/error_list.xml +78 -0
- data/spec/support/xml/eve/fac_war_stats.xml +31 -0
- data/spec/support/xml/eve/fac_war_top_stats.xml +238 -0
- data/spec/support/xml/eve/ref_types.xml +105 -0
- data/spec/support/xml/eve/skill_tree.xml +52 -0
- data/spec/support/xml/map/fac_war_systems.xml +180 -0
- data/spec/support/xml/map/jumps.xml +166 -0
- data/spec/support/xml/map/kills.xml +191 -0
- data/spec/support/xml/map/sovereignty.xml +20 -0
- data/spec/support/xml/rowset_with_mismatched_attributes.xml +6 -0
- data/spec/support/xml/server/server_status.xml +9 -0
- metadata +310 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b8279888e267c6cbc8ab74cc53989b172907c0c
|
4
|
+
data.tar.gz: d3ad3cd1c6a02c631bac17d17447e5183ce66306
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75dc776f5de0eb22fdd4b76a6e661c20d47d5b5e823b69a93e3f62df56c935fe7ae29b6a533aedb196843855e641aeba6010350b2ab3fecd61af08767c92e142
|
7
|
+
data.tar.gz: b058fa10a83f370d1dfd7f1338703bc0645aafb6aaae7d02bdb8187a68d8769c6923b632edd5554a77a10f8333478c9c97286bc3a86394bac4a1ac25e0e15861
|
data/.DS_Store
ADDED
Binary file
|
data/.gitignore
ADDED
File without changes
|
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
eve-updated
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
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 eve-2.0.1.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove RDoc HTML files" fullCmd="clobber_rdoc" taksId="clobber_rdoc" /><RakeTask description="Build and install eve-2.0.1.gem into system gems" fullCmd="install" taksId="install" /><RakeTask description="Run RSpec code examples" fullCmd="rcov" taksId="rcov" /><RakeTask description="Build RDoc HTML files" fullCmd="rdoc" taksId="rdoc" /><RakeTask description="Create tag v2.0.1 and build and push eve-2.0.1.gem to Rubygems" fullCmd="release" taksId="release" /><RakeTask description="Rebuild RDoc HTML files" fullCmd="rerdoc" taksId="rerdoc" /><RakeTask description="Run RSpec code examples" fullCmd="spec" taksId="spec" /><RakeTask description="" fullCmd="clobber" taksId="clobber" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="rdoc/index.html" taksId="rdoc/index.html" /></RakeGroup></Settings>
|
data/.idea/encodings.xml
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="FacetManager">
|
4
|
+
<facet type="gem" name="Gem">
|
5
|
+
<configuration>
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
9
|
+
</configuration>
|
10
|
+
</facet>
|
11
|
+
</component>
|
12
|
+
<component name="NewModuleRootManager">
|
13
|
+
<content url="file://$MODULE_DIR$">
|
14
|
+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
15
|
+
</content>
|
16
|
+
<orderEntry type="inheritedJdk" />
|
17
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="actionmailer (v4.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="actionpack (v4.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="activemodel (v4.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="activerecord (v4.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="activerecord-deprecated_finders (v1.0.3, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v4.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="arel (v4.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="atomic (v1.1.10, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.1.4, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.3.5, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.4, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="erubis (v2.7.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="hike (v1.2.3, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.6.4, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="mail (v2.5.4, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="mime-types (v1.23, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="mini_portile (v0.5.1, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v4.7.5, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.7.7, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.6.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="polyglot (v0.3.3, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="rack (v1.5.2, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-test (v0.6.2, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="rails (v4.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="railties (v4.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.1.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v2.14.4, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v2.14.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v2.14.1, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-rails (v2.14.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="sc-core-ext (v1.2.1, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="sprockets (v2.10.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="sprockets-rails (v2.0.0, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="thor (v0.18.1, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.1.2, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
53
|
+
<orderEntry type="library" scope="PROVIDED" name="tilt (v1.4.1, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
54
|
+
<orderEntry type="library" scope="PROVIDED" name="treetop (v1.4.14, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
55
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v0.3.37, RVM: ruby-2.0.0-p247 [eve]) [gem]" level="application" />
|
56
|
+
</component>
|
57
|
+
</module>
|
58
|
+
|
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/eve-updated.iml" filepath="$PROJECT_DIR$/.idea/eve-updated.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,554 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="e4dc19b6-830c-4795-a42f-dcfee30d89c0" name="Default" comment="">
|
5
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/tmp/cache/9B0/902/https%3A%2F%2Fapi.eve-online.com%2Feve%2FAllianceList.xml.aspx%2FIncludes%3Deve%26Service%3Dalliance_list%26Submodules%3D" afterPath="" />
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.gitignore" afterPath="$PROJECT_DIR$/.gitignore" />
|
7
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Gemfile.lock" afterPath="$PROJECT_DIR$/Gemfile.lock" />
|
8
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/eve/version.rb" afterPath="$PROJECT_DIR$/lib/eve/version.rb" />
|
9
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
10
|
+
</list>
|
11
|
+
<ignored path="eve-updated.iws" />
|
12
|
+
<ignored path=".idea/workspace.xml" />
|
13
|
+
<file path="/Dummy.txt" changelist="e4dc19b6-830c-4795-a42f-dcfee30d89c0" time="1375068147101" ignored="false" />
|
14
|
+
<file path="/eve.gemspec" changelist="e4dc19b6-830c-4795-a42f-dcfee30d89c0" time="1375065831163" ignored="false" />
|
15
|
+
<option name="TRACKING_ENABLED" value="true" />
|
16
|
+
<option name="SHOW_DIALOG" value="false" />
|
17
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
18
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
19
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
20
|
+
</component>
|
21
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
22
|
+
<component name="CreatePatchCommitExecutor">
|
23
|
+
<option name="PATCH_PATH" value="" />
|
24
|
+
</component>
|
25
|
+
<component name="DaemonCodeAnalyzer">
|
26
|
+
<disable_hints />
|
27
|
+
</component>
|
28
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
29
|
+
<component name="FavoritesManager">
|
30
|
+
<favorites_list name="eve-updated" />
|
31
|
+
</component>
|
32
|
+
<component name="FileEditorManager">
|
33
|
+
<leaf>
|
34
|
+
<file leaf-file-name="eve.gemspec" pinned="false" current="false" current-in-tab="false">
|
35
|
+
<entry file="file://$PROJECT_DIR$/eve.gemspec">
|
36
|
+
<provider selected="true" editor-type-id="text-editor">
|
37
|
+
<state line="22" column="13" selection-start="721" selection-end="721" vertical-scroll-proportion="0.0">
|
38
|
+
<folding />
|
39
|
+
</state>
|
40
|
+
</provider>
|
41
|
+
</entry>
|
42
|
+
</file>
|
43
|
+
<file leaf-file-name="version.rb" pinned="false" current="true" current-in-tab="true">
|
44
|
+
<entry file="file://$PROJECT_DIR$/lib/eve/version.rb">
|
45
|
+
<provider selected="true" editor-type-id="text-editor">
|
46
|
+
<state line="2" column="33" selection-start="61" selection-end="61" vertical-scroll-proportion="0.06726457">
|
47
|
+
<folding />
|
48
|
+
</state>
|
49
|
+
</provider>
|
50
|
+
</entry>
|
51
|
+
</file>
|
52
|
+
<file leaf-file-name=".gitignore" pinned="false" current="false" current-in-tab="false">
|
53
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
54
|
+
<provider selected="true" editor-type-id="text-editor">
|
55
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
56
|
+
<folding />
|
57
|
+
</state>
|
58
|
+
</provider>
|
59
|
+
</entry>
|
60
|
+
</file>
|
61
|
+
<file leaf-file-name="spec_helper.rb" pinned="false" current="false" current-in-tab="false">
|
62
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
63
|
+
<provider selected="true" editor-type-id="text-editor">
|
64
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
65
|
+
<folding />
|
66
|
+
</state>
|
67
|
+
</provider>
|
68
|
+
</entry>
|
69
|
+
</file>
|
70
|
+
</leaf>
|
71
|
+
</component>
|
72
|
+
<component name="FindManager">
|
73
|
+
<FindUsagesManager>
|
74
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
75
|
+
</FindUsagesManager>
|
76
|
+
</component>
|
77
|
+
<component name="Git.Settings">
|
78
|
+
<option name="UPDATE_TYPE" value="MERGE" />
|
79
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
80
|
+
</component>
|
81
|
+
<component name="GitLogSettings">
|
82
|
+
<option name="myDateState">
|
83
|
+
<MyDateState />
|
84
|
+
</option>
|
85
|
+
</component>
|
86
|
+
<component name="IdeDocumentHistory">
|
87
|
+
<option name="changedFiles">
|
88
|
+
<list>
|
89
|
+
<option value="$PROJECT_DIR$/eve.gemspec" />
|
90
|
+
<option value="$PROJECT_DIR$/.gitignore" />
|
91
|
+
<option value="$PROJECT_DIR$/lib/eve/version.rb" />
|
92
|
+
</list>
|
93
|
+
</option>
|
94
|
+
</component>
|
95
|
+
<component name="ProjectFrameBounds">
|
96
|
+
<option name="x" value="412" />
|
97
|
+
<option name="y" value="22" />
|
98
|
+
<option name="width" value="1018" />
|
99
|
+
<option name="height" value="803" />
|
100
|
+
</component>
|
101
|
+
<component name="ProjectInspectionProfilesVisibleTreeState">
|
102
|
+
<entry key="Project Default">
|
103
|
+
<profile-state>
|
104
|
+
<expanded-state>
|
105
|
+
<State>
|
106
|
+
<id />
|
107
|
+
</State>
|
108
|
+
<State>
|
109
|
+
<id>Gems</id>
|
110
|
+
</State>
|
111
|
+
</expanded-state>
|
112
|
+
<selected-state>
|
113
|
+
<State>
|
114
|
+
<id>CoffeeScript</id>
|
115
|
+
</State>
|
116
|
+
</selected-state>
|
117
|
+
</profile-state>
|
118
|
+
</entry>
|
119
|
+
</component>
|
120
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
121
|
+
<OptionsSetting value="true" id="Add" />
|
122
|
+
<OptionsSetting value="true" id="Remove" />
|
123
|
+
<OptionsSetting value="true" id="Checkout" />
|
124
|
+
<OptionsSetting value="true" id="Update" />
|
125
|
+
<OptionsSetting value="true" id="Status" />
|
126
|
+
<OptionsSetting value="true" id="Edit" />
|
127
|
+
<ConfirmationsSetting value="0" id="Add" />
|
128
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
129
|
+
</component>
|
130
|
+
<component name="ProjectReloadState">
|
131
|
+
<option name="STATE" value="0" />
|
132
|
+
</component>
|
133
|
+
<component name="ProjectView">
|
134
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
135
|
+
<flattenPackages />
|
136
|
+
<showMembers />
|
137
|
+
<showModules />
|
138
|
+
<showLibraryContents />
|
139
|
+
<hideEmptyPackages />
|
140
|
+
<abbreviatePackageNames />
|
141
|
+
<autoscrollToSource />
|
142
|
+
<autoscrollFromSource />
|
143
|
+
<sortByType />
|
144
|
+
</navigator>
|
145
|
+
<panes>
|
146
|
+
<pane id="ProjectPane">
|
147
|
+
<subPane>
|
148
|
+
<PATH>
|
149
|
+
<PATH_ELEMENT>
|
150
|
+
<option name="myItemId" value="eve-updated" />
|
151
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
152
|
+
</PATH_ELEMENT>
|
153
|
+
</PATH>
|
154
|
+
<PATH>
|
155
|
+
<PATH_ELEMENT>
|
156
|
+
<option name="myItemId" value="eve-updated" />
|
157
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
158
|
+
</PATH_ELEMENT>
|
159
|
+
<PATH_ELEMENT>
|
160
|
+
<option name="myItemId" value="eve-updated" />
|
161
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
162
|
+
</PATH_ELEMENT>
|
163
|
+
</PATH>
|
164
|
+
<PATH>
|
165
|
+
<PATH_ELEMENT>
|
166
|
+
<option name="myItemId" value="eve-updated" />
|
167
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
168
|
+
</PATH_ELEMENT>
|
169
|
+
<PATH_ELEMENT>
|
170
|
+
<option name="myItemId" value="eve-updated" />
|
171
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
172
|
+
</PATH_ELEMENT>
|
173
|
+
<PATH_ELEMENT>
|
174
|
+
<option name="myItemId" value="spec" />
|
175
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
176
|
+
</PATH_ELEMENT>
|
177
|
+
</PATH>
|
178
|
+
<PATH>
|
179
|
+
<PATH_ELEMENT>
|
180
|
+
<option name="myItemId" value="eve-updated" />
|
181
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
182
|
+
</PATH_ELEMENT>
|
183
|
+
<PATH_ELEMENT>
|
184
|
+
<option name="myItemId" value="eve-updated" />
|
185
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
186
|
+
</PATH_ELEMENT>
|
187
|
+
<PATH_ELEMENT>
|
188
|
+
<option name="myItemId" value="lib" />
|
189
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
190
|
+
</PATH_ELEMENT>
|
191
|
+
</PATH>
|
192
|
+
<PATH>
|
193
|
+
<PATH_ELEMENT>
|
194
|
+
<option name="myItemId" value="eve-updated" />
|
195
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
196
|
+
</PATH_ELEMENT>
|
197
|
+
<PATH_ELEMENT>
|
198
|
+
<option name="myItemId" value="eve-updated" />
|
199
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
200
|
+
</PATH_ELEMENT>
|
201
|
+
<PATH_ELEMENT>
|
202
|
+
<option name="myItemId" value="lib" />
|
203
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
204
|
+
</PATH_ELEMENT>
|
205
|
+
<PATH_ELEMENT>
|
206
|
+
<option name="myItemId" value="eve" />
|
207
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
208
|
+
</PATH_ELEMENT>
|
209
|
+
</PATH>
|
210
|
+
</subPane>
|
211
|
+
</pane>
|
212
|
+
<pane id="Scope" />
|
213
|
+
</panes>
|
214
|
+
</component>
|
215
|
+
<component name="PropertiesComponent">
|
216
|
+
<property name="options.splitter.main.proportions" value="0.3" />
|
217
|
+
<property name="options.lastSelected" value="preferences.fileTypes" />
|
218
|
+
<property name="recentsLimit" value="5" />
|
219
|
+
<property name="restartRequiresConfirmation" value="true" />
|
220
|
+
<property name="options.searchVisible" value="true" />
|
221
|
+
<property name="options.splitter.details.proportions" value="0.2" />
|
222
|
+
</component>
|
223
|
+
<component name="RunManager" selected="Rake.Unnamed">
|
224
|
+
<configuration default="false" name="All specs in: spec" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
225
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
226
|
+
<module name="eve-updated" />
|
227
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
228
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
|
229
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
230
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
231
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
232
|
+
<envs>
|
233
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
234
|
+
</envs>
|
235
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
236
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
237
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
238
|
+
<COVERAGE_PATTERN ENABLED="true">
|
239
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
240
|
+
</COVERAGE_PATTERN>
|
241
|
+
</EXTENSION>
|
242
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
243
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$PROJECT_DIR$/spec" />
|
244
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
245
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
246
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
247
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
248
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
|
249
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
250
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
251
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
252
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
253
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
254
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
255
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
256
|
+
<method />
|
257
|
+
</configuration>
|
258
|
+
<configuration default="true" type="RakeRunConfigurationType" factoryName="Rake">
|
259
|
+
<module name="" />
|
260
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
261
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
262
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
263
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
264
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
265
|
+
<envs />
|
266
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
267
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
268
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
269
|
+
<COVERAGE_PATTERN ENABLED="true">
|
270
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
271
|
+
</COVERAGE_PATTERN>
|
272
|
+
</EXTENSION>
|
273
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
274
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="" />
|
275
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
276
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE="" />
|
277
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
278
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
279
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
280
|
+
<method />
|
281
|
+
</configuration>
|
282
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
283
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
284
|
+
<module name="" />
|
285
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
286
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
287
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
288
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
289
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
290
|
+
<envs />
|
291
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
292
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
293
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
294
|
+
<COVERAGE_PATTERN ENABLED="true">
|
295
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
296
|
+
</COVERAGE_PATTERN>
|
297
|
+
</EXTENSION>
|
298
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
299
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
300
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
301
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
302
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
303
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
304
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
305
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
306
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
307
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
308
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
309
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
310
|
+
<method />
|
311
|
+
</configuration>
|
312
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
313
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
314
|
+
<module name="" />
|
315
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
316
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
317
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
318
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
319
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
320
|
+
<envs />
|
321
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
322
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
323
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
324
|
+
<COVERAGE_PATTERN ENABLED="true">
|
325
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
326
|
+
</COVERAGE_PATTERN>
|
327
|
+
</EXTENSION>
|
328
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
329
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
330
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
331
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
332
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
333
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
334
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
335
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
336
|
+
<method />
|
337
|
+
</configuration>
|
338
|
+
<configuration default="false" name="Unnamed" type="RakeRunConfigurationType" factoryName="Rake">
|
339
|
+
<module name="eve-updated" />
|
340
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
341
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
|
342
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
343
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
344
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
345
|
+
<envs />
|
346
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
347
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
348
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
349
|
+
<COVERAGE_PATTERN ENABLED="true">
|
350
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
351
|
+
</COVERAGE_PATTERN>
|
352
|
+
</EXTENSION>
|
353
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
354
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="spec" />
|
355
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
356
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE=":rspec " />
|
357
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
358
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
359
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
360
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
361
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
362
|
+
<method />
|
363
|
+
</configuration>
|
364
|
+
<list size="2">
|
365
|
+
<item index="0" class="java.lang.String" itemvalue="Rake.Unnamed" />
|
366
|
+
<item index="1" class="java.lang.String" itemvalue="RSpec.All specs in: spec" />
|
367
|
+
</list>
|
368
|
+
<recent_temporary>
|
369
|
+
<list size="1">
|
370
|
+
<item index="0" class="java.lang.String" itemvalue="RSpec.All specs in: spec" />
|
371
|
+
</list>
|
372
|
+
</recent_temporary>
|
373
|
+
</component>
|
374
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
375
|
+
<component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false" SSL_PROTOCOLS="sslv3">
|
376
|
+
<option name="USER" value="" />
|
377
|
+
<option name="PASSWORD" value="" />
|
378
|
+
<option name="mySSHConnectionTimeout" value="30000" />
|
379
|
+
<option name="mySSHReadTimeout" value="30000" />
|
380
|
+
<option name="LAST_MERGED_REVISION" />
|
381
|
+
<option name="MERGE_DRY_RUN" value="false" />
|
382
|
+
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
383
|
+
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
384
|
+
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
385
|
+
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
386
|
+
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
387
|
+
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
388
|
+
<option name="FORCE_UPDATE" value="false" />
|
389
|
+
<option name="IGNORE_EXTERNALS" value="false" />
|
390
|
+
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
391
|
+
</component>
|
392
|
+
<component name="TaskManager">
|
393
|
+
<task active="true" id="Default" summary="Default task">
|
394
|
+
<changelist id="e4dc19b6-830c-4795-a42f-dcfee30d89c0" name="Default" comment="" />
|
395
|
+
<created>1375065597507</created>
|
396
|
+
<updated>1375065597507</updated>
|
397
|
+
</task>
|
398
|
+
<task id="LOCAL-00001" summary="update">
|
399
|
+
<created>1375066395619</created>
|
400
|
+
<updated>1375066395619</updated>
|
401
|
+
</task>
|
402
|
+
<task id="LOCAL-00002" summary="update">
|
403
|
+
<created>1375068151890</created>
|
404
|
+
<updated>1375068151890</updated>
|
405
|
+
</task>
|
406
|
+
<option name="localTasksCounter" value="3" />
|
407
|
+
<servers />
|
408
|
+
</component>
|
409
|
+
<component name="ToolWindowManager">
|
410
|
+
<frame x="412" y="22" width="1018" height="803" extended-state="0" />
|
411
|
+
<editor active="false" />
|
412
|
+
<layout>
|
413
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
414
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3286119" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
415
|
+
<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" />
|
416
|
+
<window_info id="Heroku" 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" />
|
417
|
+
<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" />
|
418
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.35075375" sideWeight="0.6713881" order="0" side_tool="false" content_ui="combo" />
|
419
|
+
<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" />
|
420
|
+
<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" />
|
421
|
+
<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" />
|
422
|
+
<window_info id="Run" active="true" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3286119" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
423
|
+
<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" />
|
424
|
+
<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" />
|
425
|
+
<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" />
|
426
|
+
<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" />
|
427
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
428
|
+
<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" />
|
429
|
+
<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" />
|
430
|
+
<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" />
|
431
|
+
</layout>
|
432
|
+
</component>
|
433
|
+
<component name="VcsContentAnnotationSettings">
|
434
|
+
<option name="myLimit" value="2678400000" />
|
435
|
+
</component>
|
436
|
+
<component name="VcsManagerConfiguration">
|
437
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
438
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
439
|
+
<option name="CHECK_NEW_TODO" value="true" />
|
440
|
+
<option name="myTodoPanelSettings">
|
441
|
+
<value>
|
442
|
+
<are-packages-shown value="false" />
|
443
|
+
<are-modules-shown value="false" />
|
444
|
+
<flatten-packages value="false" />
|
445
|
+
<is-autoscroll-to-source value="false" />
|
446
|
+
</value>
|
447
|
+
</option>
|
448
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
449
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
450
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
451
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
452
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
453
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
454
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
455
|
+
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
456
|
+
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
457
|
+
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
458
|
+
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
459
|
+
<option name="SHORT_DIFF_HORIZONTALLY" value="true" />
|
460
|
+
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
461
|
+
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
462
|
+
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
463
|
+
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
464
|
+
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
465
|
+
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
466
|
+
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
|
467
|
+
<option name="LIMIT_HISTORY" value="true" />
|
468
|
+
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
|
469
|
+
<option name="UPDATE_FILTER_SCOPE_NAME" />
|
470
|
+
<option name="USE_COMMIT_MESSAGE_MARGIN" value="false" />
|
471
|
+
<option name="COMMIT_MESSAGE_MARGIN_SIZE" value="72" />
|
472
|
+
<option name="WRAP_WHEN_TYPING_REACHES_RIGHT_MARGIN" value="false" />
|
473
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
474
|
+
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
475
|
+
<option name="LAST_COMMIT_MESSAGE" value="update" />
|
476
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
477
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
478
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
479
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
480
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
481
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
482
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
483
|
+
<option name="ACTIVE_VCS_NAME" />
|
484
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
485
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
486
|
+
<option name="UPDATE_FILTER_BY_SCOPE" value="false" />
|
487
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
488
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
489
|
+
<MESSAGE value="update" />
|
490
|
+
</component>
|
491
|
+
<component name="XDebuggerManager">
|
492
|
+
<breakpoint-manager />
|
493
|
+
</component>
|
494
|
+
<component name="editorHistoryManager">
|
495
|
+
<entry file="file://$PROJECT_DIR$/eve.gemspec">
|
496
|
+
<provider selected="true" editor-type-id="text-editor">
|
497
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
498
|
+
<folding />
|
499
|
+
</state>
|
500
|
+
</provider>
|
501
|
+
</entry>
|
502
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
503
|
+
<provider selected="true" editor-type-id="text-editor">
|
504
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
505
|
+
<folding />
|
506
|
+
</state>
|
507
|
+
</provider>
|
508
|
+
</entry>
|
509
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
510
|
+
<provider selected="true" editor-type-id="text-editor">
|
511
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
512
|
+
<folding />
|
513
|
+
</state>
|
514
|
+
</provider>
|
515
|
+
</entry>
|
516
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
517
|
+
<provider selected="true" editor-type-id="text-editor">
|
518
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
519
|
+
<folding />
|
520
|
+
</state>
|
521
|
+
</provider>
|
522
|
+
</entry>
|
523
|
+
<entry file="file://$PROJECT_DIR$/eve.gemspec">
|
524
|
+
<provider selected="true" editor-type-id="text-editor">
|
525
|
+
<state line="22" column="13" selection-start="721" selection-end="721" vertical-scroll-proportion="0.0">
|
526
|
+
<folding />
|
527
|
+
</state>
|
528
|
+
</provider>
|
529
|
+
</entry>
|
530
|
+
<entry file="file://$PROJECT_DIR$/lib/eve/version.rb">
|
531
|
+
<provider selected="true" editor-type-id="text-editor">
|
532
|
+
<state line="2" column="33" selection-start="61" selection-end="61" vertical-scroll-proportion="0.06726457">
|
533
|
+
<folding />
|
534
|
+
</state>
|
535
|
+
</provider>
|
536
|
+
</entry>
|
537
|
+
</component>
|
538
|
+
<component name="masterDetails">
|
539
|
+
<states>
|
540
|
+
<state key="ScopeChooserConfigurable.UI">
|
541
|
+
<settings>
|
542
|
+
<splitter-proportions>
|
543
|
+
<option name="proportions">
|
544
|
+
<list>
|
545
|
+
<option value="0.2" />
|
546
|
+
</list>
|
547
|
+
</option>
|
548
|
+
</splitter-proportions>
|
549
|
+
</settings>
|
550
|
+
</state>
|
551
|
+
</states>
|
552
|
+
</component>
|
553
|
+
</project>
|
554
|
+
|