bandit 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in bandit.gemspec
4
+ gemspec
@@ -0,0 +1,3 @@
1
+ = bandit - A multi-armed bandit optmization framework for Rails
2
+
3
+ TODO: Write library.
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,19 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+ require "bandit/version"
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "bandit"
6
+ s.version = Bandit::VERSION
7
+ s.authors = ["Brian Muller"]
8
+ s.email = ["brian.muller@livingsocial.com"]
9
+ s.homepage = "https://github.com/bmuller/bandit"
10
+ s.summary = "Multi-armed bandit testing in rails"
11
+ s.description = "Bandit provides a way to do multi-armed bandit optimization of alternatives in a rails website"
12
+
13
+ s.rubyforge_project = "bandit"
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+ end
@@ -0,0 +1,5 @@
1
+ require "bandit/version"
2
+
3
+ module Bandit
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Bandit
2
+ VERSION = "0.0.2"
3
+ end
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bandit
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 2
10
+ version: 0.0.2
11
+ platform: ruby
12
+ authors:
13
+ - Brian Muller
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-08-05 00:00:00 -04:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Bandit provides a way to do multi-armed bandit optimization of alternatives in a rails website
23
+ email:
24
+ - brian.muller@livingsocial.com
25
+ executables: []
26
+
27
+ extensions: []
28
+
29
+ extra_rdoc_files: []
30
+
31
+ files:
32
+ - .gitignore
33
+ - Gemfile
34
+ - README.rdoc
35
+ - Rakefile
36
+ - bandit.gemspec
37
+ - lib/bandit.rb
38
+ - lib/bandit/version.rb
39
+ has_rdoc: true
40
+ homepage: https://github.com/bmuller/bandit
41
+ licenses: []
42
+
43
+ post_install_message:
44
+ rdoc_options: []
45
+
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ hash: 3
54
+ segments:
55
+ - 0
56
+ version: "0"
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ hash: 3
63
+ segments:
64
+ - 0
65
+ version: "0"
66
+ requirements: []
67
+
68
+ rubyforge_project: bandit
69
+ rubygems_version: 1.3.7
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Multi-armed bandit testing in rails
73
+ test_files: []
74
+