04 Nov, 2015
1 commit
31 Oct, 2015
4 commits
-
Sorry, this touches a lot of code.
23 Oct, 2015
1 commit
-
Rubocop: consistent access modifier indentation
20 Oct, 2015
2 commits
-
This reverts commit 644116d884df846f633ee0d213fab94138e80465.
-
This is a tough call, both the Rails style (with private/protected) methods indented one level under the keyword, and other places using the standard ruby don't modify identation for access level. I think this strikes a good balance while still being readable. s
15 Oct, 2015
5 commits
-
Still allowing for internal alignment across lines.
-
Tiny addition to overall consistency
14 Oct, 2015
2 commits
12 Oct, 2015
8 commits
-
Notice the return value of a before_action is ignored, so we can safely remove that code.
-
That's what the majority of the codebase is using, so following that
-
Now this succeeds: $ bundle exec rubocop --lint --only UselessAssignment
06 Oct, 2015
1 commit
03 Oct, 2015
1 commit
14 Sep, 2015
1 commit
01 Sep, 2015
1 commit
-
In the past users could only follow apps if an admin did it for them. But now users can follow and unfollow any apps. Following an app is no longer like a permission to view that app.
28 Aug, 2015
1 commit
21 Aug, 2015
1 commit
14 Aug, 2015
3 commits
-
inspired by 12-factor, we now log to STDOUT by default instead of a named log file in ./log. This is just a default, and you can still configure your own log location using ERRBIT_LOG_LOCATION.
15 Jul, 2015
1 commit
17 Apr, 2015
1 commit
-
new image icon interface
10 Apr, 2015
1 commit
24 Mar, 2015
1 commit
-
Also: fix tests.
23 Feb, 2015
1 commit
13 Feb, 2015
1 commit
-
Refs #785 add md and txt issue tracker templates
12 Feb, 2015
2 commits
-
Actually, using "native" integers works too, and seems simpler.
-
The user's organization ids are converted to String, but the configuration value `Errbit::Config.github_org_id` is always an Integer. They can't possibly match. By converting the config's value to a String, it works. There might be a better solution by using Integers all the way,