This file contains 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
package main | |
import ( | |
"errors" | |
"strings" | |
) | |
type ConstraintsCalculator struct { | |
Ops []Op | |
SlotId string |
This file contains 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
package main | |
import ( | |
"bufio" | |
"fmt" | |
docker "github.com/fsouza/go-dockerclient" | |
"io" | |
"time" | |
) |
This file contains 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 DummyItemRealm < ActiveRecord::Base | |
belongs_to :dummy_item, | |
:class_name => 'DummyItem', | |
:foreign_key => 'dummy_item_id' | |
belongs_to :realm | |
after_save :create_job | |
after_save :create_broadcast_job |
This file contains 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
lass PromotedDistributor < ActiveRecord::Base | |
has_many :promotions | |
end | |
class OpenfeintDistributor < PromotedDistributor | |
class << self | |
# this will determine asset upload step | |
def assets | |
[["Banner", "display banner for openfeint"],["30x30 asset","display in blabla"]] | |
end |