repo
string
commit
string
message
string
diff
string
jbbarth/dotfiles
c843cf5908e2391fdf1eea0477445601ff0dfe25
.zsh: improve todos() output
diff --git a/.zsh/git.zsh b/.zsh/git.zsh index 39c79cb..da81e55 100644 --- a/.zsh/git.zsh +++ b/.zsh/git.zsh @@ -1,67 +1,67 @@ export GIT_EDITOR=vi export GPG_TTY=$(tty) alias g='git' alias gs='git status -sb' alias gd='git diff' alias gp='git push origin HEAD' alias gitx='open -a GitX' gc() { todos git s...
jbbarth/dotfiles
8ef92316a4a1a585f74fb255b920fd3c716cecdf
.zsh: add useful gcd() function
diff --git a/.zsh/aliases.zsh b/.zsh/aliases.zsh index d3a89ee..f769957 100644 --- a/.zsh/aliases.zsh +++ b/.zsh/aliases.zsh @@ -1,168 +1,172 @@ # Colors in commands # adapted from http://chm.duquesne.free.fr/blog/?p=61 if [ -x /usr/bin/dircolors ]; then eval "$(dircolors -b)" alias ls='ls --color=auto' ali...
jbbarth/dotfiles
f1b32b572bc606febf1e4cb021bbe209eb7ea563
zsh: avoid python warnings on awscli installed via homebrew
diff --git a/.zsh/aws.zsh b/.zsh/aws.zsh index 92c5181..ce06ea5 100644 --- a/.zsh/aws.zsh +++ b/.zsh/aws.zsh @@ -1,4 +1,7 @@ export EC2_HOME=/usr/local/ec2 export AWS_AUTO_SCALING_HOME=/usr/local/as-cli/ test -x /usr/libexec/java_home && /usr/libexec/java_home >/dev/null 2>/dev/null && export JAVA_HOME=$(/usr/libexe...
jbbarth/dotfiles
102d96c1ddb9602df4c0955f03b438ed6a6062ce
brew: install github official cli client 'gh'
diff --git a/bin/brew-install.sh b/bin/brew-install.sh index 39e24cf..390fe76 100755 --- a/bin/brew-install.sh +++ b/bin/brew-install.sh @@ -1,126 +1,127 @@ #!/bin/bash set -xeuo pipefail # Update the index brew update # Taps brew tap discoteq/discoteq # for "flock" brew tap johanhaleby/kubetail # for "kubet...
jbbarth/dotfiles
989fdc80d46e05a6ed86d4992b847a53373f234a
brew: install awscli package
diff --git a/bin/brew-install.sh b/bin/brew-install.sh index 9eb8b34..39e24cf 100755 --- a/bin/brew-install.sh +++ b/bin/brew-install.sh @@ -1,125 +1,126 @@ #!/bin/bash set -xeuo pipefail # Update the index brew update # Taps brew tap discoteq/discoteq # for "flock" brew tap johanhaleby/kubetail # for "kubet...
jbbarth/dotfiles
df193a5d8a7eb609aaea47f1967df9a6bc42cb9d
.zsh: speed up nvm sourcing
diff --git a/.zsh/nvm.zsh.auto b/.zsh/nvm.zsh.auto index de11fd9..a6143a0 100644 --- a/.zsh/nvm.zsh.auto +++ b/.zsh/nvm.zsh.auto @@ -1,8 +1,8 @@ export NVM_DIR="$HOME/.nvm" export NVM_BREW=/usr/local/opt/nvm mkdir -p $NVM_DIR -source $NVM_BREW/nvm.sh # nvm itself +source $NVM_BREW/nvm.sh --no-use # nvm itself s...
jbbarth/dotfiles
70e2866c23b6961bd4ad280f98f856ea89dd7945
.gitconfig: add config to always sign commits
diff --git a/.gitconfig b/.gitconfig index 1d3c053..e1732e4 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,64 +1,66 @@ [core] excludesfile = ~/.gitglobalignore [init] templatedir = ~/.git_template [user] name = Jean-Baptiste Barth # "email" below is commented since I now manage it in each repository # e...
jbbarth/dotfiles
673991b6b36482fe34f5362f865ef3dcc7708229
.zsh: add GPG_TTY env var to please gpg2
diff --git a/.zsh/git.zsh b/.zsh/git.zsh index c806805..39c79cb 100644 --- a/.zsh/git.zsh +++ b/.zsh/git.zsh @@ -1,66 +1,67 @@ export GIT_EDITOR=vi +export GPG_TTY=$(tty) alias g='git' alias gs='git status -sb' alias gd='git diff' alias gp='git push origin HEAD' alias gitx='open -a GitX' gc() { todos git s...
jbbarth/dotfiles
1fcd54ad19e9a05a8dbbf96a75efee55fea0f235
.gitconfig: comment out git email and manage it in each repo from now on
diff --git a/.gitconfig b/.gitconfig index 377335d..1d3c053 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,63 +1,64 @@ [core] excludesfile = ~/.gitglobalignore [init] templatedir = ~/.git_template [user] name = Jean-Baptiste Barth - email = jeanbaptiste.barth@gmail.com + # "email" below is commented since I...
jbbarth/dotfiles
60876d32aef44a638bb00bdec002480ed6d33a45
brew: add tunnelblick vpn client
diff --git a/bin/brew-install.sh b/bin/brew-install.sh index 0516938..9eb8b34 100755 --- a/bin/brew-install.sh +++ b/bin/brew-install.sh @@ -1,124 +1,125 @@ #!/bin/bash set -xeuo pipefail # Update the index brew update # Taps brew tap discoteq/discoteq # for "flock" brew tap johanhaleby/kubetail # for "kubet...
jbbarth/dotfiles
4e4c83c2d8c9fc8588c63cddad53a6790682c508
brew: adapt cask tap address
diff --git a/bin/brew-install.sh b/bin/brew-install.sh index 243d1df..0516938 100755 --- a/bin/brew-install.sh +++ b/bin/brew-install.sh @@ -1,124 +1,124 @@ #!/bin/bash set -xeuo pipefail # Update the index brew update # Taps brew tap discoteq/discoteq # for "flock" brew tap johanhaleby/kubetail # for "kubet...
jbbarth/dotfiles
4f02057d18ffdee54b24538aad8919fb5fa3669b
brew: change installation order so it works
diff --git a/bin/brew-install.sh b/bin/brew-install.sh index 0f14b51..243d1df 100755 --- a/bin/brew-install.sh +++ b/bin/brew-install.sh @@ -1,121 +1,124 @@ #!/bin/bash set -xeuo pipefail # Update the index brew update # Taps brew tap discoteq/discoteq # for "flock" brew tap johanhaleby/kubetail # for "kubet...
jbbarth/dotfiles
34b72f8a4cd267d9d645dbf368e61e62d8362ddb
.zsh: add ~/dev in cdpaths
diff --git a/.zsh/cdpath.zsh b/.zsh/cdpath.zsh index 7c004fb..5b1a01f 100644 --- a/.zsh/cdpath.zsh +++ b/.zsh/cdpath.zsh @@ -1,6 +1,7 @@ if test -d "$HOME/dev"; then + export CDPATH=$CDPATH:$HOME/dev for dir in $HOME/dev/*; do test -d $dir || continue export CDPATH=$CDPATH:$dir done fi
jbbarth/dotfiles
0400b706533d224b51886da6dcd314e35ae2e5f9
.zsh: improve some aliases
diff --git a/.zsh/aliases.zsh b/.zsh/aliases.zsh index 42f3544..d3a89ee 100644 --- a/.zsh/aliases.zsh +++ b/.zsh/aliases.zsh @@ -1,164 +1,168 @@ # Colors in commands # adapted from http://chm.duquesne.free.fr/blog/?p=61 if [ -x /usr/bin/dircolors ]; then eval "$(dircolors -b)" alias ls='ls --color=auto' ali...
jbbarth/dotfiles
ad753ebb576397c0f150eb14335ae2581a07bab6
.zsh: automatically 'nvm use' when a folder has a '.nvmrc' file
diff --git a/.zsh/hooks.zsh b/.zsh/hooks.zsh index ee43186..5eaa41b 100644 --- a/.zsh/hooks.zsh +++ b/.zsh/hooks.zsh @@ -1,29 +1,30 @@ # run commands after any "cd" on_cd() { # autoload kubernetes zsh file if not loaded yet if [[ $(pwd) = *kubernetes* && -z $ZSH_AUTO_K8S_LOADED ]]; then echo "sourcing ~/.z...
jbbarth/dotfiles
cc6339a52ad1add28be7b72c7f2f6cb8e371bc9e
.zsh: disable fzf for now
diff --git a/.zshrc b/.zshrc index 5509e7d..eda2052 100644 --- a/.zshrc +++ b/.zshrc @@ -1,65 +1,65 @@ HISTFILE=~/.zsh_history HISTSIZE=100000000 SAVEHIST=100000000 #bindkey -v bindkey -e #bindkey -s '\el' 'ls\n' # [Esc-l] - run command: ls #bindkey -s '\e.' '..\n' ...
jbbarth/dotfiles
d360a2c3b9dcb0e75d4cbf0f8f2044a9177e2b79
brew: update brew apps
diff --git a/bin/brew-install.sh b/bin/brew-install.sh index c7dc71f..0f14b51 100755 --- a/bin/brew-install.sh +++ b/bin/brew-install.sh @@ -1,122 +1,121 @@ #!/bin/bash set -xeuo pipefail # Update the index brew update # Taps brew tap discoteq/discoteq # for "flock" brew tap johanhaleby/kubetail # for "kubet...
jbbarth/dotfiles
994b2ee2ef96f6a6d75cd67f40a507c0b11b9b2b
.zsh: add useful hub aliases
diff --git a/.zsh/hub.zsh b/.zsh/hub.zsh new file mode 100644 index 0000000..f896dc7 --- /dev/null +++ b/.zsh/hub.zsh @@ -0,0 +1,37 @@ +_hub_repos() { + local user="${1?}" + shift 1 + _hub_paginate hub api -t graphql -f user="$user" "$@" -f query=' + query($user: String!, $per_page: Int = 100, $after: String) { +...
jbbarth/dotfiles
5026579e237215434234fc08d2284b0352bea8df
.zsh: remove garbage from tabtab npm module
diff --git a/.zshrc b/.zshrc index 3d9e1ba..5509e7d 100644 --- a/.zshrc +++ b/.zshrc @@ -1,72 +1,65 @@ HISTFILE=~/.zsh_history HISTSIZE=100000000 SAVEHIST=100000000 #bindkey -v bindkey -e #bindkey -s '\el' 'ls\n' # [Esc-l] - run command: ls #bindkey -s '\e.' '..\n' ...
jbbarth/dotfiles
8aa279717ade67b4f8a334987d235f4e10d3fbf3
.psqlrc: restore sane defaults in psql
diff --git a/.psqlrc b/.psqlrc index d9cb82a..15a5adc 100644 --- a/.psqlrc +++ b/.psqlrc @@ -1,6 +1,6 @@ ---- \set PROMPT1 '(%n@%M:%>) %`date +%H:%M:%S` [%/] \n%x%# ' --- \timing --- \echo "Setting lock_timeout to 2s" ---- set lock_timeout to 2000; --- \echo "Setting statement_timeout to 20s" --- set statement_timeout ...
jbbarth/dotfiles
2d4528adca05e508b55a6cc75e8eba22480c2eab
.zsh: deduplicate PATH additions
diff --git a/.zsh/aliases.zsh b/.zsh/aliases.zsh index b80e9c6..42f3544 100644 --- a/.zsh/aliases.zsh +++ b/.zsh/aliases.zsh @@ -1,164 +1,164 @@ # Colors in commands # adapted from http://chm.duquesne.free.fr/blog/?p=61 if [ -x /usr/bin/dircolors ]; then eval "$(dircolors -b)" alias ls='ls --color=auto' ali...
jbbarth/dotfiles
b5baff97a36bb253354b5da76c2521bb3f6db1e1
.zsh: add 'gclone' function to clone from github with the right path
diff --git a/.zsh/git.zsh b/.zsh/git.zsh index ea5418b..c806805 100644 --- a/.zsh/git.zsh +++ b/.zsh/git.zsh @@ -1,59 +1,66 @@ export GIT_EDITOR=vi alias g='git' alias gs='git status -sb' alias gd='git diff' alias gp='git push origin HEAD' alias gitx='open -a GitX' gc() { todos git status --porcelain | gre...
jbbarth/dotfiles
961c4925c427b622df217a0ad77950149e24ed7a
.zsh: add 'sdupes' aliases (finds duplicates but with size only)
diff --git a/.zsh/aliases.zsh b/.zsh/aliases.zsh index 3d73d71..b80e9c6 100644 --- a/.zsh/aliases.zsh +++ b/.zsh/aliases.zsh @@ -1,161 +1,164 @@ # Colors in commands # adapted from http://chm.duquesne.free.fr/blog/?p=61 if [ -x /usr/bin/dircolors ]; then eval "$(dircolors -b)" alias ls='ls --color=auto' ali...
jbbarth/dotfiles
2243a0b3b47c1597adf7a72d8382c9465270be4d
.zsh: add 'flamedir' alias
diff --git a/.zsh/aliases.zsh b/.zsh/aliases.zsh index ce4ab48..3d73d71 100644 --- a/.zsh/aliases.zsh +++ b/.zsh/aliases.zsh @@ -1,155 +1,161 @@ # Colors in commands # adapted from http://chm.duquesne.free.fr/blog/?p=61 if [ -x /usr/bin/dircolors ]; then eval "$(dircolors -b)" alias ls='ls --color=auto' ali...
jbbarth/dotfiles
66ac9f3ae986b1743af5f49ff5715ecb9e2c33b4
.git: add 'git lg' alias for pretty release logs
diff --git a/.gitconfig b/.gitconfig index c1723dd..377335d 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,61 +1,63 @@ [core] excludesfile = ~/.gitglobalignore [init] templatedir = ~/.git_template [user] name = Jean-Baptiste Barth email = jeanbaptiste.barth@gmail.com [branch] autosetuprebase = always #...
jbbarth/dotfiles
f7ff8f9f6c78aa1f887308948a638fc75fef9d24
.zsh: make pyenv autoloaded since it's pretty slow
diff --git a/.zsh/hooks.zsh b/.zsh/hooks.zsh index 266227e..3de8a90 100644 --- a/.zsh/hooks.zsh +++ b/.zsh/hooks.zsh @@ -1,23 +1,29 @@ # run commands after any "cd" on_cd() { # autoload kubernetes zsh file if not loaded yet if [[ $(pwd) = *kubernetes* && -z $ZSH_AUTO_K8S_LOADED ]]; then echo "sourcing ~/.z...
jbbarth/dotfiles
5e37aa294f135ec0d0c5389718453810d2fa5101
bin: add 'textual' irc client
diff --git a/.ackrc b/.ackrc new file mode 100644 index 0000000..2070959 --- /dev/null +++ b/.ackrc @@ -0,0 +1,16 @@ +--ignore-dir=build +--ignore-dir=dist +--ignore-dir=var +--ignore-dir=.tox +--ignore-dir=coverage +--ignore-dir=data +--ignore-dir=tmp +--ignore-dir=vendor +--ignore-file=is:bundle.js +--ignore-file=mat...
zquestz/startpoint
c02c48a27fc84330445e263accb4cd3be315910e
New gems
diff --git a/vendor/cache/RedCloth-4.2.3.gem b/vendor/cache/RedCloth-4.2.3.gem new file mode 100644 index 0000000..1a83837 Binary files /dev/null and b/vendor/cache/RedCloth-4.2.3.gem differ diff --git a/vendor/cache/libv8-3.3.10.2-x86-linux.gem b/vendor/cache/libv8-3.3.10.2-x86-linux.gem new file mode 100644 index 000...
zquestz/startpoint
cb42e2a4bfcbaa24b643b4c18873d804eeca83e2
Have it automatically create the rvm gemset
diff --git a/.rvmrc b/.rvmrc index 62fd8d1..d619e1d 100644 --- a/.rvmrc +++ b/.rvmrc @@ -1 +1 @@ -rvm 1.8.7@startpoint +rvm 1.8.7@startpoint --create diff --git a/Gemfile.lock b/Gemfile.lock index ed67e0e..2618f5e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,85 +1,85 @@ GEM remote: http://rubygems.org/ spe...
zquestz/startpoint
7a20e75d0ebd94416b3c1bfc286bc078e1c02a3e
Locked down RedCloth so it compiles cleanly on Archlinux.
diff --git a/Gemfile b/Gemfile index d1c23e6..e7285ea 100644 --- a/Gemfile +++ b/Gemfile @@ -1,77 +1,77 @@ source :gemcutter # Include mysqlplus # Would use mysql2 but it doesn't work right in 1.8.6 # Breaks rake db:create && rake db:drop gem "mysql2", "~> 0.2.0" # Include rails gem "rails", "~> 2.3.9" gem ...
zquestz/startpoint
774f07aa4d89aa920cf3becb6df591404483b066
Cleaned up a bit of code
diff --git a/lib/extend_ruby_classes.rb b/lib/extend_ruby_classes.rb index e15d0dd..2065ceb 100644 --- a/lib/extend_ruby_classes.rb +++ b/lib/extend_ruby_classes.rb @@ -1,46 +1,38 @@ class Hash - - ## # Filter keys out of a Hash. - # # { :a => 1, :b => 2, :c => 3 }.except(:a) # => { :b => 2, :c => 3 }...
zquestz/startpoint
0dd0d1c41e781660163d4ea3cc48d6278c785834
Fixed README, I use mysql2 now
diff --git a/README b/README index 676bf75..415bbe6 100644 --- a/README +++ b/README @@ -1,39 +1,39 @@ - startpoint - http://github.com/zquestz/startpoint Just a shell app that incorporates things you probably want in your application, but don't come by default in Rails. Still is a work in progress but the start i...
zquestz/startpoint
d1eef7b32db4bd00b8bdaa2756fcb74acb348738
New gems
diff --git a/vendor/cache/actionmailer-2.3.12.gem b/vendor/cache/actionmailer-2.3.12.gem new file mode 100644 index 0000000..bc37f81 Binary files /dev/null and b/vendor/cache/actionmailer-2.3.12.gem differ diff --git a/vendor/cache/actionpack-2.3.12.gem b/vendor/cache/actionpack-2.3.12.gem new file mode 100644 index 00...
zquestz/startpoint
5c6273c9852dcbc10e6ab1d91020cba0bb0aa357
Bring startpoint into the 21st century
diff --git a/Gemfile b/Gemfile index 9c204e6..d1c23e6 100644 --- a/Gemfile +++ b/Gemfile @@ -1,74 +1,77 @@ source :gemcutter # Include mysqlplus # Would use mysql2 but it doesn't work right in 1.8.6 # Breaks rake db:create && rake db:drop -gem "mysqlplus", ">= 0.1.2" +gem "mysql2", "~> 0.2.0" # Include rails ...
zquestz/startpoint
0754f0c4792d15c0fade67d30d573a4d9a44f656
Removed store_location call on non logged in user requirement
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index dff5c7a..70d76b6 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,168 +1,167 @@ class ApplicationController < ActionController::Base # Enable mobile su...
zquestz/startpoint
36db08284ea745c523c4d4cec7caa91bc83ef860
Fixed issue with Flash uploads and 406 errors
diff --git a/app/controllers/admin/images_controller.rb b/app/controllers/admin/images_controller.rb index 8d92013..daabf73 100644 --- a/app/controllers/admin/images_controller.rb +++ b/app/controllers/admin/images_controller.rb @@ -1,175 +1,173 @@ class Admin::ImagesController < ApplicationController before_filter...
zquestz/startpoint
b2e3aa6b2cff69750dac660d619660728fd45485
Support more sock files for production mode so I can use passenger on my laptop
diff --git a/config/database.yml b/config/database.yml index 1d71414..1121f28 100644 --- a/config/database.yml +++ b/config/database.yml @@ -1,28 +1,30 @@ # SQLite version 3.x # gem install sqlite3-ruby (not necessary on OS X Leopard) development: adapter: sqlite3 database: db/development.sqlite3 pool: 5 ...
zquestz/startpoint
900c2e08b76f47ca1f1679131b461356fbb1de83
Added production hostname
diff --git a/config/settings.yml b/config/settings.yml index efd364b..c8ecd58 100644 --- a/config/settings.yml +++ b/config/settings.yml @@ -1,40 +1,41 @@ --- # Default settings for app default: # Application Name app_name: StartPoint # Mailer Email mailer_email: mailer@somewhere.com # S...
zquestz/startpoint
732c26f7a3ae2014ca9a01fdd6dd7f2749724d15
Fixed production asset host
diff --git a/config/settings.yml b/config/settings.yml index 36f0368..efd364b 100644 --- a/config/settings.yml +++ b/config/settings.yml @@ -1,40 +1,40 @@ --- # Default settings for app default: # Application Name app_name: StartPoint # Mailer Email mailer_email: mailer@somewhere.com # S...
zquestz/startpoint
00d1d58f2f9739f31db23070ca07f8b2bf1f39ae
Added delayed job recipe for capistrano, and fixed subject strings in emails so they translate correctly
diff --git a/app/models/notifier.rb b/app/models/notifier.rb index ee12523..f5b0570 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -1,39 +1,39 @@ class Notifier < ActionMailer::Base helper :application def password_reset_instructions(user) - subject Setting.app_name + ' - ' + t(:...
zquestz/startpoint
473d81421ca0bc64fe83aed9d97e98b95b583b75
Fixed ending div on user list page
diff --git a/app/views/users/_user.html.erb b/app/views/users/_user.html.erb index 546fb13..e43e6b8 100644 --- a/app/views/users/_user.html.erb +++ b/app/views/users/_user.html.erb @@ -1,3 +1,3 @@ <div class="user"> <%= link_to((image_tag user.avatar.url(:large_icon)), user_path(user)) %> -<div> \ No newline at end...
zquestz/startpoint
a8740c55671a269ea9797db9abe1eda647bc02bf
Fixed time zone logic
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index d1a2784..8ee75ff 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,168 +1,168 @@ class ApplicationController < ActionController::Base # Enable mobile su...
zquestz/startpoint
9a38206d606250b5a90657873a38ba065f4d9d05
Fixed time zone logic
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 32dfd3d..d1a2784 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,168 +1,168 @@ class ApplicationController < ActionController::Base # Enable mobile su...
zquestz/startpoint
49879503055da5f3e52e43b306f5c986cb051b4a
Added vanity routes for pagination in images and pdfs
diff --git a/config/routes.rb b/config/routes.rb index 0c04ec9..faebff2 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,96 +1,102 @@ ActionController::Routing::Routes.draw do |map| # Homepage route. map.root :controller => 'main' # Contact routes. map.contact 'contact', :controller => 'con...
zquestz/startpoint
718065932b23621912c8451b7babe9fd859494d9
Fixed i18n issue with pdf admin sorts
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index c6373a2..db61250 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1,93 +1,97 @@ # Methods added to this helper will be available to all templates in the application. module ApplicationHel...
zquestz/startpoint
5468efd070ed644ca923b15b78f64d15b2fd536f
Fix cold deploy issue
diff --git a/config/deploy/recipes/passenger.rb b/config/deploy/recipes/passenger.rb index 4a1164e..ceffd8f 100644 --- a/config/deploy/recipes/passenger.rb +++ b/config/deploy/recipes/passenger.rb @@ -1,8 +1,11 @@ Capistrano::Configuration.instance(:must_exist).load do # Passenger deployment restart namespace :d...
zquestz/startpoint
13c59f0237bcddd20fcf33889dfe66c61bf4a147
Deploy script additions
diff --git a/config/deploy.rb b/config/deploy.rb index b9341aa..75c2c55 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,32 +1,37 @@ Dir[File.dirname(__FILE__) + '/deploy/recipes/*.rb'].each {|file| require file }.each {|file| require file } require 'bundler/capistrano' set :application, "startpoint" se...
zquestz/startpoint
64e016081553bf5cc5d9a637e57b3b575803a512
Switched bundler recipe
diff --git a/config/deploy.rb b/config/deploy.rb index 6c73eb2..b9341aa 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,31 +1,32 @@ Dir[File.dirname(__FILE__) + '/deploy/recipes/*.rb'].each {|file| require file }.each {|file| require file } +require 'bundler/capistrano' set :application, "startpoint" se...
zquestz/startpoint
58d55898aa13dc45684dec68b1abe5b5ffcaf78e
Small fix for install
diff --git a/README b/README index e5c0c4c..676bf75 100644 --- a/README +++ b/README @@ -1,39 +1,39 @@ - startpoint - http://github.com/zquestz/startpoint Just a shell app that incorporates things you probably want in your application, but don't come by default in Rails. Still is a work in progress but the start i...
zquestz/startpoint
54a0a398086e3c1488be302fd4451eeec62dc1b3
Export method is now more readable
diff --git a/app/models/contact.rb b/app/models/contact.rb index 8ac88c0..e0688b6 100644 --- a/app/models/contact.rb +++ b/app/models/contact.rb @@ -1,35 +1,49 @@ class Contact < ActiveRecord::Base default_scope :order => 'contacts.email ASC' # Make sure emails are unique and included validates_uniqueness...
zquestz/startpoint
0bbb887316c621164e203964092ef4ec5e02c8f2
Small hook for full name on Contact
diff --git a/app/models/contact.rb b/app/models/contact.rb index c50b738..29c934a 100644 --- a/app/models/contact.rb +++ b/app/models/contact.rb @@ -1,18 +1,23 @@ class Contact < ActiveRecord::Base default_scope :order => 'contacts.email ASC' # Make sure emails are unique and included validates_uniqueness...
zquestz/startpoint
f5cfe80d549e9fd1c060320963c83b116d865a19
Small updates to documentation. More will be coming
diff --git a/README b/README index 1a7ad6a..0863928 100644 --- a/README +++ b/README @@ -1,36 +1,39 @@ - startpoint - http://github.com/zquestz/startpoint Just a shell app that incorporates things you probably want in your application, but don't come by default in Rails. Still is a work in progress but the start i...
drewolson/ruby_focused_unit_test_vim
980b2ebad5d994ce44a7a765e734e1a3ffde3004
Use 'rspec -v' to determine if rspec is available
diff --git a/plugin/ruby_focused_unit_test.vim b/plugin/ruby_focused_unit_test.vim index f5e184e..33e1937 100644 --- a/plugin/ruby_focused_unit_test.vim +++ b/plugin/ruby_focused_unit_test.vim @@ -1,183 +1,182 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() comm...
drewolson/ruby_focused_unit_test_vim
d5f1776bc2fa65e5ddb0c13294142753fe8016b0
Quote file args to support paths with spaces
diff --git a/plugin/ruby_focused_unit_test.vim b/plugin/ruby_focused_unit_test.vim index a5d6b6a..f5e184e 100644 --- a/plugin/ruby_focused_unit_test.vim +++ b/plugin/ruby_focused_unit_test.vim @@ -1,183 +1,183 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() comm...
drewolson/ruby_focused_unit_test_vim
a66568783c0c85e4b3a59110b16653f45aa6e860
Use bundler provided executable if available
diff --git a/plugin/ruby_focused_unit_test.vim b/plugin/ruby_focused_unit_test.vim index b1a3a5f..a5d6b6a 100644 --- a/plugin/ruby_focused_unit_test.vim +++ b/plugin/ruby_focused_unit_test.vim @@ -1,178 +1,183 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() comm...
drewolson/ruby_focused_unit_test_vim
272471862408da093378ad5272ec644419f4c60a
redirect stderr and stdout to /dev/null when checking for rspec vs. spec command
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 02f88cd..b1a3a5f 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,178 +1,178 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunRubyFocusedContext :c...
drewolson/ruby_focused_unit_test_vim
14b917918a735fd47b4e9bd868b905542cb0fbe6
Suppress warning when rspec command is not found
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 813521d..02f88cd 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,178 +1,178 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunRubyFocusedContext :c...
drewolson/ruby_focused_unit_test_vim
d0033226078c7213b64bba27a0607e1c33a5b6a9
Added support for rspec 2.
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 6455c35..813521d 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,174 +1,178 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunRubyFocusedContext :c...
drewolson/ruby_focused_unit_test_vim
0671adf2987e5ad1ca1410965a8a3dad306b89d6
Added a command to run the last test.
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 8842ec8..6455c35 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,158 +1,174 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunRubyFocusedContext :c...
drewolson/ruby_focused_unit_test_vim
5fff369778ffcaf6797a54271aa4f5df6e5e7c51
handle nested describes for rspec
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index fbddba7..8842ec8 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,158 +1,158 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunRubyFocusedContext :c...
drewolson/ruby_focused_unit_test_vim
d103e6445550bf4733d70b01eaa0cf2b31ee5e45
added run focused context
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index cd2aa1d..fbddba7 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,130 +1,158 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() +command RunRubyFocusedContext :c...
drewolson/ruby_focused_unit_test_vim
767342263a4bbd28fa8f49b81ab3a67afee7d65f
run full spec files and redirect stderr to stdout
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 491f40f..cd2aa1d 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,122 +1,130 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunAllRubyTests :call <S...
drewolson/ruby_focused_unit_test_vim
8d442ac93063f765502c0e4ba586168d97d90510
remove redirection until i can figure it out
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index c68bb64..491f40f 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,122 +1,122 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunAllRubyTests :call <S...
drewolson/ruby_focused_unit_test_vim
0f9fa1249fdc3d5875c64de65ebdcc014beb1005
redirecting should work now
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index def259f..c68bb64 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,122 +1,122 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunAllRubyTests :call <S...
drewolson/ruby_focused_unit_test_vim
c40816f67cfd720d284d1a09312bde76fe617687
redirect stderr to stdout
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 491f40f..def259f 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,122 +1,122 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunAllRubyTests :call <S...
drewolson/ruby_focused_unit_test_vim
c04b28078d1cdcfa95b2dbf4cf270e65adcb7bfb
Remove broken lines from bad merge.
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 9ae0b6b..491f40f 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,125 +1,122 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunAllRubyTests :call <S...
drewolson/ruby_focused_unit_test_vim
10c956a8e1932dae17af2d1561015de16f227d6a
re-do partial reads for run ruby tests, but better
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index adeaff6..9ae0b6b 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,110 +1,125 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunAllRubyTests :call <S...
drewolson/ruby_focused_unit_test_vim
e9cbf055d12d144f266b698b0f034f440d92c6df
Make focused test run shoulda tests.
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 1942b38..adeaff6 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,106 +1,110 @@ if !has("ruby") finish end command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() command RunAllRubyTests :call <S...
drewolson/ruby_focused_unit_test_vim
343a71b97fed7b5bb68a35265a39884363cae10f
added command for running all tests
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index d4611c8..0dc5c7a 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,53 +1,54 @@ command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() +command RunAllRubyTests :call <SID>RunAllRubyTests() function! s:...
drewolson/ruby_focused_unit_test_vim
a6f1e14f07c4b53efd771785b3fd8417767ec14f
put output in a seperate split. add command to run all tests
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index 3180dab..d4611c8 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,38 +1,53 @@ command RunRubyFocusedUnitTest :call <SID>RunRubyFocusedUnitTest() function! s:RunRubyFocusedUnitTest() - ruby RubyFocusedUnitTest.n...
drewolson/ruby_focused_unit_test_vim
fcf65495a5035970c2aba2f702c0f115b68bfa95
now handles dust correctly and spec
diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim index d3ea809..aed47b3 100644 --- a/ruby_focused_unit_test.vim +++ b/ruby_focused_unit_test.vim @@ -1,33 +1,38 @@ command RunFocusedRubyUnitTest :call <SID>RunFocusedRubyUnitTest() function! s:RunFocusedRubyUnitTest() ruby FocusedRubyUnitTest.n...
drewolson/ruby_focused_unit_test_vim
3ffef02b894daf880a079f2cff404ea2806a5e4f
added vim plugin
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/ruby_focused_unit_test.vim b/ruby_focused_unit_test.vim new file mode 100644 index 0000000..d3ea809 --- /dev/null +++ b/ruby_focused_unit_test.vim @@ -0,0 +1,33 @@ +command R...
Bombe/utils
bbfe8f02e560c97a3f9bbe41d43163f6b3986384
🔖 Set version to 0.13.1
diff --git a/pom.xml b/pom.xml index 177be3f..25c7a05 100644 --- a/pom.xml +++ b/pom.xml @@ -1,90 +1,90 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
5b534f90ec8fb7575cbbb6d2ce817d95183dbd41
🐛 Fix BooleanValue not handling null correctly
diff --git a/src/main/java/net/pterodactylus/util/config/BooleanValue.java b/src/main/java/net/pterodactylus/util/config/BooleanValue.java index 2dedfaa..c692728 100644 --- a/src/main/java/net/pterodactylus/util/config/BooleanValue.java +++ b/src/main/java/net/pterodactylus/util/config/BooleanValue.java @@ -1,85 +1,91 ...
Bombe/utils
3d3fc473a11e46b42f09f62191b91a60b1a9410a
Ignore javadoc errors with Java 7
diff --git a/pom.xml b/pom.xml index 12f1b23..177be3f 100644 --- a/pom.xml +++ b/pom.xml @@ -1,89 +1,90 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
fd320055b4383e75fbe6b44373d137e9c77ffb4c
Set version to 0.13
diff --git a/pom.xml b/pom.xml index 46182c0..2ed05ac 100644 --- a/pom.xml +++ b/pom.xml @@ -1,89 +1,89 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
b4b968096fd17f5bf045dfa2b2a294eda7ebf693
Implement methods required since Java 7
diff --git a/src/main/java/net/pterodactylus/util/database/PooledDataSource.java b/src/main/java/net/pterodactylus/util/database/PooledDataSource.java index 369b316..d4c200f 100644 --- a/src/main/java/net/pterodactylus/util/database/PooledDataSource.java +++ b/src/main/java/net/pterodactylus/util/database/PooledDataSou...
Bombe/utils
5125046c0926948681758941831a83e4a84c9923
Require Java 7
diff --git a/pom.xml b/pom.xml index 56dac23..46182c0 100644 --- a/pom.xml +++ b/pom.xml @@ -1,89 +1,89 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
dd23fecf631f396d7ef7b33a2197d20c5ab4913a
Hand in class to load resources from
diff --git a/src/main/java/net/pterodactylus/util/web/StaticPage.java b/src/main/java/net/pterodactylus/util/web/StaticPage.java index 5ff619d..27d542e 100644 --- a/src/main/java/net/pterodactylus/util/web/StaticPage.java +++ b/src/main/java/net/pterodactylus/util/web/StaticPage.java @@ -1,98 +1,106 @@ /* * utils - ...
Bombe/utils
2595b14658063aae4a25f40160194272a294dc63
Return different MIME type for .tar.bz2 files
diff --git a/pom.xml b/pom.xml index 6a435fd..56dac23 100644 --- a/pom.xml +++ b/pom.xml @@ -1,83 +1,89 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
51ec0340c21ebb80cb8008a9a8b450274ebeb0c2
Use most recent JUnit version
diff --git a/pom.xml b/pom.xml index ef46a07..6a435fd 100644 --- a/pom.xml +++ b/pom.xml @@ -1,83 +1,83 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
a1d382b715019ea74c50f05d8f8cbc16cf013921
Silence the XML error handler.
diff --git a/src/main/java/net/pterodactylus/util/xml/XML.java b/src/main/java/net/pterodactylus/util/xml/XML.java index df39cb6..9c65a5a 100644 --- a/src/main/java/net/pterodactylus/util/xml/XML.java +++ b/src/main/java/net/pterodactylus/util/xml/XML.java @@ -1,245 +1,263 @@ /* * utils - XML.java - Copyright © 200...
Bombe/utils
6851d3517a1ce6fda498c18e5d843acc703b1db5
Set version to 0.12.5-SNAPSHOT.
diff --git a/pom.xml b/pom.xml index 5bd72ab..ef46a07 100644 --- a/pom.xml +++ b/pom.xml @@ -1,83 +1,83 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
6062bb7b45fa245fbdbd0af42699e922974e26f9
Set version to 0.12.4.
diff --git a/pom.xml b/pom.xml index cd07728..5bd72ab 100644 --- a/pom.xml +++ b/pom.xml @@ -1,83 +1,83 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
55fcac3af64cb8ba5d9857ad02360910a3c19f04
Close content output stream.
diff --git a/src/main/java/net/pterodactylus/util/web/TemplatePage.java b/src/main/java/net/pterodactylus/util/web/TemplatePage.java index dfd98ec..e268d04 100644 --- a/src/main/java/net/pterodactylus/util/web/TemplatePage.java +++ b/src/main/java/net/pterodactylus/util/web/TemplatePage.java @@ -1,133 +1,137 @@ /* *...
Bombe/utils
84ad8981c09a271aac1dc6ac32b46b87a3624281
Close input and output streams.
diff --git a/src/main/java/net/pterodactylus/util/web/StaticPage.java b/src/main/java/net/pterodactylus/util/web/StaticPage.java index 62d3a15..5ff619d 100644 --- a/src/main/java/net/pterodactylus/util/web/StaticPage.java +++ b/src/main/java/net/pterodactylus/util/web/StaticPage.java @@ -1,90 +1,98 @@ /* * utils - S...
Bombe/utils
71a38a6c925e570256f4a3d8a425c00d9b13d0d1
Set version to 0.12.4-SNAPSHOT.
diff --git a/pom.xml b/pom.xml index ae0a526..cd07728 100644 --- a/pom.xml +++ b/pom.xml @@ -1,83 +1,83 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
825a736a0d1d7c29026436da9256283e038d5f3d
Add extension for SSH deployment.
diff --git a/pom.xml b/pom.xml index f256e3c..ae0a526 100644 --- a/pom.xml +++ b/pom.xml @@ -1,76 +1,83 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
773e55281f0ad0a552f97414f2adb309c5b16bf9
Set version to 0.12.3.
diff --git a/pom.xml b/pom.xml index 9ebd49c..f256e3c 100644 --- a/pom.xml +++ b/pom.xml @@ -1,76 +1,76 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
37d0aae61ad486335124a13e36cf9e4a80c351ad
Check super interfaces when matching an accessor’s class.
diff --git a/src/main/java/net/pterodactylus/util/template/TemplateContext.java b/src/main/java/net/pterodactylus/util/template/TemplateContext.java index 10e4791..f7e9a5f 100644 --- a/src/main/java/net/pterodactylus/util/template/TemplateContext.java +++ b/src/main/java/net/pterodactylus/util/template/TemplateContext....
Bombe/utils
4c80fdf5d242efc0dc1baa7ea7c7766c6ebc6507
Set version to 0.12.3-SNAPSHOT.
diff --git a/pom.xml b/pom.xml index bb24b31..9ebd49c 100644 --- a/pom.xml +++ b/pom.xml @@ -1,76 +1,76 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
c5f65dbcebafe7fb66a972b90684964c5cb352b6
Add named thread factory.
diff --git a/src/main/java/net/pterodactylus/util/thread/NamedThreadFactory.java b/src/main/java/net/pterodactylus/util/thread/NamedThreadFactory.java new file mode 100644 index 0000000..b13b744 --- /dev/null +++ b/src/main/java/net/pterodactylus/util/thread/NamedThreadFactory.java @@ -0,0 +1,73 @@ +/* + * utils - Dump...
Bombe/utils
8030e93cf4aa16a6f5d7255a27e7c79776a32771
Set version to 0.12.2.
diff --git a/pom.xml b/pom.xml index d51f2f6..bb24b31 100644 --- a/pom.xml +++ b/pom.xml @@ -1,76 +1,76 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVe...
Bombe/utils
374b4772d54b6f8a2b0a93b4dead14c8d9ed92eb
Increase test coverage for DeleteFilter.
diff --git a/src/test/java/net/pterodactylus/util/template/TemplateTest.java b/src/test/java/net/pterodactylus/util/template/TemplateTest.java index 63df963..6cd3572 100644 --- a/src/test/java/net/pterodactylus/util/template/TemplateTest.java +++ b/src/test/java/net/pterodactylus/util/template/TemplateTest.java @@ -866...
Bombe/utils
9df5988df06a4095fb91d6c9041ab908b8b42627
Increase test coverage for HtmlFilter.
diff --git a/src/test/java/net/pterodactylus/util/template/TemplateTest.java b/src/test/java/net/pterodactylus/util/template/TemplateTest.java index bc2d155..63df963 100644 --- a/src/test/java/net/pterodactylus/util/template/TemplateTest.java +++ b/src/test/java/net/pterodactylus/util/template/TemplateTest.java @@ -767...
Bombe/utils
bc6ead3b10c09e7d16d77ba72c0f202dbe2380fa
Increase test coverage of StoreFilter.
diff --git a/src/test/java/net/pterodactylus/util/template/TemplateTest.java b/src/test/java/net/pterodactylus/util/template/TemplateTest.java index 0447d54..bc2d155 100644 --- a/src/test/java/net/pterodactylus/util/template/TemplateTest.java +++ b/src/test/java/net/pterodactylus/util/template/TemplateTest.java @@ -529...
Bombe/utils
19c11705913f6e97483b8a269dbe60cac61ccf6e
Return null when null is given.
diff --git a/src/main/java/net/pterodactylus/util/collection/TypeSafe.java b/src/main/java/net/pterodactylus/util/collection/TypeSafe.java index 7c475c4..3dc17ef 100644 --- a/src/main/java/net/pterodactylus/util/collection/TypeSafe.java +++ b/src/main/java/net/pterodactylus/util/collection/TypeSafe.java @@ -1,69 +1,72 ...
Bombe/utils
5179e1f249b4f3a2e7f603df55c759085fe869ea
Increase code coverage for Validation.isEither().
diff --git a/src/test/java/net/pterodactylus/util/validation/ValidationTest.java b/src/test/java/net/pterodactylus/util/validation/ValidationTest.java index 4ac1415..a3c6ba6 100644 --- a/src/test/java/net/pterodactylus/util/validation/ValidationTest.java +++ b/src/test/java/net/pterodactylus/util/validation/ValidationT...
Bombe/utils
c27b71551fc108a96a028bdeff6f69f86819960e
Add test method for Validation.isNot().
diff --git a/src/test/java/net/pterodactylus/util/validation/ValidationTest.java b/src/test/java/net/pterodactylus/util/validation/ValidationTest.java index 50a3cb0..4ac1415 100644 --- a/src/test/java/net/pterodactylus/util/validation/ValidationTest.java +++ b/src/test/java/net/pterodactylus/util/validation/ValidationT...
Bombe/utils
10be29da9059dfebe174edf771afaee885ac5a81
Add test method for Validation.is().
diff --git a/src/test/java/net/pterodactylus/util/validation/ValidationTest.java b/src/test/java/net/pterodactylus/util/validation/ValidationTest.java index 140baa5..50a3cb0 100644 --- a/src/test/java/net/pterodactylus/util/validation/ValidationTest.java +++ b/src/test/java/net/pterodactylus/util/validation/ValidationT...