This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Users in Database | |
Plugin URI: | |
Description: Puts users in the database | |
Version: 1.0 | |
Author: Nick Bair - revised by Martin Kolb | |
Author URI: https://github.com/njbair | |
Author URI: https://github.com/ediathome | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# A controller for all Paddle related stuff | |
# | |
# For use of .env file see Gist by dblandin | |
# https://gist.github.com/dblandin/8509457 | |
# | |
class PaddleController | |
def initialize | |
add_license if should_add_license? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Custom .rubocop.yml file for use with Rubymotion projects | |
# based on this blog post: | |
# http://qiita.com/watson1978/items/debafdfc49511fb173e9 | |
# | |
AllCops: | |
Exclude: | |
- '**/Rakefile' # exclude the Rakefile | |
# Disable to check whether method name use camel case |