active_mocker 1.2.pre → 1.2.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_mocker/version.rb +1 -1
- data/sample_app_rails_4/.idea/.generators +8 -0
- data/sample_app_rails_4/.idea/.name +1 -0
- data/sample_app_rails_4/.idea/.rakeTasks +7 -0
- data/sample_app_rails_4/.idea/dataSources.ids +141 -0
- data/sample_app_rails_4/.idea/dataSources.xml +36 -0
- data/sample_app_rails_4/.idea/dictionaries/zeisler.xml +3 -0
- data/sample_app_rails_4/.idea/encodings.xml +5 -0
- data/sample_app_rails_4/.idea/inspectionProfiles/Project_Default.xml +20 -0
- data/sample_app_rails_4/.idea/inspectionProfiles/profiles_settings.xml +7 -0
- data/sample_app_rails_4/.idea/misc.xml +5 -0
- data/sample_app_rails_4/.idea/modules.xml +10 -0
- data/sample_app_rails_4/.idea/runConfigurations/Development__sample_app_rails_4.xml +28 -0
- data/sample_app_rails_4/.idea/runConfigurations/Production__sample_app_rails_4.xml +28 -0
- data/sample_app_rails_4/.idea/runConfigurations/spec__sample_app_rails_4.xml +26 -0
- data/sample_app_rails_4/.idea/runConfigurations/test__sample_app_rails_4.xml +28 -0
- data/sample_app_rails_4/.idea/sample_app_rails_4.iml +262 -0
- data/sample_app_rails_4/.idea/scopes/scope_settings.xml +5 -0
- data/sample_app_rails_4/.idea/vcs.xml +7 -0
- data/sample_app_rails_4/.idea/workspace.xml +969 -0
- data/sample_app_rails_4/.rspec +1 -0
- data/sample_app_rails_4/.secret +1 -0
- data/sample_app_rails_4/Gemfile +53 -0
- data/sample_app_rails_4/Guardfile +53 -0
- data/sample_app_rails_4/LICENSE +21 -0
- data/sample_app_rails_4/README.md +25 -0
- data/sample_app_rails_4/README.nitrous.md +20 -0
- data/sample_app_rails_4/Rakefile +6 -0
- data/sample_app_rails_4/app/assets/images/rails.png +0 -0
- data/sample_app_rails_4/app/assets/javascripts/application.js +17 -0
- data/sample_app_rails_4/app/assets/javascripts/sessions.js.coffee +3 -0
- data/sample_app_rails_4/app/assets/javascripts/static_pages.js.coffee +3 -0
- data/sample_app_rails_4/app/assets/javascripts/users.js.coffee +3 -0
- data/sample_app_rails_4/app/assets/stylesheets/application.css +13 -0
- data/sample_app_rails_4/app/assets/stylesheets/custom.css.scss +246 -0
- data/sample_app_rails_4/app/assets/stylesheets/sessions.css.scss +3 -0
- data/sample_app_rails_4/app/assets/stylesheets/static_pages.css.scss +3 -0
- data/sample_app_rails_4/app/assets/stylesheets/users.css.scss +3 -0
- data/sample_app_rails_4/app/controllers/application_controller.rb +6 -0
- data/sample_app_rails_4/app/controllers/concerns/.keep +0 -0
- data/sample_app_rails_4/app/controllers/microposts_controller.rb +31 -0
- data/sample_app_rails_4/app/controllers/relationships_controller.rb +21 -0
- data/sample_app_rails_4/app/controllers/sessions_controller.rb +21 -0
- data/sample_app_rails_4/app/controllers/static_pages_controller.rb +18 -0
- data/sample_app_rails_4/app/controllers/users_controller.rb +80 -0
- data/sample_app_rails_4/app/helpers/application_helper.rb +12 -0
- data/sample_app_rails_4/app/helpers/sessions_helper.rb +49 -0
- data/sample_app_rails_4/app/helpers/static_pages_helper.rb +2 -0
- data/sample_app_rails_4/app/helpers/users_helper.rb +10 -0
- data/sample_app_rails_4/app/mailers/.keep +0 -0
- data/sample_app_rails_4/app/models/.keep +0 -0
- data/sample_app_rails_4/app/models/concerns/.keep +0 -0
- data/sample_app_rails_4/app/models/micropost.rb +14 -0
- data/sample_app_rails_4/app/models/relationship.rb +6 -0
- data/sample_app_rails_4/app/models/user.rb +47 -0
- data/sample_app_rails_4/app/views/layouts/_footer.html.erb +13 -0
- data/sample_app_rails_4/app/views/layouts/_header.html.erb +31 -0
- data/sample_app_rails_4/app/views/layouts/_shim.html.erb +3 -0
- data/sample_app_rails_4/app/views/layouts/application.html.erb +22 -0
- data/sample_app_rails_4/app/views/microposts/_micropost.html.erb +11 -0
- data/sample_app_rails_4/app/views/relationships/create.js.erb +2 -0
- data/sample_app_rails_4/app/views/relationships/destroy.js.erb +2 -0
- data/sample_app_rails_4/app/views/sessions/new.html.erb +19 -0
- data/sample_app_rails_4/app/views/shared/_error_messages.html.erb +12 -0
- data/sample_app_rails_4/app/views/shared/_feed.html.erb +6 -0
- data/sample_app_rails_4/app/views/shared/_feed_item.html.erb +15 -0
- data/sample_app_rails_4/app/views/shared/_micropost_form.html.erb +7 -0
- data/sample_app_rails_4/app/views/shared/_stats.html.erb +15 -0
- data/sample_app_rails_4/app/views/shared/_user_info.html.erb +12 -0
- data/sample_app_rails_4/app/views/static_pages/about.html.erb +8 -0
- data/sample_app_rails_4/app/views/static_pages/contact.html.erb +6 -0
- data/sample_app_rails_4/app/views/static_pages/help.html.erb +8 -0
- data/sample_app_rails_4/app/views/static_pages/home.html.erb +34 -0
- data/sample_app_rails_4/app/views/static_pages/show.html.erb +0 -0
- data/sample_app_rails_4/app/views/users/_follow.html.erb +5 -0
- data/sample_app_rails_4/app/views/users/_follow_form.html.erb +9 -0
- data/sample_app_rails_4/app/views/users/_unfollow.html.erb +5 -0
- data/sample_app_rails_4/app/views/users/_user.html.erb +8 -0
- data/sample_app_rails_4/app/views/users/edit.html.erb +27 -0
- data/sample_app_rails_4/app/views/users/index.html.erb +10 -0
- data/sample_app_rails_4/app/views/users/new.html.erb +24 -0
- data/sample_app_rails_4/app/views/users/show.html.erb +24 -0
- data/sample_app_rails_4/app/views/users/show_follow.html.erb +30 -0
- data/sample_app_rails_4/bin/bundle +3 -0
- data/sample_app_rails_4/bin/rails +4 -0
- data/sample_app_rails_4/bin/rake +4 -0
- data/sample_app_rails_4/config.ru +4 -0
- data/sample_app_rails_4/config/application.rb +31 -0
- data/sample_app_rails_4/config/boot.rb +4 -0
- data/sample_app_rails_4/config/cucumber.yml +8 -0
- data/sample_app_rails_4/config/database.yml +28 -0
- data/sample_app_rails_4/config/environment.rb +5 -0
- data/sample_app_rails_4/config/environments/development.rb +27 -0
- data/sample_app_rails_4/config/environments/production.rb +79 -0
- data/sample_app_rails_4/config/environments/test.rb +39 -0
- data/sample_app_rails_4/config/initializers/active_mocker.rb +10 -0
- data/sample_app_rails_4/config/initializers/backtrace_silencers.rb +7 -0
- data/sample_app_rails_4/config/initializers/filter_parameter_logging.rb +4 -0
- data/sample_app_rails_4/config/initializers/inflections.rb +16 -0
- data/sample_app_rails_4/config/initializers/mime_types.rb +5 -0
- data/sample_app_rails_4/config/initializers/secret_token.rb +22 -0
- data/sample_app_rails_4/config/initializers/session_store.rb +3 -0
- data/sample_app_rails_4/config/initializers/wrap_parameters.rb +14 -0
- data/sample_app_rails_4/config/locales/en.yml +23 -0
- data/sample_app_rails_4/config/routes.rb +17 -0
- data/sample_app_rails_4/db/development.sqlite3 +0 -0
- data/sample_app_rails_4/db/migrate/20130311191400_create_users.rb +10 -0
- data/sample_app_rails_4/db/migrate/20130311194153_add_index_to_users_email.rb +5 -0
- data/sample_app_rails_4/db/migrate/20130311201841_add_password_digest_to_users.rb +5 -0
- data/sample_app_rails_4/db/migrate/20130314184954_add_remember_token_to_users.rb +6 -0
- data/sample_app_rails_4/db/migrate/20130315015932_add_admin_to_users.rb +5 -0
- data/sample_app_rails_4/db/migrate/20130315175534_create_microposts.rb +11 -0
- data/sample_app_rails_4/db/migrate/20130315230445_create_relationships.rb +13 -0
- data/sample_app_rails_4/db/schema.rb +49 -0
- data/sample_app_rails_4/db/seeds.rb +7 -0
- data/sample_app_rails_4/db/test.sqlite3 +0 -0
- data/sample_app_rails_4/features/signing_in.feature +13 -0
- data/sample_app_rails_4/features/step_definitions/authentication_steps.rb +30 -0
- data/sample_app_rails_4/features/support/env.rb +59 -0
- data/sample_app_rails_4/lib/assets/.keep +0 -0
- data/sample_app_rails_4/lib/tasks/.keep +0 -0
- data/sample_app_rails_4/lib/tasks/cucumber.rake +65 -0
- data/sample_app_rails_4/lib/tasks/mocks.rake +10 -0
- data/sample_app_rails_4/lib/tasks/sample_data.rake +42 -0
- data/sample_app_rails_4/log/.keep +0 -0
- data/sample_app_rails_4/log/development.log +603 -0
- data/sample_app_rails_4/log/test.log +6727 -0
- data/sample_app_rails_4/public/404.html +27 -0
- data/sample_app_rails_4/public/422.html +26 -0
- data/sample_app_rails_4/public/500.html +26 -0
- data/sample_app_rails_4/public/assets/application-4962059d8f80f9bb096692bacc29c4e8.css +5091 -0
- data/sample_app_rails_4/public/assets/application-4962059d8f80f9bb096692bacc29c4e8.css.gz +0 -0
- data/sample_app_rails_4/public/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js +12952 -0
- data/sample_app_rails_4/public/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js.gz +0 -0
- data/sample_app_rails_4/public/assets/glyphicons-halflings-c806376f05e4ccabe2c5315a8e95667c.png +0 -0
- data/sample_app_rails_4/public/assets/glyphicons-halflings-white-62b67d9edee3db90d18833087f848d6e.png +0 -0
- data/sample_app_rails_4/public/assets/manifest-802de9eb1c853769101852422b620883.json +1 -0
- data/sample_app_rails_4/public/assets/rails-231a680f23887d9dd70710ea5efd3c62.png +0 -0
- data/sample_app_rails_4/public/favicon.ico +0 -0
- data/sample_app_rails_4/public/robots.txt +5 -0
- data/sample_app_rails_4/script/cucumber +10 -0
- data/sample_app_rails_4/spec/controllers/relationships_controller_spec.rb +42 -0
- data/sample_app_rails_4/spec/factories.rb +17 -0
- data/sample_app_rails_4/spec/helpers/application_helper_spec.rb +18 -0
- data/sample_app_rails_4/spec/models/micropost_spec.rb +30 -0
- data/sample_app_rails_4/spec/models/relationship_spec.rb +29 -0
- data/sample_app_rails_4/spec/models/user_spec.rb +194 -0
- data/sample_app_rails_4/spec/spec_helper.rb +49 -0
- data/sample_app_rails_4/spec/support/utilities.rb +21 -0
- data/sample_app_rails_4/vendor/assets/javascripts/.keep +0 -0
- data/sample_app_rails_4/vendor/assets/stylesheets/.keep +0 -0
- metadata +151 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed531aef6f2385bcca2a8dde9cf835d2f8ee8095
|
4
|
+
data.tar.gz: e865179a97a28ea67a2ef0ef2d8f8f9caf106d54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79d1366e19e99927e8c85890cc18d77323bc704251eff0c2e39ae6f6a8fdbccc25afe6cebdfebeda6379bd79b7ee0cd8ca89a28eb20aebea5194219d7277fe5b
|
7
|
+
data.tar.gz: 7e4fc80a64e9b654e69b453c81b9aca58ee77ec88cd4185638657385c0f9813cf9918920d8b7b5f0dc41abf41f8612091305dfb3b7493f6ba7e433a549355fef
|
@@ -0,0 +1,8 @@
|
|
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. Reorder generators
|
5
|
+
2. Remove generators
|
6
|
+
3. Add installed generators
|
7
|
+
To add new installed generators automatically delete this file and reload the project.
|
8
|
+
--><GeneratorsGroup><Generator name="active_record:migration" /><Generator name="active_record:model" /><Generator name="active_record:observer" /><Generator name="active_record:session_migration" /><Generator name="controller" /><Generator name="erb:controller" /><Generator name="erb:mailer" /><Generator name="erb:scaffold" /><Generator name="generator" /><Generator name="helper" /><Generator name="integration_test" /><Generator name="mailer" /><Generator name="metal" /><Generator name="migration" /><Generator name="model" /><Generator name="model_subclass" /><Generator name="observer" /><Generator name="performance_test" /><Generator name="plugin" /><Generator name="resource" /><Generator name="scaffold" /><Generator name="scaffold_controller" /><Generator name="session_migration" /><Generator name="stylesheets" /><Generator name="test_unit:controller" /><Generator name="test_unit:helper" /><Generator name="test_unit:integration" /><Generator name="test_unit:mailer" /><Generator name="test_unit:model" /><Generator name="test_unit:observer" /><Generator name="test_unit:performance" /><Generator name="test_unit:plugin" /><Generator name="test_unit:scaffold" /></GeneratorsGroup></Settings>
|
@@ -0,0 +1 @@
|
|
1
|
+
sample_app_rails_4
|
@@ -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,141 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<component name="dataSourceStorage">
|
3
|
+
<data-source source="LOCAL" name="Rails sample_app_rails_4: development" uuid="d095363b-e016-46dc-9bc8-4150553281f7">
|
4
|
+
<database-info product="SQLite" version="3.7.2" jdbc-version="2.1" driver-name="SQLiteJDBC" driver-version="native"/>
|
5
|
+
<case-sensitivity plain-identifiers="mixed" quoted-identifiers="mixed"/>
|
6
|
+
<schema name="" catalog=""/>
|
7
|
+
<table name="microposts" schema="" catalog="" type="TABLE">
|
8
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
9
|
+
<column name="content" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
10
|
+
<column name="user_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
11
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
12
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
13
|
+
<primary-key columns="id"/>
|
14
|
+
<index name="index_microposts_on_user_id_and_created_at" unique="true" columns="user_id,created_at"/>
|
15
|
+
</table>
|
16
|
+
<table name="relationships" schema="" catalog="" type="TABLE">
|
17
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
18
|
+
<column name="follower_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
19
|
+
<column name="followed_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
20
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
21
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
22
|
+
<primary-key columns="id"/>
|
23
|
+
<index name="index_relationships_on_follower_id" unique="true" columns="follower_id"/>
|
24
|
+
<index name="index_relationships_on_follower_id_and_followed_id" unique="true" columns="follower_id,followed_id"/>
|
25
|
+
<index name="index_relationships_on_followed_id" unique="true" columns="followed_id"/>
|
26
|
+
</table>
|
27
|
+
<table name="schema_migrations" schema="" catalog="" type="TABLE">
|
28
|
+
<column name="version" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="false" jdbcType="12"/>
|
29
|
+
<index name="unique_schema_migrations" unique="true" columns="version"/>
|
30
|
+
</table>
|
31
|
+
<table name="sqlite_sequence" schema="" catalog="" type="TABLE">
|
32
|
+
<column name="name" sqlType="" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
33
|
+
<column name="seq" sqlType="" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
34
|
+
</table>
|
35
|
+
<table name="users" schema="" catalog="" type="TABLE">
|
36
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
37
|
+
<column name="name" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
38
|
+
<column name="email" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
39
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
40
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
41
|
+
<column name="password_digest" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
42
|
+
<column name="remember_token" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
43
|
+
<column name="admin" sqlType="BOOLEAN" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
44
|
+
<primary-key columns="id"/>
|
45
|
+
<index name="index_users_on_remember_token" unique="true" columns="remember_token"/>
|
46
|
+
<index name="index_users_on_email" unique="true" columns="email"/>
|
47
|
+
</table>
|
48
|
+
</data-source>
|
49
|
+
<data-source source="LOCAL" name="Rails sample_app_rails_4: test" uuid="6e3ca20f-8d53-4e9f-a650-a42bfc864620">
|
50
|
+
<database-info product="SQLite" version="3.7.2" jdbc-version="2.1" driver-name="SQLiteJDBC" driver-version="native"/>
|
51
|
+
<case-sensitivity plain-identifiers="mixed" quoted-identifiers="mixed"/>
|
52
|
+
<schema name="" catalog=""/>
|
53
|
+
<table name="microposts" schema="" catalog="" type="TABLE">
|
54
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
55
|
+
<column name="content" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
56
|
+
<column name="user_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
57
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
58
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
59
|
+
<primary-key columns="id"/>
|
60
|
+
<index name="index_microposts_on_user_id_and_created_at" unique="true" columns="user_id,created_at"/>
|
61
|
+
</table>
|
62
|
+
<table name="relationships" schema="" catalog="" type="TABLE">
|
63
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
64
|
+
<column name="follower_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
65
|
+
<column name="followed_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
66
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
67
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
68
|
+
<primary-key columns="id"/>
|
69
|
+
<index name="index_relationships_on_follower_id_and_followed_id" unique="true" columns="follower_id,followed_id"/>
|
70
|
+
<index name="index_relationships_on_followed_id" unique="true" columns="followed_id"/>
|
71
|
+
<index name="index_relationships_on_follower_id" unique="true" columns="follower_id"/>
|
72
|
+
</table>
|
73
|
+
<table name="schema_migrations" schema="" catalog="" type="TABLE">
|
74
|
+
<column name="version" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="false" jdbcType="12"/>
|
75
|
+
<index name="unique_schema_migrations" unique="true" columns="version"/>
|
76
|
+
</table>
|
77
|
+
<table name="sqlite_sequence" schema="" catalog="" type="TABLE">
|
78
|
+
<column name="name" sqlType="" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
79
|
+
<column name="seq" sqlType="" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
80
|
+
</table>
|
81
|
+
<table name="users" schema="" catalog="" type="TABLE">
|
82
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
83
|
+
<column name="name" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
84
|
+
<column name="email" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
85
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
86
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
87
|
+
<column name="password_digest" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
88
|
+
<column name="remember_token" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
89
|
+
<column name="admin" sqlType="BOOLEAN" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
90
|
+
<primary-key columns="id"/>
|
91
|
+
<index name="index_users_on_remember_token" unique="true" columns="remember_token"/>
|
92
|
+
<index name="index_users_on_email" unique="true" columns="email"/>
|
93
|
+
</table>
|
94
|
+
</data-source>
|
95
|
+
<data-source source="LOCAL" name="Rails sample_app_rails_4: cucumber" uuid="30cf8d24-5940-4d1a-99ed-b7545cfead7e">
|
96
|
+
<database-info product="SQLite" version="3.7.2" jdbc-version="2.1" driver-name="SQLiteJDBC" driver-version="native"/>
|
97
|
+
<case-sensitivity plain-identifiers="mixed" quoted-identifiers="mixed"/>
|
98
|
+
<schema name="" catalog=""/>
|
99
|
+
<table name="microposts" schema="" catalog="" type="TABLE">
|
100
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
101
|
+
<column name="content" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
102
|
+
<column name="user_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
103
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
104
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
105
|
+
<primary-key columns="id"/>
|
106
|
+
<index name="index_microposts_on_user_id_and_created_at" unique="true" columns="user_id,created_at"/>
|
107
|
+
</table>
|
108
|
+
<table name="relationships" schema="" catalog="" type="TABLE">
|
109
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
110
|
+
<column name="follower_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
111
|
+
<column name="followed_id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="true" jdbcType="4"/>
|
112
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
113
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
114
|
+
<primary-key columns="id"/>
|
115
|
+
<index name="index_relationships_on_follower_id_and_followed_id" unique="true" columns="follower_id,followed_id"/>
|
116
|
+
<index name="index_relationships_on_followed_id" unique="true" columns="followed_id"/>
|
117
|
+
<index name="index_relationships_on_follower_id" unique="true" columns="follower_id"/>
|
118
|
+
</table>
|
119
|
+
<table name="schema_migrations" schema="" catalog="" type="TABLE">
|
120
|
+
<column name="version" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="false" jdbcType="12"/>
|
121
|
+
<index name="unique_schema_migrations" unique="true" columns="version"/>
|
122
|
+
</table>
|
123
|
+
<table name="sqlite_sequence" schema="" catalog="" type="TABLE">
|
124
|
+
<column name="name" sqlType="" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
125
|
+
<column name="seq" sqlType="" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
126
|
+
</table>
|
127
|
+
<table name="users" schema="" catalog="" type="TABLE">
|
128
|
+
<column name="id" sqlType="INTEGER" precision="2000000000" scale="10" nullable="false" jdbcType="4"/>
|
129
|
+
<column name="name" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
130
|
+
<column name="email" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
131
|
+
<column name="created_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
132
|
+
<column name="updated_at" sqlType="DATETIME" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
133
|
+
<column name="password_digest" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
134
|
+
<column name="remember_token" sqlType="VARCHAR(255)" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
135
|
+
<column name="admin" sqlType="BOOLEAN" precision="2000000000" scale="10" nullable="true" jdbcType="12"/>
|
136
|
+
<primary-key columns="id"/>
|
137
|
+
<index name="index_users_on_remember_token" unique="true" columns="remember_token"/>
|
138
|
+
<index name="index_users_on_email" unique="true" columns="email"/>
|
139
|
+
</table>
|
140
|
+
</data-source>
|
141
|
+
</component>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="DataSourceManagerImpl" format="xml" hash="1909168810">
|
4
|
+
<data-source source="LOCAL" name="Rails sample_app_rails_4: development" uuid="d095363b-e016-46dc-9bc8-4150553281f7">
|
5
|
+
<driver-ref>sqlite.xerial</driver-ref>
|
6
|
+
<jdbc-driver>org.sqlite.JDBC</jdbc-driver>
|
7
|
+
<jdbc-url>jdbc:sqlite:$PROJECT_DIR$/db/development.sqlite3</jdbc-url>
|
8
|
+
<libraries>
|
9
|
+
<library>
|
10
|
+
<url>file://$USER_HOME$/Library/Preferences/RubyMine50/jdbc-drivers/sqlite-jdbc-3.7.2.jar</url>
|
11
|
+
</library>
|
12
|
+
</libraries>
|
13
|
+
</data-source>
|
14
|
+
<data-source source="LOCAL" name="Rails sample_app_rails_4: test" uuid="6e3ca20f-8d53-4e9f-a650-a42bfc864620">
|
15
|
+
<driver-ref>sqlite.xerial</driver-ref>
|
16
|
+
<jdbc-driver>org.sqlite.JDBC</jdbc-driver>
|
17
|
+
<jdbc-url>jdbc:sqlite:$PROJECT_DIR$/db/test.sqlite3</jdbc-url>
|
18
|
+
<libraries>
|
19
|
+
<library>
|
20
|
+
<url>file://$USER_HOME$/Library/Preferences/RubyMine50/jdbc-drivers/sqlite-jdbc-3.7.2.jar</url>
|
21
|
+
</library>
|
22
|
+
</libraries>
|
23
|
+
</data-source>
|
24
|
+
<data-source source="LOCAL" name="Rails sample_app_rails_4: cucumber" uuid="30cf8d24-5940-4d1a-99ed-b7545cfead7e">
|
25
|
+
<driver-ref>sqlite.xerial</driver-ref>
|
26
|
+
<jdbc-driver>org.sqlite.JDBC</jdbc-driver>
|
27
|
+
<jdbc-url>jdbc:sqlite:$PROJECT_DIR$/db/test.sqlite3</jdbc-url>
|
28
|
+
<libraries>
|
29
|
+
<library>
|
30
|
+
<url>file://$USER_HOME$/Library/Preferences/RubyMine50/jdbc-drivers/sqlite-jdbc-3.7.2.jar</url>
|
31
|
+
</library>
|
32
|
+
</libraries>
|
33
|
+
</data-source>
|
34
|
+
</component>
|
35
|
+
</project>
|
36
|
+
|
@@ -0,0 +1,20 @@
|
|
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="HtmlUnknownAttribute" enabled="true" level="WARNING" enabled_by_default="true">
|
6
|
+
<option name="myValues">
|
7
|
+
<value>
|
8
|
+
<list size="1">
|
9
|
+
<item index="0" class="java.lang.String" itemvalue="fbi-form-row-percent" />
|
10
|
+
</list>
|
11
|
+
</value>
|
12
|
+
</option>
|
13
|
+
<option name="myCustomValuesEnabled" value="true" />
|
14
|
+
</inspection_tool>
|
15
|
+
<inspection_tool class="JSHint" enabled="true" level="ERROR" enabled_by_default="true" />
|
16
|
+
<inspection_tool class="RubyResolve" enabled="false" level="WARNING" enabled_by_default="false">
|
17
|
+
<option name="warnImplicitResults" value="false" />
|
18
|
+
</inspection_tool>
|
19
|
+
</profile>
|
20
|
+
</component>
|
@@ -0,0 +1,10 @@
|
|
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/active_mocker.iml" filepath="$PROJECT_DIR$/../../.idea/active_mocker.iml" />
|
6
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/sample_app_rails_4.iml" filepath="$PROJECT_DIR$/.idea/sample_app_rails_4.iml" />
|
7
|
+
</modules>
|
8
|
+
</component>
|
9
|
+
</project>
|
10
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<component name="ProjectRunConfigurationManager">
|
2
|
+
<configuration default="false" name="Development: sample_app_rails_4" type="RailsRunConfigurationType" factoryName="Rails">
|
3
|
+
<predefined_log_file id="RUBY_RAILS_SERVER" enabled="true" />
|
4
|
+
<module name="sample_app_rails_4" />
|
5
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
6
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
7
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
8
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
9
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
10
|
+
<envs />
|
11
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
12
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
13
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
14
|
+
<COVERAGE_PATTERN ENABLED="true">
|
15
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
16
|
+
</COVERAGE_PATTERN>
|
17
|
+
</EXTENSION>
|
18
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
19
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SCRIPT_ARGS" VALUE="" />
|
20
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="PORT" VALUE="3000" />
|
21
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="IP" VALUE="0.0.0.0" />
|
22
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="DUMMY_APP" VALUE="test/dummy" />
|
23
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RAILS_SERVER_TYPE" VALUE="Default" />
|
24
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ENVIRONMENT_TYPE" VALUE="development" />
|
25
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="LAUNCH_JS" VALUE="false" />
|
26
|
+
<method />
|
27
|
+
</configuration>
|
28
|
+
</component>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<component name="ProjectRunConfigurationManager">
|
2
|
+
<configuration default="false" name="Production: sample_app_rails_4" type="RailsRunConfigurationType" factoryName="Rails">
|
3
|
+
<predefined_log_file id="RUBY_RAILS_SERVER" enabled="true" />
|
4
|
+
<module name="sample_app_rails_4" />
|
5
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
6
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
7
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
8
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
9
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
10
|
+
<envs />
|
11
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
12
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
13
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
14
|
+
<COVERAGE_PATTERN ENABLED="true">
|
15
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
16
|
+
</COVERAGE_PATTERN>
|
17
|
+
</EXTENSION>
|
18
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
19
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SCRIPT_ARGS" VALUE="" />
|
20
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="PORT" VALUE="3000" />
|
21
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="IP" VALUE="0.0.0.0" />
|
22
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="DUMMY_APP" VALUE="test/dummy" />
|
23
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RAILS_SERVER_TYPE" VALUE="Default" />
|
24
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ENVIRONMENT_TYPE" VALUE="production" />
|
25
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="LAUNCH_JS" VALUE="false" />
|
26
|
+
<method />
|
27
|
+
</configuration>
|
28
|
+
</component>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<component name="ProjectRunConfigurationManager">
|
2
|
+
<configuration default="false" name="spec: sample_app_rails_4" type="RakeRunConfigurationType" factoryName="Rake">
|
3
|
+
<module name="sample_app_rails_4" />
|
4
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
5
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
6
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
7
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
8
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
9
|
+
<envs />
|
10
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
11
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
12
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
13
|
+
<COVERAGE_PATTERN ENABLED="true">
|
14
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
15
|
+
</COVERAGE_PATTERN>
|
16
|
+
</EXTENSION>
|
17
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
18
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="spec" />
|
19
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
20
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE=":rspec " />
|
21
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
22
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
23
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
24
|
+
<method />
|
25
|
+
</configuration>
|
26
|
+
</component>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<component name="ProjectRunConfigurationManager">
|
2
|
+
<configuration default="false" name="test: sample_app_rails_4" type="RakeRunConfigurationType" factoryName="Rake">
|
3
|
+
<module name="sample_app_rails_4" />
|
4
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
5
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
6
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
7
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
8
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
9
|
+
<envs>
|
10
|
+
<env name="RAILS_ENV" value="test" />
|
11
|
+
</envs>
|
12
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
13
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
14
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
15
|
+
<COVERAGE_PATTERN ENABLED="true">
|
16
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
17
|
+
</COVERAGE_PATTERN>
|
18
|
+
</EXTENSION>
|
19
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
20
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="test" />
|
21
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
22
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE=":test_unit " />
|
23
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
24
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
25
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
26
|
+
<method />
|
27
|
+
</configuration>
|
28
|
+
</component>
|
@@ -0,0 +1,262 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="FacetManager">
|
4
|
+
<facet type="RailsFacetType" name="Ruby on Rails">
|
5
|
+
<configuration>
|
6
|
+
<RAILS_FACET_CONFIG_ID NAME="RAILS_FACET_SUPPORT_REMOVED" VALUE="false" />
|
7
|
+
<RAILS_FACET_CONFIG_ID NAME="RAILS_TESTS_SOURCES_PATCHED" VALUE="true" />
|
8
|
+
<RAILS_FACET_CONFIG_ID NAME="RAILS_FACET_APPLICATION_ROOT" VALUE="$MODULE_DIR$" />
|
9
|
+
</configuration>
|
10
|
+
</facet>
|
11
|
+
</component>
|
12
|
+
<component name="ModuleRunConfigurationManager">
|
13
|
+
<configuration default="false" name="Development: sample_app_rails_4" type="RailsRunConfigurationType" factoryName="Rails">
|
14
|
+
<predefined_log_file id="RUBY_RAILS_SERVER" enabled="true" />
|
15
|
+
<module name="sample_app_rails_4" />
|
16
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
17
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
18
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
19
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
20
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
21
|
+
<envs />
|
22
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
23
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
24
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
25
|
+
<COVERAGE_PATTERN ENABLED="true">
|
26
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
27
|
+
</COVERAGE_PATTERN>
|
28
|
+
</EXTENSION>
|
29
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
30
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SCRIPT_ARGS" VALUE="" />
|
31
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="PORT" VALUE="3000" />
|
32
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="IP" VALUE="0.0.0.0" />
|
33
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="DUMMY_APP" VALUE="test/dummy" />
|
34
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RAILS_SERVER_TYPE" VALUE="Default" />
|
35
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ENVIRONMENT_TYPE" VALUE="development" />
|
36
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="LAUNCH_JS" VALUE="false" />
|
37
|
+
<method />
|
38
|
+
</configuration>
|
39
|
+
<configuration default="false" name="Production: sample_app_rails_4" type="RailsRunConfigurationType" factoryName="Rails">
|
40
|
+
<predefined_log_file id="RUBY_RAILS_SERVER" enabled="true" />
|
41
|
+
<module name="sample_app_rails_4" />
|
42
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
43
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
44
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
45
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
46
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
47
|
+
<envs />
|
48
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
49
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
50
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
51
|
+
<COVERAGE_PATTERN ENABLED="true">
|
52
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
53
|
+
</COVERAGE_PATTERN>
|
54
|
+
</EXTENSION>
|
55
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
56
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SCRIPT_ARGS" VALUE="" />
|
57
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="PORT" VALUE="3000" />
|
58
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="IP" VALUE="0.0.0.0" />
|
59
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="DUMMY_APP" VALUE="test/dummy" />
|
60
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RAILS_SERVER_TYPE" VALUE="Default" />
|
61
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ENVIRONMENT_TYPE" VALUE="production" />
|
62
|
+
<RAILS_SERVER_CONFIG_SETTINGS_ID NAME="LAUNCH_JS" VALUE="false" />
|
63
|
+
<method />
|
64
|
+
</configuration>
|
65
|
+
<configuration default="false" name="spec: sample_app_rails_4" type="RakeRunConfigurationType" factoryName="Rake">
|
66
|
+
<module name="sample_app_rails_4" />
|
67
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
68
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
69
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
70
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
71
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
72
|
+
<envs />
|
73
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
74
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
75
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
76
|
+
<COVERAGE_PATTERN ENABLED="true">
|
77
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
78
|
+
</COVERAGE_PATTERN>
|
79
|
+
</EXTENSION>
|
80
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
81
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="spec" />
|
82
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
83
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE=":rspec " />
|
84
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
85
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
86
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
87
|
+
<method />
|
88
|
+
</configuration>
|
89
|
+
<configuration default="false" name="test: sample_app_rails_4" type="RakeRunConfigurationType" factoryName="Rake">
|
90
|
+
<module name="sample_app_rails_4" />
|
91
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
92
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
93
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
94
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
95
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
96
|
+
<envs>
|
97
|
+
<env name="RAILS_ENV" value="test" />
|
98
|
+
</envs>
|
99
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
100
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
101
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
102
|
+
<COVERAGE_PATTERN ENABLED="true">
|
103
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
104
|
+
</COVERAGE_PATTERN>
|
105
|
+
</EXTENSION>
|
106
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
107
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="test" />
|
108
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
109
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE=":test_unit " />
|
110
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
111
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
112
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
113
|
+
<method />
|
114
|
+
</configuration>
|
115
|
+
<configuration default="false" name="All specs in spec: sample_app_rails_4" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
116
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
117
|
+
<module name="sample_app_rails_4" />
|
118
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
119
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
120
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
121
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
122
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
123
|
+
<envs>
|
124
|
+
<env name="RAILS_ENV" value="test" />
|
125
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
126
|
+
</envs>
|
127
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
128
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
129
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
130
|
+
<COVERAGE_PATTERN ENABLED="true">
|
131
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
132
|
+
</COVERAGE_PATTERN>
|
133
|
+
</EXTENSION>
|
134
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
135
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$MODULE_DIR$/spec" />
|
136
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
137
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
138
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
139
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
140
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
|
141
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
142
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
143
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
144
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
145
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
146
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
147
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
148
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
149
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
150
|
+
<method />
|
151
|
+
</configuration>
|
152
|
+
</component>
|
153
|
+
<component name="NewModuleRootManager">
|
154
|
+
<content url="file://$MODULE_DIR$">
|
155
|
+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
156
|
+
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
157
|
+
</content>
|
158
|
+
<orderEntry type="inheritedJdk" />
|
159
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
160
|
+
<orderEntry type="module" module-name="active_mocker" />
|
161
|
+
<orderEntry type="module-library">
|
162
|
+
<library name="active_mocker (v1.1.23, /Users/zeisler/dev/active_mocker) [path][gem]">
|
163
|
+
<CLASSES>
|
164
|
+
<root url="file://$MODULE_DIR$/../../bin" />
|
165
|
+
<root url="file://$MODULE_DIR$/../../lib" />
|
166
|
+
<root url="file://$MODULE_DIR$/../../.idea" />
|
167
|
+
<root url="file://$MODULE_DIR$/../../schema_mashal" />
|
168
|
+
</CLASSES>
|
169
|
+
<SOURCES>
|
170
|
+
<root url="file://$MODULE_DIR$/../../bin" />
|
171
|
+
<root url="file://$MODULE_DIR$/../../lib" />
|
172
|
+
<root url="file://$MODULE_DIR$/../../.idea" />
|
173
|
+
<root url="file://$MODULE_DIR$/../../schema_mashal" />
|
174
|
+
</SOURCES>
|
175
|
+
</library>
|
176
|
+
</orderEntry>
|
177
|
+
<orderEntry type="library" scope="PROVIDED" name="actionmailer (v4.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
178
|
+
<orderEntry type="library" scope="PROVIDED" name="actionpack (v4.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
179
|
+
<orderEntry type="library" scope="PROVIDED" name="actionview (v4.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
180
|
+
<orderEntry type="library" scope="PROVIDED" name="active_hash (v1.3.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
181
|
+
<orderEntry type="library" scope="PROVIDED" name="activemodel (v4.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
182
|
+
<orderEntry type="library" scope="PROVIDED" name="activerecord (v4.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
183
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v4.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
184
|
+
<orderEntry type="library" scope="PROVIDED" name="arel (v5.0.1.20140414130214, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
185
|
+
<orderEntry type="library" scope="PROVIDED" name="bcrypt-ruby (v3.1.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
186
|
+
<orderEntry type="library" scope="PROVIDED" name="bootstrap-sass (v2.3.2.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
187
|
+
<orderEntry type="library" scope="PROVIDED" name="bootstrap-will_paginate (v0.0.9, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
188
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
189
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.6.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
190
|
+
<orderEntry type="library" scope="PROVIDED" name="capybara (v2.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
191
|
+
<orderEntry type="library" scope="PROVIDED" name="childprocess (v0.5.3, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
192
|
+
<orderEntry type="library" scope="PROVIDED" name="coffee-rails (v4.0.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
193
|
+
<orderEntry type="library" scope="PROVIDED" name="coffee-script (v2.2.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
194
|
+
<orderEntry type="library" scope="PROVIDED" name="coffee-script-source (v1.7.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
195
|
+
<orderEntry type="library" scope="PROVIDED" name="cucumber (v1.3.15, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
196
|
+
<orderEntry type="library" scope="PROVIDED" name="cucumber-rails (v1.3.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
197
|
+
<orderEntry type="library" scope="PROVIDED" name="database_cleaner (v1.2.0@35bd64, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
198
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
199
|
+
<orderEntry type="library" scope="PROVIDED" name="erubis (v2.7.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
200
|
+
<orderEntry type="library" scope="PROVIDED" name="execjs (v2.0.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
201
|
+
<orderEntry type="library" scope="PROVIDED" name="factory_girl (v4.2.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
202
|
+
<orderEntry type="library" scope="PROVIDED" name="factory_girl_rails (v4.2.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
203
|
+
<orderEntry type="library" scope="PROVIDED" name="faker (v1.1.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
204
|
+
<orderEntry type="library" scope="PROVIDED" name="ffi (v1.9.3, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
205
|
+
<orderEntry type="library" scope="PROVIDED" name="fuubar (v1.2.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
206
|
+
<orderEntry type="library" scope="PROVIDED" name="gherkin (v2.12.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
207
|
+
<orderEntry type="library" scope="PROVIDED" name="growl (v1.0.3, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
208
|
+
<orderEntry type="library" scope="PROVIDED" name="hike (v1.2.3, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
209
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.6.9, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
210
|
+
<orderEntry type="library" scope="PROVIDED" name="jbuilder (v1.0.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
211
|
+
<orderEntry type="library" scope="PROVIDED" name="jquery-rails (v3.0.4, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
212
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v1.8.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
213
|
+
<orderEntry type="library" scope="PROVIDED" name="mail (v2.5.4, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
214
|
+
<orderEntry type="library" scope="PROVIDED" name="mime-types (v1.25.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
215
|
+
<orderEntry type="library" scope="PROVIDED" name="mini_portile (v0.5.3, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
216
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.3.3, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
217
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.10.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
218
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_test (v0.1.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
219
|
+
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.6.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
220
|
+
<orderEntry type="library" scope="PROVIDED" name="pg (v0.15.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
221
|
+
<orderEntry type="library" scope="PROVIDED" name="polyglot (v0.3.4, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
222
|
+
<orderEntry type="library" scope="PROVIDED" name="rack (v1.5.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
223
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-test (v0.6.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
224
|
+
<orderEntry type="library" scope="PROVIDED" name="rails (v4.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
225
|
+
<orderEntry type="library" scope="PROVIDED" name="rails_12factor (v0.0.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
226
|
+
<orderEntry type="library" scope="PROVIDED" name="rails_serve_static_assets (v0.0.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
227
|
+
<orderEntry type="library" scope="PROVIDED" name="rails_stdout_logging (v0.0.3, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
228
|
+
<orderEntry type="library" scope="PROVIDED" name="railties (v4.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
229
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.3.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
230
|
+
<orderEntry type="library" scope="PROVIDED" name="rdoc (v3.12.2, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
231
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v2.13.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
232
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v2.13.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
233
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v2.13.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
234
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-instafail (v0.2.4, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
235
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v2.13.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
236
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-rails (v2.13.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
237
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.5.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
238
|
+
<orderEntry type="library" scope="PROVIDED" name="rubyzip (v0.9.9, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
239
|
+
<orderEntry type="library" scope="PROVIDED" name="sass (v3.3.7, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
240
|
+
<orderEntry type="library" scope="PROVIDED" name="sass-rails (v4.0.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
241
|
+
<orderEntry type="library" scope="PROVIDED" name="sdoc (v0.3.20, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
242
|
+
<orderEntry type="library" scope="PROVIDED" name="selenium-webdriver (v2.35.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
243
|
+
<orderEntry type="library" scope="PROVIDED" name="sprockets (v2.11.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
244
|
+
<orderEntry type="library" scope="PROVIDED" name="sprockets-rails (v2.0.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
245
|
+
<orderEntry type="library" scope="PROVIDED" name="sqlite3 (v1.3.8, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
246
|
+
<orderEntry type="library" scope="PROVIDED" name="thor (v0.19.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
247
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.3, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
248
|
+
<orderEntry type="library" scope="PROVIDED" name="tilt (v1.4.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
249
|
+
<orderEntry type="library" scope="PROVIDED" name="treetop (v1.4.15, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
250
|
+
<orderEntry type="library" scope="PROVIDED" name="turbolinks (v1.1.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
251
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.1.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
252
|
+
<orderEntry type="library" scope="PROVIDED" name="uglifier (v2.1.1, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
253
|
+
<orderEntry type="library" scope="PROVIDED" name="websocket (v1.0.7, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
254
|
+
<orderEntry type="library" scope="PROVIDED" name="will_paginate (v3.0.4, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
255
|
+
<orderEntry type="library" scope="PROVIDED" name="xpath (v2.0.0, RVM: ruby-1.9.3-p484 [global]) [gem]" level="application" />
|
256
|
+
</component>
|
257
|
+
<component name="RModuleSettingsStorage">
|
258
|
+
<LOAD_PATH number="0" />
|
259
|
+
<I18N_FOLDERS number="1" string0="$MODULE_DIR$/config/locales" />
|
260
|
+
</component>
|
261
|
+
</module>
|
262
|
+
|