Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Muller committed Aug 5, 2011
0 parents commit 0ae5e53
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in bandit.gemspec
gemspec
3 changes: 3 additions & 0 deletions README.rdoc
@@ -0,0 +1,3 @@
= bandit - A multi-armed bandit optmization framework for Rails

TODO: Write library.
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require 'bundler/gem_tasks'
20 changes: 20 additions & 0 deletions bandit.gemspec
@@ -0,0 +1,20 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "bandit/version"

Gem::Specification.new do |s|
s.name = "bandit"
s.version = Bandit::VERSION
s.authors = ["Brian Muller"]
s.email = ["brian.muller@livingsocial.com"]
s.homepage = ""
s.summary = "Multi-armed bandit testing in rails"
s.description = "Bandit provides a way to do multi-armed bandit optimization of alternatives in a rails website"

s.rubyforge_project = "bandit"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end
5 changes: 5 additions & 0 deletions lib/bandit.rb
@@ -0,0 +1,5 @@
require "bandit/version"

module Bandit
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/bandit/version.rb
@@ -0,0 +1,3 @@
module Bandit
VERSION = "0.0.1"
end

0 comments on commit 0ae5e53

Please sign in to comment.