Skip to content

Commit

Permalink
[FIX] test cases, [UPDATE] README, Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bagwanpankaj committed Jan 27, 2012
1 parent 1ea986b commit f6ed0b9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ group :development do
gem "rspec", "~> 2.3.0"
gem "bundler", "~> 1.0.0"
gem "rcov", ">= 0"
gem "rack-test", require: "rack/test"
gem "rack-test", :require => "rack/test"
end
3 changes: 2 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,15 @@ For more info write me at me[at]bagwanpankaj.com

## Support

Currently it only supports Ruby version >= 1.9.2
Currently it only supports Ruby version >= 1.8.7. Humongous has been tested on MRI 18, MRI 19 and JRuby.

## TODO's

There are lot of things and area to improve and develop. Since it in pre release now, any bug report, issues and feature request is highly appreciated.

* Error Handling [DONE]
* Authentication module [DONE]
* Sophisticated Querying support [In Progress]
* Better UI (need a real contribution here) [In Progress]
* Better documentation
* Example series
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
# version = Humongous::VERSION

rdoc.rdoc_dir = 'rdoc'
rdoc.title = "humongous #{version}"
rdoc.title = "humongous"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
2 changes: 1 addition & 1 deletion lib/humongous/application.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require './monkey_patch'
# require './monkey_patch'
module Humongous

MonkeyPatch.activate!
Expand Down
2 changes: 1 addition & 1 deletion spec/humongous_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def app

it "should contain expected results" do
@parsed_body["header"].should include("Collection humongous_test.local")
@parsed_body["stats"].should == @collection.stats
@parsed_body["stats"].should == JSON.parse(@collection.stats.to_json)
end
end

Expand Down

0 comments on commit f6ed0b9

Please sign in to comment.