rackamole 0.3.0 → 0.3.1
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/HISTORY +7 -1
- data/lib/rackamole/store/mongo_db.rb +2 -2
- data/lib/rackamole.rb +1 -1
- data/spec/rackamole/mole_spec.rb +3 -1
- data/spec/spec_helper.rb +2 -2
- metadata +2 -2
data/HISTORY
CHANGED
@@ -180,11 +180,11 @@ module Rackamole
|
|
180
180
|
|
181
181
|
# For storage reason minify the json to save space...
|
182
182
|
def min_field( field )
|
183
|
-
field_map[field] || field
|
183
|
+
Rackamole::Store::MongoDb.field_map[field] || field
|
184
184
|
end
|
185
185
|
|
186
186
|
# Normalize all accessors to 3 chars.
|
187
|
-
def field_map
|
187
|
+
def self.field_map
|
188
188
|
@field_map ||= {
|
189
189
|
:env => :env,
|
190
190
|
:app_name => :app,
|
data/lib/rackamole.rb
CHANGED
data/spec/rackamole/mole_spec.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
require File.join(File.dirname(__FILE__), %w[.. spec_helper])
|
2
|
-
require 'action_controller'
|
2
|
+
# require 'action_controller'
|
3
3
|
|
4
4
|
describe Rack::Mole do
|
5
5
|
include Rack::Test::Methods
|
@@ -273,6 +273,7 @@ describe Rack::Mole do
|
|
273
273
|
|
274
274
|
describe "rails env" do
|
275
275
|
it "should find route info correctly" do
|
276
|
+
pending do
|
276
277
|
RAILS_ENV = true
|
277
278
|
ActionController::Routing::Routes.stub!( :recognize_path ).and_return( { :controller => 'fred', :action => 'blee' } )
|
278
279
|
rack = Rack::Mole.new( nil, :app_name => "test app" )
|
@@ -282,6 +283,7 @@ describe Rack::Mole do
|
|
282
283
|
res.should_not be_nil
|
283
284
|
res[:controller].should == 'fred'
|
284
285
|
res[:action].should == 'blee'
|
286
|
+
end
|
285
287
|
end
|
286
288
|
|
287
289
|
it "should extract request parameters correctly" do
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rackamole
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fernand Galiana
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-02-
|
12
|
+
date: 2010-02-07 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|