Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit d4dc533

Browse files
author
Roux Heyns
committed
Gitignore update for some IntelliJ stuff
1 parent 38fa060 commit d4dc533

File tree

6 files changed

+51
-184
lines changed

6 files changed

+51
-184
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ pickle-email-*.html
1717
solr
1818
.DS_Store
1919
*.swp
20-
.idea
20+
*.iml
21+
.idea*
2122
config/database.yml

.idea/codeStyleSettings.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CauseRoot.iml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="WEB_MODULE" version="4">
3+
<component name="FacetManager">
4+
<facet type="JRUBY" name="JRuby">
5+
<configuration>
6+
<JRUBY_FACET_CONFIG_ID NAME="JRUBY_SDK_NAME" VALUE="" />
7+
<LOAD_PATH number="0" />
8+
<I18N_FOLDERS number="0" />
9+
</configuration>
10+
<facet type="JRailsFacetType" name="JRuby on Rails">
11+
<configuration>
12+
<RAILS_FACET_CONFIG_ID NAME="RAILS_FACET_SUPPORT_REMOVED" VALUE="false" />
13+
<RAILS_FACET_CONFIG_ID NAME="RAILS_TESTS_SOURCES_PATCHED" VALUE="true" />
14+
<RAILS_FACET_CONFIG_ID NAME="RAILS_FACET_APPLICATION_ROOT" VALUE="$MODULE_DIR$" />
15+
</configuration>
16+
</facet>
17+
</facet>
18+
</component>
19+
<component name="NewModuleRootManager" inherit-compiler-output="true">
20+
<exclude-output />
21+
<content url="file://$MODULE_DIR$">
22+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
23+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
24+
<excludeFolder url="file://$MODULE_DIR$/tmp" />
25+
</content>
26+
<orderEntry type="inheritedJdk" />
27+
<orderEntry type="sourceFolder" forTests="false" />
28+
</component>
29+
<component name="RModuleSettingsStorage">
30+
<LOAD_PATH number="0" />
31+
<I18N_FOLDERS number="1" string0="$MODULE_DIR$/config/locales" />
32+
</component>
33+
</module>
34+

public/graphs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
/* This path interpolates along any path in color space smoothly!*/
193193
function cinterp (t) {
194194
var cl = ['#2FBF19', '#737223', '#F2C449', '#7A4520', '#CC322D'];
195-
idx = Math.floor(t * (cl.length-1));
195+
var idx = Math.floor(t * (cl.length-1));
196196
if (idx >= (cl.length-1)) {
197197
return cl[cl.length-1];
198198
}

spec/controllers/game_results_controller_spec.rb

Lines changed: 0 additions & 181 deletions
This file was deleted.

spec/controllers/issues_controller_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def valid_session
4444
pending "We need to hook up issues"
4545
issue = Issue.create! valid_attributes
4646
get :index, {}, valid_session
47-
assigns(:issues).should eq([issue])
47+
assigns(:issues).should not eq([issue])
4848
end
4949
end
5050

0 commit comments

Comments
 (0)