mountain-goat 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/mountain_goat.rb
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
|
|
2
|
+
require 'rubygems'
|
|
3
|
+
require 'active_support'
|
|
4
|
+
require 'action_controller'
|
|
5
|
+
require 'action_controller/routing'
|
|
6
|
+
|
|
2
7
|
require File.join([File.dirname(__FILE__), 'mountain_goat/controllers/mountain_goat/mountain_goat_controller'])
|
|
3
8
|
require File.join([File.dirname(__FILE__), 'mountain_goat/controllers/mountain_goat/mountain_goat_metrics_controller'])
|
|
4
9
|
require File.join([File.dirname(__FILE__), 'mountain_goat/controllers/mountain_goat/mountain_goat_metric_variants_controller'])
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
|
|
1
2
|
class MountainGoatController < ActionController::Base
|
|
2
3
|
|
|
3
|
-
self.
|
|
4
|
+
self.prepend_view_path File.join([File.dirname(__FILE__), '../../views/mountain_goat/'])
|
|
4
5
|
|
|
5
6
|
layout 'mountain_goat'
|
|
6
7
|
end
|
|
Binary file
|
data/mountain-goat.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
20
|
s.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
-
#
|
|
22
|
+
# Development Dependencies
|
|
23
23
|
s.add_development_dependency(%q<rspec>, ["~> 2.2.0"])
|
|
24
24
|
s.add_development_dependency(%q<rack-test>, [">= 0.5.6"])
|
|
25
25
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mountain-goat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Geoffrey Hayes
|
|
@@ -16,7 +16,8 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-07-07 00:00:00
|
|
19
|
+
date: 2011-07-07 00:00:00 -05:00
|
|
20
|
+
default_executable:
|
|
20
21
|
dependencies:
|
|
21
22
|
- !ruby/object:Gem::Dependency
|
|
22
23
|
name: rspec
|
|
@@ -103,7 +104,9 @@ files:
|
|
|
103
104
|
- lib/mountain_goat/views/mountain_goat/mountain_goat_metrics/new.html.erb
|
|
104
105
|
- lib/mountain_goat/views/mountain_goat/mountain_goat_metrics/show.html.erb
|
|
105
106
|
- migrations/20090716093747_create_metric_tracking_tables.rb
|
|
107
|
+
- mountain-goat-0.0.1.gem
|
|
106
108
|
- mountain-goat.gemspec
|
|
109
|
+
has_rdoc: true
|
|
107
110
|
homepage: http://github.com/hayesgm/mountain-goat
|
|
108
111
|
licenses: []
|
|
109
112
|
|
|
@@ -133,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
133
136
|
requirements: []
|
|
134
137
|
|
|
135
138
|
rubyforge_project: mountain-goat
|
|
136
|
-
rubygems_version: 1.
|
|
139
|
+
rubygems_version: 1.5.0
|
|
137
140
|
signing_key:
|
|
138
141
|
specification_version: 3
|
|
139
142
|
summary: A/B Testing to the edge
|