rackamole 0.3.9 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. data/Gemfile +18 -0
  2. data/Gemfile.lock +68 -0
  3. data/{HISTORY → History.txt} +6 -1
  4. data/Rakefile +24 -31
  5. data/images/mole_logo.png +0 -0
  6. data/images/mole_logo.psd +0 -0
  7. data/images/mole_logo_small.png +0 -0
  8. data/images/mole_logo_small.psd +0 -0
  9. data/lib/rackamole/utils/agent_detect.rb +8 -5
  10. data/samples/rails/moled/README +243 -0
  11. data/samples/rails/moled/Rakefile +10 -0
  12. data/samples/rails/moled/app/controllers/application_controller.rb +21 -0
  13. data/samples/rails/moled/app/controllers/dash_controller.rb +4 -0
  14. data/samples/rails/moled/app/controllers/fred_controller.rb +18 -0
  15. data/samples/rails/moled/app/helpers/application_helper.rb +3 -0
  16. data/samples/rails/moled/app/views/dash/index.html.erb +5 -0
  17. data/samples/rails/moled/app/views/fred/index.html.erb +3 -0
  18. data/samples/rails/moled/app/views/fred/show.html.erb +1 -0
  19. data/samples/rails/moled/app/views/fred/slow.html.erb +3 -0
  20. data/samples/rails/moled/config/boot.rb +110 -0
  21. data/samples/rails/moled/config/database.yml +22 -0
  22. data/samples/rails/moled/config/environment.rb +55 -0
  23. data/samples/rails/moled/config/environments/development.rb +17 -0
  24. data/samples/rails/moled/config/environments/production.rb +28 -0
  25. data/samples/rails/moled/config/environments/test.rb +28 -0
  26. data/samples/rails/moled/config/initializers/backtrace_silencers.rb +7 -0
  27. data/samples/rails/moled/config/initializers/inflections.rb +10 -0
  28. data/samples/rails/moled/config/initializers/mime_types.rb +5 -0
  29. data/samples/rails/moled/config/initializers/new_rails_defaults.rb +19 -0
  30. data/samples/rails/moled/config/initializers/session_store.rb +15 -0
  31. data/samples/rails/moled/config/locales/en.yml +5 -0
  32. data/samples/rails/moled/config/routes.rb +8 -0
  33. data/samples/rails/moled/db/development.sqlite3 +0 -0
  34. data/samples/rails/moled/db/production.sqlite3 +0 -0
  35. data/samples/rails/moled/doc/README_FOR_APP +2 -0
  36. data/samples/rails/moled/log/development.log +1083 -0
  37. data/samples/rails/moled/log/production.log +46 -0
  38. data/samples/rails/moled/log/server.log +0 -0
  39. data/samples/rails/moled/log/test.log +0 -0
  40. data/samples/rails/moled/public/404.html +30 -0
  41. data/samples/rails/moled/public/422.html +30 -0
  42. data/samples/rails/moled/public/500.html +30 -0
  43. data/samples/rails/moled/public/favicon.ico +0 -0
  44. data/samples/rails/moled/public/images/rails.png +0 -0
  45. data/samples/rails/moled/public/javascripts/application.js +2 -0
  46. data/samples/rails/moled/public/javascripts/controls.js +963 -0
  47. data/samples/rails/moled/public/javascripts/dragdrop.js +973 -0
  48. data/samples/rails/moled/public/javascripts/effects.js +1128 -0
  49. data/samples/rails/moled/public/javascripts/prototype.js +4320 -0
  50. data/samples/rails/moled/public/robots.txt +5 -0
  51. data/samples/rails/moled/script/about +4 -0
  52. data/samples/rails/moled/script/console +3 -0
  53. data/samples/rails/moled/script/dbconsole +3 -0
  54. data/samples/rails/moled/script/destroy +3 -0
  55. data/samples/rails/moled/script/generate +3 -0
  56. data/samples/rails/moled/script/performance/benchmarker +3 -0
  57. data/samples/rails/moled/script/performance/profiler +3 -0
  58. data/samples/rails/moled/script/plugin +3 -0
  59. data/samples/rails/moled/script/runner +3 -0
  60. data/samples/rails/moled/script/server +3 -0
  61. data/samples/rails/moled/test/performance/browsing_test.rb +9 -0
  62. data/samples/rails/moled/test/test_helper.rb +38 -0
  63. data/samples/sinatra/moled.rb +84 -0
  64. data/samples/sinatra/public/.DS_Store +0 -0
  65. data/samples/sinatra/public/images/mole_logo.png +0 -0
  66. data/samples/sinatra/public/stylesheets/styles.css +58 -0
  67. data/samples/sinatra/views/index.erb +14 -0
  68. data/samples/sinatra/views/layout.erb +23 -0
  69. data/samples/sinatra/views/normal.erb +1 -0
  70. data/samples/sinatra/views/params.erb +1 -0
  71. data/samples/sinatra/views/post.erb +1 -0
  72. data/samples/sinatra/views/slow.erb +1 -0
  73. data/spec/rackamole/utils/agent_detect_spec.rb +6 -1
  74. data/{tasks → tasks1}/bones.rake +0 -0
  75. data/{tasks → tasks1}/gem.rake +0 -0
  76. data/{tasks → tasks1}/git.rake +0 -0
  77. data/{tasks → tasks1}/notes.rake +0 -0
  78. data/{tasks → tasks1}/post_load.rake +0 -0
  79. data/{tasks → tasks1}/rdoc.rake +0 -0
  80. data/{tasks → tasks1}/rubyforge.rake +0 -0
  81. data/{tasks → tasks1}/setup.rb +0 -0
  82. data/{tasks → tasks1}/spec.rake +0 -0
  83. data/{tasks → tasks1}/svn.rake +0 -0
  84. data/{tasks → tasks1}/test.rake +0 -0
  85. data/{tasks → tasks1}/zentest.rake +0 -0
  86. data/version.txt +1 -0
  87. metadata +106 -20
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ $LOAD_PATH.unshift "#{RAILTIES_PATH}/builtin/rails_info"
4
+ require 'commands/about'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/console'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/dbconsole'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/destroy'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/profiler'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/runner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/server'
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+ require 'performance_test_help'
3
+
4
+ # Profiling results for each test method are written to tmp/performance.
5
+ class BrowsingTest < ActionController::PerformanceTest
6
+ def test_homepage
7
+ get '/'
8
+ end
9
+ end
@@ -0,0 +1,38 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
3
+ require 'test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Transactional fixtures accelerate your tests by wrapping each test method
7
+ # in a transaction that's rolled back on completion. This ensures that the
8
+ # test database remains unchanged so your fixtures don't have to be reloaded
9
+ # between every test method. Fewer database queries means faster tests.
10
+ #
11
+ # Read Mike Clark's excellent walkthrough at
12
+ # http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
13
+ #
14
+ # Every Active Record database supports transactions except MyISAM tables
15
+ # in MySQL. Turn off transactional fixtures in this case; however, if you
16
+ # don't care one way or the other, switching from MyISAM to InnoDB tables
17
+ # is recommended.
18
+ #
19
+ # The only drawback to using transactional fixtures is when you actually
20
+ # need to test transactions. Since your test is bracketed by a transaction,
21
+ # any transactions started in your code will be automatically rolled back.
22
+ self.use_transactional_fixtures = true
23
+
24
+ # Instantiated fixtures are slow, but give you @david where otherwise you
25
+ # would need people(:david). If you don't want to migrate your existing
26
+ # test cases which use the @david style and don't mind the speed hit (each
27
+ # instantiated fixtures translates to a database query per test method),
28
+ # then set this back to true.
29
+ self.use_instantiated_fixtures = false
30
+
31
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
32
+ #
33
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
34
+ # -- they do not yet inherit this setting
35
+ fixtures :all
36
+
37
+ # Add more helper methods to be used by all tests here...
38
+ end
@@ -0,0 +1,84 @@
1
+ require 'rubygems'
2
+ require 'sinatra'
3
+ require 'rackamole'
4
+ require 'mongo_rack'
5
+
6
+ configure do
7
+ set :sessions, false
8
+
9
+ puts "mole_sinatra_#{Sinatra::Application.environment}_mdb"
10
+
11
+ # use Rack::Lint
12
+ # use Rack::Session::Cookie
13
+ # use Rack::Session::Memcache,
14
+ # :memcache_server => "%s:%d" % ['localhost', 11211],
15
+ # :namespace => 'franky'
16
+
17
+ use Rack::Session::Mongo,
18
+ :server => "%s:%d/%s/%s" % ['localhost', 27017, 'franky_pool', "sessions"]
19
+
20
+ use Rack::Mole, {
21
+ :app_name => "Franky",
22
+ :environment => Sinatra::Application.environment,
23
+ :log_level => :debug,
24
+ :user_key => :user_name,
25
+ # :mole_excludes => [],
26
+ :store => Rackamole::Store::MongoDb.new(
27
+ :host => "swan.mongohq.com",
28
+ :port => 27021,
29
+ :username => 'fernand',
30
+ :password => 'fernand~1',
31
+ :db_name => "mole_franky_#{Sinatra::Application.environment}_mdb" ),
32
+
33
+ # :store => Rackamole::Store::MongoDb.new(
34
+ # :host => 'ec2-174-129-88-130.compute-1.amazonaws.com',
35
+ # :database => "mole_franky_#{Sinatra::Application.environment}_mdb" ),
36
+ # :store => Rackamole::Store::MongoDb.new(
37
+ # :db_name => "mole_franky_#{Sinatra::Application.environment}_mdb" ),
38
+ :expiration => 10,
39
+ :perf_threshold => 0.2,
40
+ :email => {
41
+ :from => "fernand@collectiveintellect.com",
42
+ :to => ['fernand.galiana@gmail.com'],
43
+ :alert_on => [Rackamole.perf, Rackamole.fault] },
44
+
45
+ # :twitter => { :username => 'moled', :password => 'fernand~1', :alert_on => [Rackamole.perf, Rackamole.fault] },
46
+ :excluded_paths => [ /.+?\.css/, /.+?\.js/, /.+?\.png/, /.+?\.ico/ ]
47
+ }
48
+ end
49
+
50
+ before do
51
+ session[:user_name] = "Fernand"
52
+ end
53
+
54
+ get '/' do
55
+ erb :index
56
+ end
57
+
58
+ get '/normal' do
59
+ @blee = "Hello World!"
60
+ session[:normal] = "something normal"
61
+ erb :normal
62
+ end
63
+
64
+ post '/post' do
65
+ @post = params[:blee]
66
+ session[:post] = "something posted"
67
+ erb :post
68
+ end
69
+
70
+ get '/params/:id' do
71
+ @blee = params[:id]
72
+ session[:param] = "something param"
73
+
74
+ erb :params
75
+ end
76
+
77
+ get '/error' do
78
+ raise "Oh Snap!"
79
+ end
80
+
81
+ get '/slow' do
82
+ sleep 0.2
83
+ erb :slow
84
+ end
Binary file
@@ -0,0 +1,58 @@
1
+ * {
2
+ outline-color: invert;
3
+ outline-style: none;
4
+ outline-width: medium;
5
+ margin: 0px;
6
+ padding: 0px;
7
+ }
8
+
9
+ body {
10
+ font-family: "Trebuchet","Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms","verdana";
11
+ background: #f4f4f4 repeat-x top left;
12
+ color: #ffffff;
13
+ font-size: 2em;
14
+ font-size-adjust: none;
15
+ font-stretch: normal;
16
+ font-style: normal;
17
+ font-variant: normal;
18
+ font-weight: normal;
19
+ margin: 0;
20
+ }
21
+
22
+ #overall {
23
+ margin: 0px auto;
24
+ width: 1000px;
25
+ overflow: none;
26
+ margin-top: 30px;
27
+ }
28
+
29
+ #logo {
30
+ float:left;
31
+ width:45%;
32
+ margin-bottom:10px;
33
+ }
34
+
35
+ #main {
36
+ clear: left;
37
+ margin: 20px 10px 10px 20px;
38
+ overflow: none;
39
+ }
40
+
41
+ h1 {
42
+ font-size: 2.2em;
43
+ color: #434343;
44
+ }
45
+
46
+ a {
47
+ color: #cccccc;
48
+ text-decoration: none;
49
+ }
50
+
51
+ a:hover {
52
+ text_decoration: underline;
53
+ }
54
+
55
+ input {
56
+ font-size: 1em;
57
+ color: #cccccc;
58
+ }
@@ -0,0 +1,14 @@
1
+ <h1>Mole sampler</h1>
2
+
3
+ <ul>
4
+ <li><a href="/normal">Plain ol' get</a></li>
5
+ <li><a href="/params/10">Get with params</a></li>
6
+ <li><a href="/error">Uncaught fault</a></li>
7
+ <li><a href="/slow">Slow request</a></li>
8
+ <li>
9
+ <form action="/post" method="post" >
10
+ <input type="text" name="blee"/>
11
+ <input type="submit" value="push me"/>
12
+ </form>
13
+ </li>
14
+ </ul>
@@ -0,0 +1,23 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3
+ <head>
4
+ <title>R A C K A M O L E - Sampler</title>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
+ <link rel="icon" href="/favicon.ico" type="image/x-icon"/>
7
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
8
+ <link rel="stylesheet" href="/stylesheets/styles.css" type="text/css" media="screen" />
9
+ </head>
10
+
11
+ <body id="body">
12
+ <div id="overall">
13
+ <div id="logo">
14
+ <a href="/">
15
+ <img src='/images/mole_logo.png' style="border:none"/>
16
+ </a>
17
+ </div>
18
+ <div id="main">
19
+ <%= yield %>
20
+ </div>
21
+ </div>
22
+ </body>
23
+ </html>
@@ -0,0 +1 @@
1
+ <h1>Normal -- <%=@blee%></h1>
@@ -0,0 +1 @@
1
+ <h1>Params -- <%=@post%></h1>
@@ -0,0 +1 @@
1
+ <h1>Posted - <%=@post%></h1>
@@ -0,0 +1 @@
1
+ <h1>I am the slow one</h1>
@@ -17,7 +17,8 @@ describe Rackamole::Utils::AgentDetect do
17
17
  "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
