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
| /// <summary> | |
| /// Gets the Album | |
| /// </summary> | |
| public String Album | |
| { | |
| get | |
| { | |
| return this.album; | |
| } | |
| } |
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
| walk a47cc531835448812ba2e3db5496704d36295fb2 | |
| Usage: /usr/bin/git-submodule [--quiet] [--cached] [add <repo> [-b branch]|status|init|update] [--] [<path>...] | |
| rake aborted! |
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
| require 'java' | |
| include_class com.bauer.backend.Card | |
| include_class java.util.ArrayList | |
| include_class java.util.Collections | |
| include_class java.util.List | |
| DECK_SIZE = 52 | |
| SUIT_SIZE = 13 | |
| SUITES = ['S','H','C','D'] |
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
| def edit | |
| return redirect_to new_user_session_path unless user_signed_in? | |
| return redirect_to dashboard_path unless current_user.login == params[:id] | |
| @user = current_user | |
| end |
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
| class CreditCardInfo < ActiveRecord::Base | |
| #modely stuff | |
| end |
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
| if ((start_day.to_i => book.start_boooking.day && start_day.to_i < book.end_booking.day) || (end_day.to_i > book.start_booking.day && end_day.to_i <= book.end_booking.day) || (start_day.to_i <= book.start_booking.day && end_day.to_i => book.end_booking.day)) && ((start_month.to_i => book.start_boooking.month && start_month.to_i < book.end_booking.month) || (end_month.to_i > book.start_booking.month && end_month.to_i <= book.end_booking.month) || (start_month.to_i <= book.start_booking.month && end_month.to_i => book.end_booking.month)) && ((start_year.to_i => book.start_boooking.year && start_year.to_i < book.end_booking.year) || (end_year.to_i > book.start_booking.year && end_year.to_i <= book.end_booking.year) || (start_year.to_i <= book.start_booking.year && end_year.to_i => book.end_booking.year)) |
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
| def method_missing(method, *parameters) | |
| raise NoMethodError unless @repo.respond_to?(method) | |
| @repo.send(method, *parameters) | |
| end |
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
| def method_missing(method, *params) | |
| super unless @commit.respond_to?(method) | |
| @commit.send(method, *params) | |
| end |
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
| def author | |
| @commit.author | |
| end | |
| def committed_date | |
| @commit.authored_date | |
| end |
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
| delegate :author, :authored_date, :to => :@commit |