MrFox 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/.gitignore ADDED
@@ -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 mr_fox.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
data/bin/mr_fox ADDED
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'sinatra'
4
+
5
+ set :run, true
6
+
7
+ get '/' do
8
+ page =<<PAGE
9
+ <style>
10
+ body {
11
+ background-color:black;
12
+ }
13
+ img {
14
+ display:block;
15
+ margin: 100px;
16
+ }
17
+ h1 {
18
+ font-family: "Georgia";
19
+ text-align: center;
20
+ font-size:40px;
21
+ color:white;
22
+ }
23
+ </style>
24
+ <h1>Mr. Fox will be coming right now</h1>
25
+ <center>
26
+ <img src='http://3.bp.blogspot.com/_ypw0qX59HUE/SinaqflOzcI/AAAAAAAAAOs/BHtKj7fRbno/s1600/IMG_00069.JPG'/>
27
+ </center>
28
+ PAGE
29
+
30
+
31
+ end
data/lib/mr_fox.rb ADDED
@@ -0,0 +1,3 @@
1
+ module MrFox
2
+ # Your code goes here...
3
+ end
@@ -0,0 +1,3 @@
1
+ module MrFox
2
+ VERSION = "0.0.2"
3
+ end
data/mr_fox.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "mr_fox/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "MrFox"
7
+ s.version = MrFox::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Alvaro Pereyra","Gustavo Leon"]
10
+ s.email = ["alvaro@xendacentral.com","gustavo@xendacentral.com"]
11
+ s.homepage = ""
12
+ s.summary = %q{MrFox eases the analytics tracing of web apps}
13
+ s.description = %q{MrFox sends data through REST queries to the MrFoxServer}
14
+
15
+ s.rubyforge_project = "mr_fox"
16
+ s.add_dependency "sinatra"
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ end
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: MrFox
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.2
6
+ platform: ruby
7
+ authors:
8
+ - Alvaro Pereyra
9
+ - Gustavo Leon
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+
14
+ date: 2011-05-12 00:00:00 -05:00
15
+ default_executable:
16
+ dependencies:
17
+ - !ruby/object:Gem::Dependency
18
+ name: sinatra
19
+ prerelease: false
20
+ requirement: &id001 !ruby/object:Gem::Requirement
21
+ none: false
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: "0"
26
+ type: :runtime
27
+ version_requirements: *id001
28
+ description: MrFox sends data through REST queries to the MrFoxServer
29
+ email:
30
+ - alvaro@xendacentral.com
31
+ - gustavo@xendacentral.com
32
+ executables:
33
+ - mr_fox
34
+ extensions: []
35
+
36
+ extra_rdoc_files: []
37
+
38
+ files:
39
+ - .gitignore
40
+ - Gemfile
41
+ - Rakefile
42
+ - bin/mr_fox
43
+ - lib/mr_fox.rb
44
+ - lib/mr_fox/version.rb
45
+ - mr_fox.gemspec
46
+ has_rdoc: true
47
+ homepage: ""
48
+ licenses: []
49
+
50
+ post_install_message:
51
+ rdoc_options: []
52
+
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: "0"
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
67
+ requirements: []
68
+
69
+ rubyforge_project: mr_fox
70
+ rubygems_version: 1.5.0
71
+ signing_key:
72
+ specification_version: 3
73
+ summary: MrFox eases the analytics tracing of web apps
74
+ test_files: []
75
+