18
18
  "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; CPT-IE401SP1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
19
19
  "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2)",
20
- "Mozilla/4.0 (compatible; MSIE 5.00; Windows 98)"
20
+ "Mozilla/4.0 (compatible; MSIE 5.00; Windows 98)",
21
+ "Opera/9.80 (Windows NT 6.1; U; es-ES) Presto/2.6.30 Version/10.61"
21
22
  ]
22
23
  expectations = [
23
24
  {
@@ -71,6 +72,10 @@ describe Rackamole::Utils::AgentDetect do
71
72
  {
72
73
  :browser => { :name => "MSIE", :version => "5.00" },
73
74
  :machine => { :platform => "compatible", :os => "Windows", :version => "98", :local => "N/A" }
75
+ },
76
+ {
77
+ :browser => { :name => "Opera", :version => "9.80" },
78
+ :machine => { :platform => "Windows NT 6.1", :os => "N/A", :version => "N/A", :local => "es-ES" }
74
79
  }
75
80
  ]
76
81
  count = 0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/version.txt ADDED
@@ -0,0 +1 @@
1
+ 0.4.0
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 3
8
- - 9
9
- version: 0.3.9
7
+ - 4
8
+ - 0
9
+ version: 0.4.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Fernand Galiana
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-16 00:00:00 -06:00
17
+ date: 2010-08-20 00:00:00 -06:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -166,6 +166,21 @@ dependencies:
166
166
  version: "2.0"
167
167
  type: :runtime
168
168
  version_requirements: *id010
169
+ - !ruby/object:Gem::Dependency
170
+ name: bones
171
+ prerelease: false
172
+ requirement: &id011 !ruby/object:Gem::Requirement
173
+ none: false
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ segments:
178
+ - 3
179
+ - 4
180
+ - 7
181
+ version: 3.4.7
182
+ type: :development
183
+ version_requirements: *id011
169
184
  description: " The MOle is a rack application that monitors user interactions with your web site. We are not \n talking about counting page hits here. The MOle tracks all the information available to capture\n the essence of a user interaction with your application. Using the MOle, you are able to see\n which feature is a hit or a bust. As an added bonus, the MOle also track performance and exceptions \n that might have escaped your test suites or alpha env. To boot your managers will love you for it! \n\n Whether you are releasing a new application or improving on an old one, it is always a good thing \n to know if anyone is using your application and if they are, how they are using it. \n What features are your users most fond of and which features find their way into the abyss? \n You will be able to rapidly assess whether or not your application is a hit and if\n your coolest features are thought as such by your users. You will be able to elegantly record user\n interactions and leverage these findings for the next iteration of your application. "
170
185
  email: fernand.galiana@gmail.com
171
186
  executables: []
@@ -173,13 +188,22 @@ executables: []
173
188
  extensions: []
174
189
 
175
190
  extra_rdoc_files:
191
+ - History.txt
176
192
  - README.rdoc
177
193
  - lib/rackamole/alert/templates/alert.erb
194
+ - samples/rails/moled/public/robots.txt
195
+ - version.txt
178
196
  files:
179
197
  - ...
180
- - HISTORY
198
+ - Gemfile
199
+ - Gemfile.lock
200
+ - History.txt
181
201
  - README.rdoc
182
202
  - Rakefile
203
+ - images/mole_logo.png
204
+ - images/mole_logo.psd
205
+ - images/mole_logo_small.png
206
+ - images/mole_logo_small.psd
183
207
  - lib/rackamole.rb
184
208
  - lib/rackamole/alert/emole.rb
185
209
  - lib/rackamole/alert/growl.rb
@@ -196,6 +220,69 @@ files:
196
220
  - lib/rackamole/store/log.rb
197
221
  - lib/rackamole/store/mongo_db.rb
198
222
  - lib/rackamole/utils/agent_detect.rb
223
+ - samples/rails/moled/README
224
+ - samples/rails/moled/Rakefile
225
+ - samples/rails/moled/app/controllers/application_controller.rb
226
+ - samples/rails/moled/app/controllers/dash_controller.rb
227
+ - samples/rails/moled/app/controllers/fred_controller.rb
228
+ - samples/rails/moled/app/helpers/application_helper.rb
229
+ - samples/rails/moled/app/views/dash/index.html.erb
230
+ - samples/rails/moled/app/views/fred/index.html.erb
231
+ - samples/rails/moled/app/views/fred/show.html.erb
232
+ - samples/rails/moled/app/views/fred/slow.html.erb
233
+ - samples/rails/moled/config/boot.rb
234
+ - samples/rails/moled/config/database.yml
235
+ - samples/rails/moled/config/environment.rb
236
+ - samples/rails/moled/config/environments/development.rb
237
+ - samples/rails/moled/config/environments/production.rb
238
+ - samples/rails/moled/config/environments/test.rb
239
+ - samples/rails/moled/config/initializers/backtrace_silencers.rb
240
+ - samples/rails/moled/config/initializers/inflections.rb
241
+ - samples/rails/moled/config/initializers/mime_types.rb
242
+ - samples/rails/moled/config/initializers/new_rails_defaults.rb
243
+ - samples/rails/moled/config/initializers/session_store.rb
244
+ - samples/rails/moled/config/locales/en.yml
245
+ - samples/rails/moled/config/routes.rb
246
+ - samples/rails/moled/db/development.sqlite3
247
+ - samples/rails/moled/db/production.sqlite3
248
+ - samples/rails/moled/doc/README_FOR_APP
249
+ - samples/rails/moled/log/development.log
250
+ - samples/rails/moled/log/production.log
251
+ - samples/rails/moled/log/server.log
252
+ - samples/rails/moled/log/test.log
253
+ - samples/rails/moled/public/404.html
254
+ - samples/rails/moled/public/422.html
255
+ - samples/rails/moled/public/500.html
256
+ - samples/rails/moled/public/favicon.ico
257
+ - samples/rails/moled/public/images/rails.png
258
+ - samples/rails/moled/public/javascripts/application.js
259
+ - samples/rails/moled/public/javascripts/controls.js
260
+ - samples/rails/moled/public/javascripts/dragdrop.js
261
+ - samples/rails/moled/public/javascripts/effects.js
262
+ - samples/rails/moled/public/javascripts/prototype.js
263
+ - samples/rails/moled/public/robots.txt
264
+ - samples/rails/moled/script/about
265
+ - samples/rails/moled/script/console
266
+ - samples/rails/moled/script/dbconsole
267
+ - samples/rails/moled/script/destroy
268
+ - samples/rails/moled/script/generate
269
+ - samples/rails/moled/script/performance/benchmarker
270
+ - samples/rails/moled/script/performance/profiler
271
+ - samples/rails/moled/script/plugin
272
+ - samples/rails/moled/script/runner
273
+ - samples/rails/moled/script/server
274
+ - samples/rails/moled/test/performance/browsing_test.rb
275
+ - samples/rails/moled/test/test_helper.rb
276
+ - samples/sinatra/moled.rb
277
+ - samples/sinatra/public/.DS_Store
278
+ - samples/sinatra/public/images/mole_logo.png
279
+ - samples/sinatra/public/stylesheets/styles.css
280
+ - samples/sinatra/views/index.erb
281
+ - samples/sinatra/views/layout.erb
282
+ - samples/sinatra/views/normal.erb
283
+ - samples/sinatra/views/params.erb
284
+ - samples/sinatra/views/post.erb
285
+ - samples/sinatra/views/slow.erb
199
286
  - spec/data/create_secure_db.rb
200
287
  - spec/expected_results/mole_exception.log
201
288
  - spec/expected_results/mole_feature.log
@@ -216,18 +303,19 @@ files:
216
303
  - spec/spec_helper.rb
217
304
  - spec/test_configs/flawed_config.yml
218
305
  - spec/test_configs/rackamole_test.yml
219
- - tasks/bones.rake
220
- - tasks/gem.rake
221
- - tasks/git.rake
222
- - tasks/notes.rake
223
- - tasks/post_load.rake
224
- - tasks/rdoc.rake
225
- - tasks/rubyforge.rake
226
- - tasks/setup.rb
227
- - tasks/spec.rake
228
- - tasks/svn.rake
229
- - tasks/test.rake
230
- - tasks/zentest.rake
306
+ - tasks1/bones.rake
307
+ - tasks1/gem.rake
308
+ - tasks1/git.rake
309
+ - tasks1/notes.rake
310
+ - tasks1/post_load.rake
311
+ - tasks1/rdoc.rake
312
+ - tasks1/rubyforge.rake
313
+ - tasks1/setup.rb
314
+ - tasks1/spec.rake
315
+ - tasks1/svn.rake
316
+ - tasks1/test.rake
317
+ - tasks1/zentest.rake
318
+ - version.txt
231
319
  has_rdoc: true
232
320
  homepage: http://www.rackamole.com
233
321
  licenses: []
@@ -256,9 +344,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
256
344
  version: "0"
257
345
  requirements: []
258
346
 
259
- rubyforge_project: !binary |
260
- AA==
261
-
347
+ rubyforge_project: rackamole
262
348
  rubygems_version: 1.3.7
263
349
  signing_key:
264
350
  specification_version: 3