musicbrainz_ruby 0.0.5 → 0.1.3

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.
Files changed (120) hide show
  1. data/.document +5 -0
  2. data/.gitignore +47 -15
  3. data/.idea/.name +1 -0
  4. data/.idea/.rakeTasks +7 -0
  5. data/.idea/codeStyleSettings.xml +13 -0
  6. data/.idea/dictionaries/j4k4x.xml +3 -0
  7. data/.idea/encodings.xml +5 -0
  8. data/.idea/inspectionProfiles/Project_Default.xml +11 -0
  9. data/.idea/inspectionProfiles/profiles_settings.xml +7 -0
  10. data/.idea/misc.xml +8 -0
  11. data/.idea/modules.xml +9 -0
  12. data/.idea/musicbrainz_ruby.iml +67 -0
  13. data/.idea/scopes/scope_settings.xml +5 -0
  14. data/.idea/vcs.xml +8 -0
  15. data/.idea/workspace.xml +675 -0
  16. data/.rspec +1 -0
  17. data/Gemfile +26 -6
  18. data/Gemfile.lock +173 -0
  19. data/{LICENSE → LICENSE.txt} +1 -3
  20. data/README.rdoc +19 -0
  21. data/Rakefile +58 -2
  22. data/VERSION +1 -0
  23. data/database.yml +20 -0
  24. data/features/musicbrainz_ruby.feature +16 -0
  25. data/features/releases/release_query.feature +19 -0
  26. data/features/step_definitions/MB/rails_steps.rb +121 -0
  27. data/features/step_definitions/MB/release_steps.rb/release_steps.rb +0 -0
  28. data/features/support/cukigem.rb +26 -0
  29. data/features/support/env.rb +19 -0
  30. data/lib/generators/music_brainz/install/initializer_generator.rb +5 -0
  31. data/lib/generators/music_brainz/install/install_generator.rb +14 -0
  32. data/lib/generators/music_brainz/install/templates/config/initializers/musicbrainz.rb.erb +47 -0
  33. data/lib/musicbrainz/artist.rb +59 -0
  34. data/lib/musicbrainz/base.rb +30 -3
  35. data/lib/musicbrainz/label.rb +4 -0
  36. data/lib/musicbrainz/query.rb +83 -0
  37. data/lib/musicbrainz/recording.rb +4 -0
  38. data/lib/musicbrainz/release.rb +77 -8
  39. data/lib/musicbrainz/release_group.rb +4 -0
  40. data/lib/musicbrainz/string.rb +47 -0
  41. data/lib/musicbrainz/work.rb +4 -0
  42. data/lib/musicbrainz_ruby.rb +19 -0
  43. data/log/test.log +0 -0
  44. data/musicbrainz_ruby.gemspec +194 -0
  45. data/report.html +478 -0
  46. data/spec/factories.rb +9 -0
  47. data/spec/musicbrainz_ruby_spec.rb +7 -0
  48. data/spec/spec_helper.rb +12 -0
  49. data/tmp/rails_app/.gitignore +15 -0
  50. data/tmp/rails_app/Gemfile +21 -0
  51. data/tmp/rails_app/Gemfile.lock +183 -0
  52. data/tmp/rails_app/README.rdoc +261 -0
  53. data/tmp/rails_app/Rakefile +7 -0
  54. data/tmp/rails_app/app/assets/images/rails.png +0 -0
  55. data/tmp/rails_app/app/assets/javascripts/application.js +15 -0
  56. data/tmp/rails_app/app/assets/javascripts/mmbrains.js.coffee +3 -0
  57. data/tmp/rails_app/app/assets/stylesheets/application.css +13 -0
  58. data/tmp/rails_app/app/assets/stylesheets/mmbrains.css.scss +3 -0
  59. data/tmp/rails_app/app/assets/stylesheets/scaffolds.css.scss +56 -0
  60. data/tmp/rails_app/app/controllers/application_controller.rb +2 -0
  61. data/tmp/rails_app/app/controllers/mmbrains_controller.rb +7 -0
  62. data/tmp/rails_app/app/controllers/models_controller.rb +10 -0
  63. data/tmp/rails_app/app/helpers/application_helper.rb +2 -0
  64. data/tmp/rails_app/app/helpers/mmbrains_helper.rb +2 -0
  65. data/tmp/rails_app/app/mailers/.gitkeep +0 -0
  66. data/tmp/rails_app/app/models/.gitkeep +0 -0
  67. data/tmp/rails_app/app/models/mmbrain.rb +3 -0
  68. data/tmp/rails_app/app/views/layouts/application.html.erb +14 -0
  69. data/tmp/rails_app/app/views/mmbrains/_form.html.erb +21 -0
  70. data/tmp/rails_app/app/views/mmbrains/edit.html.erb +6 -0
  71. data/tmp/rails_app/app/views/mmbrains/index.html.erb +1 -0
  72. data/tmp/rails_app/app/views/mmbrains/new.html.erb +5 -0
  73. data/tmp/rails_app/app/views/mmbrains/show.html.erb +10 -0
  74. data/tmp/rails_app/app/views/models/show.html.erb +1 -0
  75. data/tmp/rails_app/config.ru +4 -0
  76. data/tmp/rails_app/config/application.rb +62 -0
  77. data/tmp/rails_app/config/boot.rb +6 -0
  78. data/tmp/rails_app/config/database.yml +28 -0
  79. data/tmp/rails_app/config/environment.rb +5 -0
  80. data/tmp/rails_app/config/environments/development.rb +37 -0
  81. data/tmp/rails_app/config/environments/production.rb +67 -0
  82. data/tmp/rails_app/config/environments/test.rb +37 -0
  83. data/tmp/rails_app/config/initializers/backtrace_silencers.rb +7 -0
  84. data/tmp/rails_app/config/initializers/inflections.rb +15 -0
  85. data/tmp/rails_app/config/initializers/mime_types.rb +5 -0
  86. data/tmp/rails_app/config/initializers/secret_token.rb +7 -0
  87. data/tmp/rails_app/config/initializers/session_store.rb +8 -0
  88. data/tmp/rails_app/config/initializers/wrap_parameters.rb +14 -0
  89. data/tmp/rails_app/config/locales/en.yml +5 -0
  90. data/tmp/rails_app/config/routes.rb +3 -0
  91. data/tmp/rails_app/db/migrate/20120630070553_create_mmbrains.rb +9 -0
  92. data/tmp/rails_app/db/seeds.rb +7 -0
  93. data/tmp/rails_app/lib/assets/.gitkeep +0 -0
  94. data/tmp/rails_app/lib/tasks/.gitkeep +0 -0
  95. data/tmp/rails_app/log/.gitkeep +0 -0
  96. data/tmp/rails_app/public/404.html +26 -0
  97. data/tmp/rails_app/public/422.html +26 -0
  98. data/tmp/rails_app/public/500.html +25 -0
  99. data/tmp/rails_app/public/favicon.ico +0 -0
  100. data/tmp/rails_app/public/index.html +241 -0
  101. data/tmp/rails_app/public/robots.txt +5 -0
  102. data/tmp/rails_app/script/rails +6 -0
  103. data/tmp/rails_app/test/fixtures/.gitkeep +0 -0
  104. data/tmp/rails_app/test/fixtures/mmbrains.yml +7 -0
  105. data/tmp/rails_app/test/functional/.gitkeep +0 -0
  106. data/tmp/rails_app/test/functional/mmbrains_controller_test.rb +49 -0
  107. data/tmp/rails_app/test/integration/.gitkeep +0 -0
  108. data/tmp/rails_app/test/performance/browsing_test.rb +12 -0
  109. data/tmp/rails_app/test/test_helper.rb +13 -0
  110. data/tmp/rails_app/test/unit/.gitkeep +0 -0
  111. data/tmp/rails_app/test/unit/helpers/mmbrains_helper_test.rb +4 -0
  112. data/tmp/rails_app/test/unit/mmbrain_test.rb +7 -0
  113. data/tmp/rails_app/vendor/assets/javascripts/.gitkeep +0 -0
  114. data/tmp/rails_app/vendor/assets/stylesheets/.gitkeep +0 -0
  115. data/tmp/rails_app/vendor/plugins/.gitkeep +0 -0
  116. metadata +350 -11
  117. data/README.md +0 -29
  118. data/lib/music_brainz.rb +0 -17
  119. data/lib/musicbrainz/version.rb +0 -3
  120. data/musicbrainz.gemspec +0 -21
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.gitignore CHANGED
@@ -1,17 +1,49 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
1
+ # rcov generated
9
2
  coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
