groupevite 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/groupevite.gemspec +1 -1
- data/lib/groupevite/version.rb +1 -1
- data/lib/groupevite.rb +18 -4
- metadata +3 -12
- data/.idea/.name +0 -1
- data/.idea/.rakeTasks +0 -7
- data/.idea/encodings.xml +0 -5
- data/.idea/groupevite.iml +0 -23
- data/.idea/misc.xml +0 -24
- data/.idea/modules.xml +0 -9
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.idea/vcs.xml +0 -7
- data/.idea/workspace.xml +0 -433
data/groupevite.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
|
|
|
8
8
|
gem.version = Groupevite::VERSION
|
|
9
9
|
gem.authors = ["Richard VanBreemen"]
|
|
10
10
|
gem.email = ["rvbsanjose@me.com"]
|
|
11
|
-
gem.description = %q{Groupon API wrapper for Groupevite}
|
|
11
|
+
gem.description = %q{Groupon API wrapper for Groupevite.com}
|
|
12
12
|
gem.summary = %q{A ruby gem for the Groupon API for Groupevite.com}
|
|
13
13
|
gem.homepage = "http://groupevite.com"
|
|
14
14
|
|
data/lib/groupevite/version.rb
CHANGED
data/lib/groupevite.rb
CHANGED
|
@@ -11,14 +11,28 @@ module Groupevite
|
|
|
11
11
|
@client_id = client_id
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
-
# Groupevite.com
|
|
15
|
-
|
|
14
|
+
# Return only the Groupon deals that Groupevite.com is interested in... Getaways!
|
|
15
|
+
# http://api.groupon.com/v2/deals{.json|.xml}
|
|
16
|
+
def getaways
|
|
16
17
|
Hashie::Mash.new(HTTParty.get(BASE_URI + '?client_id=' + @client_id + '&channel_id=getaways'))
|
|
17
18
|
end
|
|
18
19
|
|
|
19
|
-
# Return the detailed information about a
|
|
20
|
-
|
|
20
|
+
# Return the detailed information about a specific Groupon deal
|
|
21
|
+
# http://api.groupon.com/v2/deals/<id>{.json|.xml}
|
|
22
|
+
def getaway(deal_id)
|
|
21
23
|
Hashie::Mash.new(HTTParty.get(BASE_URI + '/' + deal_id + '?client_id=' + @client_id))
|
|
22
24
|
end
|
|
25
|
+
|
|
26
|
+
# Return a list of images for a specific Groupon deal
|
|
27
|
+
# https://api.groupon.com/v2/deals/<deal-id>/images{.json|xml}
|
|
28
|
+
def getaway_images(deal_id)
|
|
29
|
+
Hashie::Mash.new(HTTParty.get(BASE_URI + '/' + deal_id + '/images?client_id=' + @client_id))
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# Return a list of discussions for a specifid Groupon deal
|
|
33
|
+
# http://api.groupon.com/v2/deals/<deal-id>/posts{.json|.xml}
|
|
34
|
+
def discussions(deal_id)
|
|
35
|
+
Hashie::Mash.new(HTTParty.get(BASE_URI + '/' + deal_id + '/posts?client_id=' + @cleient_id))
|
|
36
|
+
end
|
|
23
37
|
end
|
|
24
38
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: groupevite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,9 +9,9 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-04-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
|
-
description: Groupon API wrapper for Groupevite
|
|
14
|
+
description: Groupon API wrapper for Groupevite.com
|
|
15
15
|
email:
|
|
16
16
|
- rvbsanjose@me.com
|
|
17
17
|
executables: []
|
|
@@ -19,15 +19,6 @@ extensions: []
|
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
21
|
- .gitignore
|
|
22
|
-
- .idea/.name
|
|
23
|
-
- .idea/.rakeTasks
|
|
24
|
-
- .idea/encodings.xml
|
|
25
|
-
- .idea/groupevite.iml
|
|
26
|
-
- .idea/misc.xml
|
|
27
|
-
- .idea/modules.xml
|
|
28
|
-
- .idea/scopes/scope_settings.xml
|
|
29
|
-
- .idea/vcs.xml
|
|
30
|
-
- .idea/workspace.xml
|
|
31
22
|
- Gemfile
|
|
32
23
|
- LICENSE.txt
|
|
33
24
|
- README.md
|
data/.idea/.name
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
groupevite
|
data/.idea/.rakeTasks
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Settings><!--This file was automatically generated by Ruby plugin.
|
|
3
|
-
You are allowed to:
|
|
4
|
-
1. Remove rake task
|
|
5
|
-
2. Add existing rake tasks
|
|
6
|
-
To add existing rake tasks automatically delete this file and reload the project.
|
|
7
|
-
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build groupevite-0.0.1.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Build and install groupevite-0.0.1.gem into system gems" fullCmd="install" taksId="install" /><RakeTask description="Create tag v0.0.1 and build and push groupevite-0.0.1.gem to Rubygems" fullCmd="release" taksId="release" /></RakeGroup></Settings>
|
data/.idea/encodings.xml
DELETED
data/.idea/groupevite.iml
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
|
3
|
-
<component name="FacetManager">
|
|
4
|
-
<facet type="gem" name="Gem">
|
|
5
|
-
<configuration>
|
|
6
|
-
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
|
7
|
-
<option name="GEM_APP_TEST_PATH" value="" />
|
|
8
|
-
<option name="GEM_APP_LIB_PATH" value="" />
|
|
9
|
-
</configuration>
|
|
10
|
-
</facet>
|
|
11
|
-
</component>
|
|
12
|
-
<component name="NewModuleRootManager">
|
|
13
|
-
<content url="file://$MODULE_DIR$" />
|
|
14
|
-
<orderEntry type="inheritedJdk" />
|
|
15
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.2.3, RVM: ruby-1.9.3-p327) [gem]" level="application" />
|
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="hashie (v2.0.2, RVM: ruby-1.9.3-p327) [gem]" level="application" />
|
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="httparty (v0.10.0, RVM: ruby-1.9.3-p327) [gem]" level="application" />
|
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.6.1, RVM: ruby-1.9.3-p327) [gem]" level="application" />
|
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_xml (v0.5.2, RVM: ruby-1.9.3-p327) [gem]" level="application" />
|
|
21
|
-
</component>
|
|
22
|
-
</module>
|
|
23
|
-
|
data/.idea/misc.xml
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-1.9.3-p327" project-jdk-type="RUBY_SDK" />
|
|
4
|
-
<component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false">
|
|
5
|
-
<option name="USER" value="" />
|
|
6
|
-
<option name="PASSWORD" value="" />
|
|
7
|
-
<option name="mySSHConnectionTimeout" value="30000" />
|
|
8
|
-
<option name="mySSHReadTimeout" value="30000" />
|
|
9
|
-
<option name="LAST_MERGED_REVISION" />
|
|
10
|
-
<option name="MERGE_DRY_RUN" value="false" />
|
|
11
|
-
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
|
12
|
-
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
|
13
|
-
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
|
14
|
-
<option name="DETECT_NESTED_COPIES" value="true" />
|
|
15
|
-
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
|
16
|
-
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
|
17
|
-
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
|
18
|
-
<option name="FORCE_UPDATE" value="false" />
|
|
19
|
-
<option name="IGNORE_EXTERNALS" value="false" />
|
|
20
|
-
<configuration useDefault="true">$USER_HOME$/.subversion</configuration>
|
|
21
|
-
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
|
22
|
-
</component>
|
|
23
|
-
</project>
|
|
24
|
-
|
data/.idea/modules.xml
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
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/groupevite.iml" filepath="$PROJECT_DIR$/.idea/groupevite.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|
|
9
|
-
|
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
|
@@ -1,433 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ChangeListManager">
|
|
4
|
-
<list default="true" id="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" name="Default" comment="" />
|
|
5
|
-
<ignored path="groupevite.iws" />
|
|
6
|
-
<ignored path=".idea/workspace.xml" />
|
|
7
|
-
<file path="/groupevite.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362556090917" ignored="false" />
|
|
8
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/.idea/workspace.xml" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362557302394" ignored="false" />
|
|
9
|
-
<file path="/groupevite.gemspec" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362269356872" ignored="false" />
|
|
10
|
-
<file path="/a.dummy" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362271053477" ignored="false" />
|
|
11
|
-
<file path="/Gemfile" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362307367414" ignored="false" />
|
|
12
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/Gemfile" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362556319894" ignored="false" />
|
|
13
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/config/routes.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362557054700" ignored="false" />
|
|
14
|
-
<file path="/routes.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362557052405" ignored="false" />
|
|
15
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/views/getaways/index.html.haml" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362555402824" ignored="false" />
|
|
16
|
-
<file path="/index.html.haml" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362555272112" ignored="false" />
|
|
17
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/controllers/getaways_controller.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362557291132" ignored="false" />
|
|
18
|
-
<file path="/getaways_controller.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362557285443" ignored="false" />
|
|
19
|
-
<file path="$USER_HOME$/Downloads/MAIN_FILE/HTML/self_catering.html" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362291450903" ignored="false" />
|
|
20
|
-
<file path="/self_catering.html" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362291450903" ignored="false" />
|
|
21
|
-
<file path="$USER_HOME$/Downloads/MAIN_FILE/HTML/search_results.html" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362295278651" ignored="false" />
|
|
22
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/assets/stylesheets/getaways.css.scss" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362295626323" ignored="false" />
|
|
23
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/assets/stylesheets/custom.css.scss" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362384088619" ignored="false" />
|
|
24
|
-
<file path="/custom.css.scss" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362384068202" ignored="false" />
|
|
25
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/views/layouts/application.html.erb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362297023386" ignored="false" />
|
|
26
|
-
<file path="/application.html.erb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362297017771" ignored="false" />
|
|
27
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/views/layouts/application.html.haml" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362382551316" ignored="false" />
|
|
28
|
-
<file path="/application.html.haml" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362382548690" ignored="false" />
|
|
29
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/assets/javascripts/getaways.js.coffee" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362376424773" ignored="false" />
|
|
30
|
-
<file path="/getaways.js.coffee" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362376423816" ignored="false" />
|
|
31
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/assets/stylesheets/application.css" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362307604614" ignored="false" />
|
|
32
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/assets/javascripts/application.js" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362307585047" ignored="false" />
|
|
33
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/spec/features/getaways_pages_spec.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362555533610" ignored="false" />
|
|
34
|
-
<file path="/getaways_pages_spec.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362555514125" ignored="false" />
|
|
35
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/spec/helpers/getaways_helper_spec.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362377246733" ignored="false" />
|
|
36
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/spec/views/getaways/index.html.haml_spec.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362377261185" ignored="false" />
|
|
37
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/spec/controllers/getaways_controller_spec.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362380212094" ignored="false" />
|
|
38
|
-
<file path="/getaways_controller_spec.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362380212398" ignored="false" />
|
|
39
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/spec/factories/getaways.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362379212726" ignored="false" />
|
|
40
|
-
<file path="/getaways.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362379211124" ignored="false" />
|
|
41
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/spec/factories.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362379786994" ignored="false" />
|
|
42
|
-
<file path="/factories.rb" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362379610900" ignored="false" />
|
|
43
|
-
<file path="$PROJECT_DIR$/../../rails/groupevite/app/views/layouts/header.html.haml" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362382570049" ignored="false" />
|
|
44
|
-
<file path="/Ruby Console" changelist="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" time="1362556275441" ignored="false" />
|
|
45
|
-
<option name="TRACKING_ENABLED" value="true" />
|
|
46
|
-
<option name="SHOW_DIALOG" value="false" />
|
|
47
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
48
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
49
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
50
|
-
</component>
|
|
51
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
52
|
-
<component name="CreatePatchCommitExecutor">
|
|
53
|
-
<option name="PATCH_PATH" value="" />
|
|
54
|
-
</component>
|
|
55
|
-
<component name="DaemonCodeAnalyzer">
|
|
56
|
-
<disable_hints />
|
|
57
|
-
</component>
|
|
58
|
-
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
|
59
|
-
<component name="FileEditorManager">
|
|
60
|
-
<leaf>
|
|
61
|
-
<file leaf-file-name="groupevite.rb" pinned="false" current="true" current-in-tab="true">
|
|
62
|
-
<entry file="file://$PROJECT_DIR$/lib/groupevite.rb">
|
|
63
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
64
|
-
<state line="6" column="40" selection-start="88" selection-end="112" vertical-scroll-proportion="0.13061224">
|
|
65
|
-
<folding />
|
|
66
|
-
</state>
|
|
67
|
-
</provider>
|
|
68
|
-
</entry>
|
|
69
|
-
</file>
|
|
70
|
-
<file leaf-file-name="groupevite.gemspec" pinned="false" current="false" current-in-tab="false">
|
|
71
|
-
<entry file="file://$PROJECT_DIR$/groupevite.gemspec">
|
|
72
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
73
|
-
<state line="18" column="3" selection-start="758" selection-end="758" vertical-scroll-proportion="0.0">
|
|
74
|
-
<folding />
|
|
75
|
-
</state>
|
|
76
|
-
</provider>
|
|
77
|
-
</entry>
|
|
78
|
-
</file>
|
|
79
|
-
<file leaf-file-name="version.rb" pinned="false" current="false" current-in-tab="false">
|
|
80
|
-
<entry file="file://$PROJECT_DIR$/lib/groupevite/version.rb">
|
|
81
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
82
|
-
<state line="1" column="18" selection-start="36" selection-end="36" vertical-scroll-proportion="0.0">
|
|
83
|
-
<folding />
|
|
84
|
-
</state>
|
|
85
|
-
</provider>
|
|
86
|
-
</entry>
|
|
87
|
-
</file>
|
|
88
|
-
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
|
89
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
90
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
91
|
-
<state line="5" column="0" selection-start="67" selection-end="67" vertical-scroll-proportion="0.0">
|
|
92
|
-
<folding />
|
|
93
|
-
</state>
|
|
94
|
-
</provider>
|
|
95
|
-
</entry>
|
|
96
|
-
</file>
|
|
97
|
-
</leaf>
|
|
98
|
-
</component>
|
|
99
|
-
<component name="FindManager">
|
|
100
|
-
<FindUsagesManager>
|
|
101
|
-
<setting name="OPEN_NEW_TAB" value="false" />
|
|
102
|
-
</FindUsagesManager>
|
|
103
|
-
</component>
|
|
104
|
-
<component name="IdeDocumentHistory">
|
|
105
|
-
<option name="changedFiles">
|
|
106
|
-
<list>
|
|
107
|
-
<option value="$PROJECT_DIR$/groupevite.gemspec" />
|
|
108
|
-
<option value="$PROJECT_DIR$/Gemfile" />
|
|
109
|
-
<option value="$PROJECT_DIR$/lib/groupevite.rb" />
|
|
110
|
-
<option value="$PROJECT_DIR$/lib/groupevite/version.rb" />
|
|
111
|
-
</list>
|
|
112
|
-
</option>
|
|
113
|
-
</component>
|
|
114
|
-
<component name="ProjectFrameBounds">
|
|
115
|
-
<option name="x" value="10" />
|
|
116
|
-
<option name="y" value="22" />
|
|
117
|
-
<option name="width" value="1420" />
|
|
118
|
-
<option name="height" value="860" />
|
|
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="groupevite" />
|
|
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="groupevite" />
|
|
157
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
158
|
-
</PATH_ELEMENT>
|
|
159
|
-
<PATH_ELEMENT>
|
|
160
|
-
<option name="myItemId" value="groupevite" />
|
|
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="groupevite" />
|
|
167
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
168
|
-
</PATH_ELEMENT>
|
|
169
|
-
<PATH_ELEMENT>
|
|
170
|
-
<option name="myItemId" value="groupevite" />
|
|
171
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
172
|
-
</PATH_ELEMENT>
|
|
173
|
-
<PATH_ELEMENT>
|
|
174
|
-
<option name="myItemId" value="lib" />
|
|
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="groupevite" />
|
|
181
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
182
|
-
</PATH_ELEMENT>
|
|
183
|
-
<PATH_ELEMENT>
|
|
184
|
-
<option name="myItemId" value="groupevite" />
|
|
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_ELEMENT>
|
|
192
|
-
<option name="myItemId" value="groupevite" />
|
|
193
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
194
|
-
</PATH_ELEMENT>
|
|
195
|
-
</PATH>
|
|
196
|
-
</subPane>
|
|
197
|
-
</pane>
|
|
198
|
-
<pane id="Scope" />
|
|
199
|
-
</panes>
|
|
200
|
-
</component>
|
|
201
|
-
<component name="PropertiesComponent">
|
|
202
|
-
<property name="options.splitter.main.proportions" value="0.3" />
|
|
203
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
204
|
-
<property name="options.lastSelected" value="vcs.Subversion" />
|
|
205
|
-
<property name="FullScreen" value="false" />
|
|
206
|
-
<property name="options.splitter.details.proportions" value="0.2" />
|
|
207
|
-
<property name="options.searchVisible" value="true" />
|
|
208
|
-
</component>
|
|
209
|
-
<component name="RunManager">
|
|
210
|
-
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
|
211
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
|
212
|
-
<module name="" />
|
|
213
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
214
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
215
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
216
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
217
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
218
|
-
<envs />
|
|
219
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
220
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
|
221
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
222
|
-
<COVERAGE_PATTERN ENABLED="true">
|
|
223
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
224
|
-
</COVERAGE_PATTERN>
|
|
225
|
-
</EXTENSION>
|
|
226
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
227
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
228
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
229
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
|
230
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
|
231
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
|
232
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
233
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
|
234
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
235
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
|
236
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
237
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
238
|
-
<method />
|
|
239
|
-
</configuration>
|
|
240
|
-
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
|
241
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
|
242
|
-
<module name="" />
|
|
243
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
244
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
245
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
246
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
247
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
248
|
-
<envs />
|
|
249
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
250
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
|
251
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
252
|
-
<COVERAGE_PATTERN ENABLED="true">
|
|
253
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
254
|
-
</COVERAGE_PATTERN>
|
|
255
|
-
</EXTENSION>
|
|
256
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
257
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
258
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
259
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
|
260
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
|
261
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
262
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
263
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
|
264
|
-
<method />
|
|
265
|
-
</configuration>
|
|
266
|
-
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
|
267
|
-
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
|
268
|
-
<module name="" />
|
|
269
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
270
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
271
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
272
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
273
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
274
|
-
<envs>
|
|
275
|
-
<env name="ANSICON" value="" />
|
|
276
|
-
</envs>
|
|
277
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
278
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
|
279
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
280
|
-
<COVERAGE_PATTERN ENABLED="true">
|
|
281
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
282
|
-
</COVERAGE_PATTERN>
|
|
283
|
-
</EXTENSION>
|
|
284
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
285
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
|
286
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
287
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
288
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
289
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
|
290
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
|
291
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
|
292
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
293
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
294
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
|
295
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
296
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
|
297
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
|
298
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
|
299
|
-
<method />
|
|
300
|
-
</configuration>
|
|
301
|
-
<list size="0" />
|
|
302
|
-
</component>
|
|
303
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
|
304
|
-
<component name="TaskManager">
|
|
305
|
-
<task active="true" id="Default" summary="Default task">
|
|
306
|
-
<changelist id="c9cac5b3-a1aa-4240-9c8d-2857efc35cc0" name="Default" comment="" />
|
|
307
|
-
<created>1362269166412</created>
|
|
308
|
-
<updated>1362269166412</updated>
|
|
309
|
-
</task>
|
|
310
|
-
<servers />
|
|
311
|
-
</component>
|
|
312
|
-
<component name="ToolWindowManager">
|
|
313
|
-
<frame x="10" y="22" width="1420" height="860" extended-state="0" />
|
|
314
|
-
<editor active="false" />
|
|
315
|
-
<layout>
|
|
316
|
-
<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" />
|
|
317
|
-
<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" />
|
|
318
|
-
<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" />
|
|
319
|
-
<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" />
|
|
320
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.2532751" sideWeight="0.67058825" order="0" side_tool="false" content_ui="combo" />
|
|
321
|
-
<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" />
|
|
322
|
-
<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="false" content_ui="tabs" />
|
|
323
|
-
<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="false" content_ui="tabs" />
|
|
324
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32941177" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
325
|
-
<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" />
|
|
326
|
-
<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" />
|
|
327
|
-
<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" />
|
|
328
|
-
<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" />
|
|
329
|
-
<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" />
|
|
330
|
-
<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" />
|
|
331
|
-
<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" />
|
|
332
|
-
<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" />
|
|
333
|
-
</layout>
|
|
334
|
-
</component>
|
|
335
|
-
<component name="VcsContentAnnotationSettings">
|
|
336
|
-
<option name="myLimit" value="2678400000" />
|
|
337
|
-
</component>
|
|
338
|
-
<component name="VcsManagerConfiguration">
|
|
339
|
-
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
|
340
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
341
|
-
<option name="CHECK_NEW_TODO" value="true" />
|
|
342
|
-
<option name="myTodoPanelSettings">
|
|
343
|
-
<value>
|
|
344
|
-
<are-packages-shown value="false" />
|
|
345
|
-
<are-modules-shown value="false" />
|
|
346
|
-
<flatten-packages value="false" />
|
|
347
|
-
<is-autoscroll-to-source value="false" />
|
|
348
|
-
</value>
|
|
349
|
-
</option>
|
|
350
|
-
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
|
351
|
-
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
|
352
|
-
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
|
353
|
-
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
|
354
|
-
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
|
355
|
-
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
|
356
|
-
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
|
357
|
-
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
|
358
|
-
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
|
359
|
-
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
|
360
|
-
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
|
361
|
-
<option name="SHORT_DIFF_HORISONTALLY" value="true" />
|
|
362
|
-
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
|
363
|
-
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
|
364
|
-
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
|
365
|
-
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
|
366
|
-
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
|
367
|
-
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
|
368
|
-
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
|
|
369
|
-
<option name="LIMIT_HISTORY" value="true" />
|
|
370
|
-
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
|
|
371
|
-
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
|
372
|
-
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
|
373
|
-
<option name="LAST_COMMIT_MESSAGE" />
|
|
374
|
-
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
|
375
|
-
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
376
|
-
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
|
377
|
-
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
|
378
|
-
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
|
379
|
-
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
|
380
|
-
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
|
381
|
-
<option name="ACTIVE_VCS_NAME" />
|
|
382
|
-
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
|
383
|
-
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
|
384
|
-
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
|
385
|
-
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
|
386
|
-
</component>
|
|
387
|
-
<component name="XDebuggerManager">
|
|
388
|
-
<breakpoint-manager />
|
|
389
|
-
</component>
|
|
390
|
-
<component name="editorHistoryManager">
|
|
391
|
-
<entry file="file://$PROJECT_DIR$/lib/groupevite.rb">
|
|
392
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
393
|
-
<state line="15" column="78" selection-start="310" selection-end="310" vertical-scroll-proportion="0.0">
|
|
394
|
-
<folding />
|
|
395
|
-
</state>
|
|
396
|
-
</provider>
|
|
397
|
-
</entry>
|
|
398
|
-
<entry file="file://$PROJECT_DIR$/LICENSE.txt">
|
|
399
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
400
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
|
|
401
|
-
</provider>
|
|
402
|
-
</entry>
|
|
403
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
404
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
405
|
-
<state line="5" column="0" selection-start="67" selection-end="67" vertical-scroll-proportion="0.0">
|
|
406
|
-
<folding />
|
|
407
|
-
</state>
|
|
408
|
-
</provider>
|
|
409
|
-
</entry>
|
|
410
|
-
<entry file="file://$PROJECT_DIR$/lib/groupevite/version.rb">
|
|
411
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
412
|
-
<state line="1" column="18" selection-start="36" selection-end="36" vertical-scroll-proportion="0.0">
|
|
413
|
-
<folding />
|
|
414
|
-
</state>
|
|
415
|
-
</provider>
|
|
416
|
-
</entry>
|
|
417
|
-
<entry file="file://$PROJECT_DIR$/groupevite.gemspec">
|
|
418
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
419
|
-
<state line="18" column="3" selection-start="758" selection-end="758" vertical-scroll-proportion="0.0">
|
|
420
|
-
<folding />
|
|
421
|
-
</state>
|
|
422
|
-
</provider>
|
|
423
|
-
</entry>
|
|
424
|
-
<entry file="file://$PROJECT_DIR$/lib/groupevite.rb">
|
|
425
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
426
|
-
<state line="6" column="40" selection-start="88" selection-end="112" vertical-scroll-proportion="0.13061224">
|
|
427
|
-
<folding />
|
|
428
|
-
</state>
|
|
429
|
-
</provider>
|
|
430
|
-
</entry>
|
|
431
|
-
</component>
|
|
432
|
-
</project>
|
|
433
|
-
|