3
+ coverage.data
4
+
5
+ # rdoc generated
13
6
  rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
7
+
8
+ # yard generated
9
+ doc
10
+ .yardoc
11
+
12
+ # bundler
13
+ .bundle
14
+
15
+ # jeweler generated
16
+ pkg
17
+
18
+ # Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
19
+ #
20
+ # * Create a file at ~/.gitignore
21
+ # * Include files you want ignored
22
+ # * Run: git config --global core.excludesfile ~/.gitignore
23
+ #
24
+ # After doing this, these files will be ignored in all your git projects,
25
+ # saving you from having to 'pollute' every project you touch with them
26
+ #
27
+ # Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
28
+ #
29
+ # For MacOS:
30
+ #
31
+ #.DS_Store
32
+
33
+ # For TextMate
34
+ #*.tmproj
35
+ #tmtags
36
+
37
+ # For emacs:
38
+ #*~
39
+ #\#*
40
+ #.\#*
41
+
42
+ # For vim:
43
+ #*.swp
44
+
45
+ # For redcar:
46
+ #.redcar
47
+
48
+ # For rubinius:
49
+ #*.rbc
@@ -0,0 +1 @@
1
+ musicbrainz_ruby
@@ -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" /></Settings>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectCodeStyleSettingsManager">
4
+ <option name="PER_PROJECT_SETTINGS">
5
+ <value>
6
+ <XML>
7
+ <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
8
+ </XML>
9
+ </value>
10
+ </option>
11
+ </component>
12
+ </project>
13
+
@@ -0,0 +1,3 @@
1
+ <component name="ProjectDictionaryState">
2
+ <dictionary name="j4k4x" />
3
+ </component>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
+ </project>
5
+
@@ -0,0 +1,11 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0" is_locked="false">
3
+ <option name="myName" value="Project Default" />
4
+ <option name="myLocal" value="false" />
5
+ <inspection_tool class="SqlAmbiguousColumnInspection" enabled="true" level="WARNING" enabled_by_default="true" />
6
+ <inspection_tool class="SqlIdentifierInspection" enabled="true" level="WARNING" enabled_by_default="true" />
7
+ <inspection_tool class="SqlInsertValuesInspection" enabled="true" level="WARNING" enabled_by_default="true" />
8
+ <inspection_tool class="SqlResolveInspection" enabled="true" level="WARNING" enabled_by_default="true" />
9
+ <inspection_tool class="SqlTypeInspection" enabled="true" level="WARNING" enabled_by_default="true" />
10
+ </profile>
11
+ </component>
@@ -0,0 +1,7 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <settings>
3
+ <option name="PROJECT_PROFILE" value="Project Default" />
4
+ <option name="USE_PROJECT_PROFILE" value="true" />
5
+ <version value="1.0" />
6
+ </settings>
7
+ </component>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectResources">
4
+ <default-html-doctype>http://www.w3.org/1999/xhtml</default-html-doctype>
5
+ </component>
6
+ <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-1.9.3-p194 [global]" project-jdk-type="RUBY_SDK" />
7
+ </project>
8
+
@@ -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/musicbrainz_ruby.iml" filepath="$PROJECT_DIR$/.idea/musicbrainz_ruby.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
9
+
@@ -0,0 +1,67 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$" />
5
+ <orderEntry type="inheritedJdk" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ <orderEntry type="library" scope="PROVIDED" name="actionmailer (v3.2.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
8
+ <orderEntry type="library" scope="PROVIDED" name="actionpack (v3.2.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
9
+ <orderEntry type="library" scope="PROVIDED" name="activemodel (v3.2.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
10
+ <orderEntry type="library" scope="PROVIDED" name="activerecord (v3.2.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="activeresource (v3.2.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="activesupport (v3.2.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
13
+ <orderEntry type="library" scope="PROVIDED" name="addressable (v2.2.8, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
14
+ <orderEntry type="library" scope="PROVIDED" name="archive-tar-minitar (v0.5.2, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
15
+ <orderEntry type="library" scope="PROVIDED" name="arel (v3.0.2, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
16
+ <orderEntry type="library" scope="PROVIDED" name="builder (v3.0.0, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
17
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v1.1.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="capybara (v1.1.2, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
19
+ <orderEntry type="library" scope="PROVIDED" name="childprocess (v0.3.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
20
+ <orderEntry type="library" scope="PROVIDED" name="columnize (v0.3.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="cucumber (v1.2.1, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
22
+ <orderEntry type="library" scope="PROVIDED" name="cucumber-rails (v1.3.0, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
23
+ <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.1.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
24
+ <orderEntry type="library" scope="PROVIDED" name="erubis (v2.7.0, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
25
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.0.11, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
26
+ <orderEntry type="library" scope="PROVIDED" name="git (v1.2.5, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
27
+ <orderEntry type="library" scope="PROVIDED" name="hike (v1.2.1, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
28
+ <orderEntry type="library" scope="PROVIDED" name="i18n (v0.6.0, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="jeweler (v1.8.4, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
30
+ <orderEntry type="library" scope="PROVIDED" name="journey (v1.0.4, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
31
+ <orderEntry type="library" scope="PROVIDED" name="json (v1.7.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
32
+ <orderEntry type="library" scope="PROVIDED" name="libwebsocket (v0.1.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="linecache19 (v0.5.13, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
34
+ <orderEntry type="library" scope="PROVIDED" name="mail (v2.4.4, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
35
+ <orderEntry type="library" scope="PROVIDED" name="mime-types (v1.19, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
36
+ <orderEntry type="library" scope="PROVIDED" name="multi_json (v1.3.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
37
+ <orderEntry type="library" scope="PROVIDED" name="polyglot (v0.3.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
38
+ <orderEntry type="library" scope="PROVIDED" name="rack (v1.4.1, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
39
+ <orderEntry type="library" scope="PROVIDED" name="rack-cache (v1.2, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
40
+ <orderEntry type="library" scope="PROVIDED" name="rack-ssl (v1.3.2, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
41
+ <orderEntry type="library" scope="PROVIDED" name="rack-test (v0.6.1, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
42
+ <orderEntry type="library" scope="PROVIDED" name="rails (v3.2.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
43
+ <orderEntry type="library" scope="PROVIDED" name="railties (v3.2.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
44
+ <orderEntry type="library" scope="PROVIDED" name="rake (v0.9.2.2, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
45
+ <orderEntry type="library" scope="PROVIDED" name="rdoc (v3.12, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
46
+ <orderEntry type="library" scope="PROVIDED" name="ruby-debug-base19 (v0.11.25, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
47
+ <orderEntry type="library" scope="PROVIDED" name="ruby-debug19 (v0.11.6, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
48
+ <orderEntry type="library" scope="PROVIDED" name="ruby_core_source (v0.1.5, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
49
+ <orderEntry type="library" scope="PROVIDED" name="rubyzip (v0.9.9, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
50
+ <orderEntry type="library" scope="PROVIDED" name="selenium-webdriver (v2.24.0, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
51
+ <orderEntry type="library" scope="PROVIDED" name="simplecov (v0.6.4, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
52
+ <orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.5.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
53
+ <orderEntry type="library" scope="PROVIDED" name="spork (v1.0.0rc3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
54
+ <orderEntry type="library" scope="PROVIDED" name="spork-rails (v3.2.0, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
55
+ <orderEntry type="library" scope="PROVIDED" name="sprockets (v2.1.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
56
+ <orderEntry type="library" scope="PROVIDED" name="thor (v0.15.4, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
57
+ <orderEntry type="library" scope="PROVIDED" name="tilt (v1.3.3, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
58
+ <orderEntry type="library" scope="PROVIDED" name="treetop (v1.4.10, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
59
+ <orderEntry type="library" scope="PROVIDED" name="tzinfo (v0.3.33, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
60
+ <orderEntry type="library" scope="PROVIDED" name="xpath (v0.1.4, RVM: ruby-1.9.3-p194 [global]) [gem]" level="application" />
61
+ </component>
62
+ <component name="RModuleSettingsStorage">
63
+ <LOAD_PATH number="1" string0="$MODULE_DIR$" />
64
+ <I18N_FOLDERS number="0" />
65
+ </component>
66
+ </module>
67
+
@@ -0,0 +1,5 @@
1
+ <component name="DependencyValidationManager">
2
+ <state>
3
+ <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
+ </state>
5
+ </component>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="" />
5
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
6
+ </component>
7
+ </project>
8
+
@@ -0,0 +1,675 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ChangeListManager">
4
+ <list default="true" id="5217c6b1-2171-4fbe-bcb9-b31c953acd53" name="Default" comment="">
5
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/artist.rb" />
6
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/base.rb" />
7
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/label.rb" />
8
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/query.rb" />
9
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/recording.rb" />
10
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/release.rb" />
11
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/release_group.rb" />
12
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/string.rb" />
13
+ <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/musicbrainz/work.rb" />
14
+ <change type="DELETED" beforePath="$PROJECT_DIR$/tmp/rails_app/config/database.yml" afterPath="" />
15
+ <change type="DELETED" beforePath="$PROJECT_DIR$/tmp/rails_app/config/environment.rb" afterPath="" />
16
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/musicbrainz_ruby.iml" afterPath="$PROJECT_DIR$/.idea/musicbrainz_ruby.iml" />
17
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.document" afterPath="$PROJECT_DIR$/.document" />
18
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.gitignore" afterPath="$PROJECT_DIR$/.gitignore" />
19
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/codeStyleSettings.xml" afterPath="$PROJECT_DIR$/.idea/codeStyleSettings.xml" />
20
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/dictionaries/j4k4x.xml" afterPath="$PROJECT_DIR$/.idea/dictionaries/j4k4x.xml" />
21
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/encodings.xml" afterPath="$PROJECT_DIR$/.idea/encodings.xml" />
22
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/inspectionProfiles/Project_Default.xml" afterPath="$PROJECT_DIR$/.idea/inspectionProfiles/Project_Default.xml" />
23
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/inspectionProfiles/profiles_settings.xml" afterPath="$PROJECT_DIR$/.idea/inspectionProfiles/profiles_settings.xml" />
24
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/misc.xml" afterPath="$PROJECT_DIR$/.idea/misc.xml" />
25
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/modules.xml" afterPath="$PROJECT_DIR$/.idea/modules.xml" />
26
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/scopes/scope_settings.xml" afterPath="$PROJECT_DIR$/.idea/scopes/scope_settings.xml" />
27
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/vcs.xml" afterPath="$PROJECT_DIR$/.idea/vcs.xml" />
28
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
29
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.rspec" afterPath="$PROJECT_DIR$/.rspec" />
30
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/Gemfile" afterPath="$PROJECT_DIR$/Gemfile" />
31
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/LICENSE.txt" afterPath="$PROJECT_DIR$/LICENSE.txt" />
32
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/README.rdoc" afterPath="$PROJECT_DIR$/README.rdoc" />
33
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/Rakefile" afterPath="$PROJECT_DIR$/Rakefile" />
34
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/VERSION" afterPath="$PROJECT_DIR$/VERSION" />
35
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/features/musicbrainz_ruby.feature" afterPath="$PROJECT_DIR$/features/musicbrainz_ruby.feature" />
36
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/features/step_definitions/musicbrainz_ruby_steps.rb" afterPath="$PROJECT_DIR$/features/step_definitions/musicbrainz_ruby_steps.rb" />
37
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/features/support/cukigem.rb" afterPath="$PROJECT_DIR$/features/support/cukigem.rb" />
38
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/features/support/env.rb" afterPath="$PROJECT_DIR$/features/support/env.rb" />
39
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/musicbrainz_ruby.rb" afterPath="$PROJECT_DIR$/lib/musicbrainz_ruby.rb" />
40
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/spec/musicbrainz_ruby_spec.rb" afterPath="$PROJECT_DIR$/spec/musicbrainz_ruby_spec.rb" />
41
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/spec/spec_helper.rb" afterPath="$PROJECT_DIR$/spec/spec_helper.rb" />
42
+ </list>
43
+ <ignored path="musicbrainz_ruby.iws" />
44
+ <ignored path=".idea/workspace.xml" />
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="DatabaseView">
59
+ <flatten value="false" />
60
+ <groupTables value="false" />
61
+ </component>
62
+ <component name="FavoritesManager">
63
+ <favorites_list name="musicbrainz_ruby" />
64
+ </component>
65
+ <component name="FileEditorManager">
66
+ <leaf>
67
+ <file leaf-file-name="Gemfile" pinned="false" current="true" current-in-tab="true">
68
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/Gemfile">
69
+ <provider selected="true" editor-type-id="text-editor">
70
+ <state line="5" column="13" selection-start="106" selection-end="106" vertical-scroll-proportion="0.12690355">
71
+ <folding />
72
+ </state>
73
+ </provider>
74
+ </entry>
75
+ </file>
76
+ <file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
77
+ <entry file="file://$PROJECT_DIR$/Gemfile">
78
+ <provider selected="true" editor-type-id="text-editor">
79
+ <state line="19" column="39" selection-start="471" selection-end="471" vertical-scroll-proportion="0.0">
80
+ <folding />
81
+ </state>
82
+ </provider>
83
+ </entry>
84
+ </file>
85
+ <file leaf-file-name="cukigem_steps.rb" pinned="false" current="false" current-in-tab="false">
86
+ <entry file="file://$PROJECT_DIR$/features/step_definitions/cukigem_steps.rb">
87
+ <provider selected="true" editor-type-id="text-editor">
88
+ <state line="125" column="47" selection-start="3499" selection-end="4053" vertical-scroll-proportion="0.0">
89
+ <folding />
90
+ </state>
91
+ </provider>
92
+ </entry>
93
+ </file>
94
+ <file leaf-file-name="database.yml" pinned="false" current="false" current-in-tab="false">
95
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/config/database.yml">
96
+ <provider selected="true" editor-type-id="text-editor">
97
+ <state line="14" column="11" selection-start="416" selection-end="416" vertical-scroll-proportion="0.0">
98
+ <folding />
99
+ </state>
100
+ </provider>
101
+ </entry>
102
+ </file>
103
+ <file leaf-file-name="development.sqlite3" pinned="false" current="false" current-in-tab="false">
104
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/db/development.sqlite3">
105
+ <provider selected="true" editor-type-id="text-editor">
106
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
107
+ <folding />
108
+ </state>
109
+ </provider>
110
+ </entry>
111
+ </file>
112
+ <file leaf-file-name="test.sqlite3" pinned="false" current="false" current-in-tab="false">
113
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/db/test.sqlite3">
114
+ <provider selected="true" editor-type-id="text-editor">
115
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
116
+ <folding />
117
+ </state>
118
+ </provider>
119
+ </entry>
120
+ </file>
121
+ <file leaf-file-name="environment.rb" pinned="false" current="false" current-in-tab="false">
122
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/config/environment.rb">
123
+ <provider selected="true" editor-type-id="text-editor">
124
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
125
+ <folding />
126
+ </state>
127
+ </provider>
128
+ </entry>
129
+ </file>
130
+ <file leaf-file-name="application.rb" pinned="false" current="false" current-in-tab="false">
131
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/config/application.rb">
132
+ <provider selected="true" editor-type-id="text-editor">
133
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
134
+ <folding />
135
+ </state>
136
+ </provider>
137
+ </entry>
138
+ </file>
139
+ </leaf>
140
+ </component>
141
+ <component name="FindManager">
142
+ <FindUsagesManager>
143
+ <setting name="OPEN_NEW_TAB" value="false" />
144
+ </FindUsagesManager>
145
+ </component>
146
+ <component name="Git.Settings">
147
+ <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
148
+ </component>
149
+ <component name="IdeDocumentHistory">
150
+ <option name="changedFiles">
151
+ <list>
152
+ <option value="$PROJECT_DIR$/lib/musicbrainz/release.rb" />
153
+ <option value="$PROJECT_DIR$/config/environment/database.yml" />
154
+ <option value="$PROJECT_DIR$/tmp/rails_app/config/environment.rb" />
155
+ <option value="$PROJECT_DIR$/features/support/cukigem.rb" />
156
+ <option value="$PROJECT_DIR$/lib/musicbrainz/version.rb" />
157
+ <option value="$PROJECT_DIR$/lib/musicbrainz_ruby.rb" />
158
+ <option value="$PROJECT_DIR$/Rakefile" />
159
+ <option value="$PROJECT_DIR$/VERSION" />
160
+ <option value="$PROJECT_DIR$/tmp/rails_app/Gemfile" />
161
+ <option value="$PROJECT_DIR$/features/musicbrainz_ruby.feature" />
162
+ <option value="$PROJECT_DIR$/tmp/rails_app/config/database.yml" />
163
+ <option value="$PROJECT_DIR$/features/step_definitions/cukigem_steps.rb" />
164
+ <option value="$PROJECT_DIR$/Gemfile" />
165
+ </list>
166
+ </option>
167
+ </component>
168
+ <component name="ProjectFrameBounds">
169
+ <option name="x" value="14" />
170
+ <option name="y" value="25" />
171
+ <option name="width" value="1252" />
172
+ <option name="height" value="761" />
173
+ </component>
174
+ <component name="ProjectInspectionProfilesVisibleTreeState">
175
+ <entry key="Project Default">
176
+ <profile-state>
177
+ <expanded-state>
178
+ <State>
179
+ <id />
180
+ </State>
181
+ </expanded-state>
182
+ <selected-state>
183
+ <State>
184
+ <id>SQL</id>
185
+ </State>
186
+ </selected-state>
187
+ </profile-state>
188
+ </entry>
189
+ </component>
190
+ <component name="ProjectLevelVcsManager" settingsEditedManually="true">
191
+ <OptionsSetting value="true" id="Add" />
192
+ <OptionsSetting value="true" id="Remove" />
193
+ <OptionsSetting value="true" id="Checkout" />
194
+ <OptionsSetting value="true" id="Update" />
195
+ <OptionsSetting value="true" id="Status" />
196
+ <OptionsSetting value="true" id="Edit" />
197
+ <ConfirmationsSetting value="0" id="Add" />
198
+ <ConfirmationsSetting value="0" id="Remove" />
199
+ </component>
200
+ <component name="ProjectReloadState">
201
+ <option name="STATE" value="0" />
202
+ </component>
203
+ <component name="ProjectView">
204
+ <navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
205
+ <flattenPackages />
206
+ <showMembers />
207
+ <showModules />
208
+ <showLibraryContents />
209
+ <hideEmptyPackages />
210
+ <abbreviatePackageNames />
211
+ <autoscrollToSource />
212
+ <autoscrollFromSource />
213
+ <sortByType />
214
+ </navigator>
215
+ <panes>
216
+ <pane id="Scope">
217
+ <subPane subId="Project Files">
218
+ <PATH>
219
+ <PATH_ELEMENT USER_OBJECT="Root">
220
+ <option name="myItemId" value="" />
221
+ <option name="myItemType" value="" />
222
+ </PATH_ELEMENT>
223
+ </PATH>
224
+ </subPane>
225
+ </pane>
226
+ <pane id="ProjectPane">
227
+ <subPane>
228
+ <PATH>
229
+ <PATH_ELEMENT>
230
+ <option name="myItemId" value="musicbrainz_ruby" />
231
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
232
+ </PATH_ELEMENT>
233
+ </PATH>
234
+ <PATH>
235
+ <PATH_ELEMENT>
236
+ <option name="myItemId" value="musicbrainz_ruby" />
237
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
238
+ </PATH_ELEMENT>
239
+ <PATH_ELEMENT>
240
+ <option name="myItemId" value="musicbrainz_ruby" />
241
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
242
+ </PATH_ELEMENT>
243
+ </PATH>
244
+ <PATH>
245
+ <PATH_ELEMENT>
246
+ <option name="myItemId" value="musicbrainz_ruby" />
247
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
248
+ </PATH_ELEMENT>
249
+ <PATH_ELEMENT>
250
+ <option name="myItemId" value="musicbrainz_ruby" />
251
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
252
+ </PATH_ELEMENT>
253
+ <PATH_ELEMENT>
254
+ <option name="myItemId" value="features" />
255
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
256
+ </PATH_ELEMENT>
257
+ </PATH>
258
+ <PATH>
259
+ <PATH_ELEMENT>
260
+ <option name="myItemId" value="musicbrainz_ruby" />
261
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
262
+ </PATH_ELEMENT>
263
+ <PATH_ELEMENT>
264
+ <option name="myItemId" value="musicbrainz_ruby" />
265
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
266
+ </PATH_ELEMENT>
267
+ <PATH_ELEMENT>
268
+ <option name="myItemId" value="features" />
269
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
270
+ </PATH_ELEMENT>
271
+ <PATH_ELEMENT>
272
+ <option name="myItemId" value="step_definitions" />
273
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
274
+ </PATH_ELEMENT>
275
+ </PATH>
276
+ </subPane>
277
+ </pane>
278
+ </panes>
279
+ </component>
280
+ <component name="PropertiesComponent">
281
+ <property name="options.splitter.main.proportions" value="0.3" />
282
+ <property name="WebServerToolWindowFactoryState" value="false" />
283
+ <property name="options.lastSelected" value="preferences.sourceCode.Gherkin" />
284
+ <property name="recentsLimit" value="5" />
285
+ <property name="options.splitter.details.proportions" value="0.2" />
286
+ <property name="options.searchVisible" value="true" />
287
+ </component>
288
+ <component name="RecentsManager">
289
+ <key name="CopyFile.RECENT_KEYS">
290
+ <recent name="$PROJECT_DIR$" />
291
+ </key>
292
+ <key name="MoveFile.RECENT_KEYS">
293
+ <recent name="$PROJECT_DIR$/pkg" />
294
+ <recent name="$PROJECT_DIR$" />
295
+ <recent name="$PROJECT_DIR$/tmp/rails_app/config" />
296
+ </key>
297
+ </component>
298
+ <component name="RunManager" selected="Cucumber.All features in: musicbrainz_ruby">
299
+ <configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
300
+ <predefined_log_file id="RUBY_RSPEC" enabled="true" />
301
+ <module name="" />
302
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
303
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
304
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
305
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
306
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
307
+ <envs />
308
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
309
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
310
+ <COVERAGE_PATTERN ENABLED="true">
311
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
312
+ </COVERAGE_PATTERN>
313
+ </EXTENSION>
314
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
315
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
316
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
317
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
318
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
319
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
320
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
321
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
322
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
323
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
324
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
325
+ <method>
326
+ <option name="RakeTask" enabled="false" />
327
+ </method>
328
+ </configuration>
329
+ <configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
330
+ <module name="" />
331
+ <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
332
+ <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
333
+ <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
334
+ <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
335
+ <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
336
+ <envs />
337
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
338
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
339
+ <COVERAGE_PATTERN ENABLED="true">
340
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
341
+ </COVERAGE_PATTERN>
342
+ </EXTENSION>
343
+ <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
344
+ <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
345
+ <method>
346
+ <option name="RakeTask" enabled="false" />
347
+ </method>
348
+ </configuration>
349
+ <configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
350
+ <predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
351
+ <module name="" />
352
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
353
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
354
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
355
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
356
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
357
+ <envs />
358
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
359
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
360
+ <COVERAGE_PATTERN ENABLED="true">
361
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
362
+ </COVERAGE_PATTERN>
363
+ </EXTENSION>
364
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
365
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
366
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
367
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
368
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
369
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
370
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
371
+ <method>
372
+ <option name="RakeTask" enabled="false" />
373
+ </method>
374
+ </configuration>
375
+ <configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
376
+ <predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
377
+ <module name="" />
378
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
379
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
380
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
381
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
382
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
383
+ <envs>
384
+ <env name="ANSICON" value="" />
385
+ </envs>
386
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
387
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
388
+ <COVERAGE_PATTERN ENABLED="true">
389
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
390
+ </COVERAGE_PATTERN>
391
+ </EXTENSION>
392
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
393
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
394
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
395
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
396
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
397
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
398
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
399
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
400
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
401
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
402
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
403
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
404
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
405
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
406
+ <method>
407
+ <option name="RakeTask" enabled="false" />
408
+ </method>
409
+ </configuration>
410
+ <configuration default="false" name="All features in: musicbrainz_ruby" type="CucumberRunConfigurationType" factoryName="Cucumber">
411
+ <predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
412
+ <module name="musicbrainz_ruby" />
413
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
414
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
415
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
416
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
417
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
418
+ <envs>
419
+ <env name="ANSICON" value="" />
420
+ <env name="JRUBY_OPTS" value="-X+O" />
421
+ </envs>
422
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
423
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
424
+ <COVERAGE_PATTERN ENABLED="true">
425
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
426
+ </COVERAGE_PATTERN>
427
+ </EXTENSION>
428
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
429
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
430
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$PROJECT_DIR$" />
431
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
432
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
433
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
434
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
435
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
436
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
437
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
438
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="true" />
439
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
440
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
441
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
442
+ <RunnerSettings RunnerId="RubyDebugRunner" />
443
+ <RunnerSettings RunnerId="RubyRunner" />
444
+ <ConfigurationWrapper RunnerId="RubyDebugRunner" />
445
+ <ConfigurationWrapper RunnerId="RubyRunner" />
446
+ <method />
447
+ </configuration>
448
+ <list size="1">
449
+ <item index="0" class="java.lang.String" itemvalue="Cucumber.All features in: musicbrainz_ruby" />
450
+ </list>
451
+ </component>
452
+ <component name="ShelveChangesManager" show_recycled="false" />
453
+ <component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false">
454
+ <option name="USER" value="" />
455
+ <option name="PASSWORD" value="" />
456
+ <option name="mySSHConnectionTimeout" value="30000" />
457
+ <option name="mySSHReadTimeout" value="30000" />
458
+ <option name="LAST_MERGED_REVISION" />
459
+ <option name="MERGE_DRY_RUN" value="false" />
460
+ <option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
461
+ <option name="UPDATE_LOCK_ON_DEMAND" value="false" />
462
+ <option name="IGNORE_SPACES_IN_MERGE" value="false" />
463
+ <option name="DETECT_NESTED_COPIES" value="true" />
464
+ <option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
465
+ <option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
466
+ <option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
467
+ <option name="FORCE_UPDATE" value="false" />
468
+ <configuration useDefault="false">$USER_HOME$/.subversion_IDEA</configuration>
469
+ <myIsUseDefaultProxy>false</myIsUseDefaultProxy>
470
+ </component>
471
+ <component name="TaskManager">
472
+ <task active="true" id="Default" summary="Default task">
473
+ <changelist id="5217c6b1-2171-4fbe-bcb9-b31c953acd53" name="Default" comment="" />
474
+ <created>1341018335127</created>
475
+ <updated>1341018335127</updated>
476
+ </task>
477
+ <servers />
478
+ </component>
479
+ <component name="TodoView" selected-index="0">
480
+ <todo-panel id="selected-file">
481
+ <are-packages-shown value="false" />
482
+ <are-modules-shown value="false" />
483
+ <flatten-packages value="false" />
484
+ <is-autoscroll-to-source value="false" />
485
+ </todo-panel>
486
+ <todo-panel id="all">
487
+ <are-packages-shown value="false" />
488
+ <are-modules-shown value="false" />
489
+ <flatten-packages value="false" />
490
+ <is-autoscroll-to-source value="false" />
491
+ </todo-panel>
492
+ <todo-panel id="default-changelist">
493
+ <are-packages-shown value="false" />
494
+ <are-modules-shown value="false" />
495
+ <flatten-packages value="false" />
496
+ <is-autoscroll-to-source value="false" />
497
+ </todo-panel>
498
+ </component>
499
+ <component name="ToolWindowManager">
500
+ <frame x="14" y="25" width="1252" height="761" extended-state="6" />
501
+ <editor active="false" />
502
+ <layout>
503
+ <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3291536" sideWeight="0.4966722" order="7" side_tool="false" content_ui="tabs" />
504
+ <window_info id="Data Sources" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3294509" sideWeight="0.6708464" order="3" side_tool="false" content_ui="tabs" />
505
+ <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" />
506
+ <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3291536" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
507
+ <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="true" content_ui="tabs" />
508
+ <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.34941763" sideWeight="0.6708464" order="0" side_tool="false" content_ui="combo" />
509
+ <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.17948718" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
510
+ <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" />
511
+ <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3291536" sideWeight="0.49750414" order="7" side_tool="true" content_ui="tabs" />
512
+ <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.63009405" sideWeight="0.4966722" order="2" side_tool="false" content_ui="tabs" />
513
+ <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" />
514
+ <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" />
515
+ <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" />
516
+ <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" />
517
+ <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3291536" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
518
+ <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
519
+ <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" />
520
+ <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" />
521
+ </layout>
522
+ </component>
523
+ <component name="VcsContentAnnotationSettings">
524
+ <option name="myLimit" value="2678400000" />
525
+ </component>
526
+ <component name="VcsManagerConfiguration">
527
+ <option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
528
+ <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
529
+ <option name="CHECK_NEW_TODO" value="true" />
530
+ <option name="myTodoPanelSettings">
531
+ <value>
532
+ <are-packages-shown value="false" />
533
+ <are-modules-shown value="false" />
534
+ <flatten-packages value="false" />
535
+ <is-autoscroll-to-source value="false" />
536
+ </value>
537
+ </option>
538
+ <option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
539
+ <option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
540
+ <option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
541
+ <option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
542
+ <option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
543
+ <option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
544
+ <option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
545
+ <option name="ENABLE_BACKGROUND_PROCESSES" value="false" />
546
+ <option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
547
+ <option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
548
+ <option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
549
+ <option name="DEFAULT_PATCH_EXTENSION" value="patch" />
550
+ <option name="SHORT_DIFF_HORISONTALLY" value="true" />
551
+ <option name="SHORT_DIFF_EXTRA_LINES" value="2" />
552
+ <option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
553
+ <option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
554
+ <option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
555
+ <option name="CREATE_PATCH_EXPAND_DETAILS_DEFAULT" value="true" />
556
+ <option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
557
+ <option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
558
+ <option name="FORCE_NON_EMPTY_COMMENT" value="false" />
559
+ <option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
560
+ <option name="LAST_COMMIT_MESSAGE" />
561
+ <option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
562
+ <option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
563
+ <option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
564
+ <option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
565
+ <option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
566
+ <option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
567
+ <option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
568
+ <option name="ACTIVE_VCS_NAME" />
569
+ <option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
570
+ <option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
571
+ <option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
572
+ <option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
573
+ </component>
574
+ <component name="XDebuggerManager">
575
+ <breakpoint-manager>
576
+ <breakpoints>
577
+ <line-breakpoint enabled="true" type="ruby-line">
578
+ <url>file://$PROJECT_DIR$/features/step_definitions/cukigem_steps.rb</url>
579
+ <line>100</line>
580
+ </line-breakpoint>
581
+ </breakpoints>
582
+ </breakpoint-manager>
583
+ </component>
584
+ <component name="editorHistoryManager">
585
+ <entry file="file://$PROJECT_DIR$/VERSION">
586
+ <provider selected="true" editor-type-id="text-editor">
587
+ <state line="0" column="5" selection-start="5" selection-end="5" vertical-scroll-proportion="0.0" />
588
+ </provider>
589
+ </entry>
590
+ <entry file="file://$PROJECT_DIR$/Rakefile">
591
+ <provider selected="true" editor-type-id="text-editor">
592
+ <state line="24" column="38" selection-start="753" selection-end="753" vertical-scroll-proportion="0.0" />
593
+ </provider>
594
+ </entry>
595
+ <entry file="file://$PROJECT_DIR$/lib/musicbrainz_ruby.rb">
596
+ <provider selected="true" editor-type-id="text-editor">
597
+ <state line="19" column="18" selection-start="383" selection-end="383" vertical-scroll-proportion="0.0" />
598
+ </provider>
599
+ </entry>
600
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/log/development.log">
601
+ <provider selected="true" editor-type-id="text-editor">
602
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
603
+ </provider>
604
+ </entry>
605
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/log/test.log">
606
+ <provider selected="true" editor-type-id="text-editor">
607
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
608
+ </provider>
609
+ </entry>
610
+ <entry file="file://$PROJECT_DIR$/.document">
611
+ <provider selected="true" editor-type-id="text-editor">
612
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
613
+ </provider>
614
+ </entry>
615
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/doc/README_FOR_APP">
616
+ <provider selected="true" editor-type-id="text-editor">
617
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
618
+ </provider>
619
+ </entry>
620
+ <entry file="file://$PROJECT_DIR$/Gemfile">
621
+ <provider selected="true" editor-type-id="text-editor">
622
+ <state line="19" column="39" selection-start="471" selection-end="471" vertical-scroll-proportion="0.0">
623
+ <folding />
624
+ </state>
625
+ </provider>
626
+ </entry>
627
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/config/database.yml">
628
+ <provider selected="true" editor-type-id="text-editor">
629
+ <state line="14" column="11" selection-start="416" selection-end="416" vertical-scroll-proportion="0.0" />
630
+ </provider>
631
+ </entry>
632
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/db/development.sqlite3">
633
+ <provider selected="true" editor-type-id="text-editor">
634
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
635
+ </provider>
636
+ </entry>
637
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/db/test.sqlite3">
638
+ <provider selected="true" editor-type-id="text-editor">
639
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
640
+ </provider>
641
+ </entry>
642
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/config/environment.rb">
643
+ <provider selected="true" editor-type-id="text-editor">
644
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
645
+ </provider>
646
+ </entry>
647
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/config/application.rb">
648
+ <provider selected="true" editor-type-id="text-editor">
649
+ <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
650
+ </provider>
651
+ </entry>
652
+ <entry file="file://$PROJECT_DIR$/features/step_definitions/cukigem_steps.rb">
653
+ <provider selected="true" editor-type-id="text-editor">
654
+ <state line="125" column="47" selection-start="3499" selection-end="4053" vertical-scroll-proportion="0.0">
655
+ <folding />
656
+ </state>
657
+ </provider>
658
+ </entry>
659
+ <entry file="file://$PROJECT_DIR$/features/musicbrainz_ruby.feature">
660
+ <provider selected="true" editor-type-id="text-editor">
661
+ <state line="8" column="32" selection-start="309" selection-end="309" vertical-scroll-proportion="0.097087376">
662
+ <folding />
663
+ </state>
664
+ </provider>
665
+ </entry>
666
+ <entry file="file://$PROJECT_DIR$/tmp/rails_app/Gemfile">
667
+ <provider selected="true" editor-type-id="text-editor">
668
+ <state line="5" column="13" selection-start="106" selection-end="106" vertical-scroll-proportion="0.12690355">
669
+ <folding />
670
+ </state>
671
+ </provider>
672
+ </entry>
673
+ </component>
674
+ </project>
675
+