Skip to content

Commit

Permalink
updated links and home page
Browse files Browse the repository at this point in the history
  • Loading branch information
ohler55 committed Apr 9, 2012
1 parent 0d34554 commit e900e8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A fast JSON parser and Object marshaller as a Ruby gem.


## <a name="links">Links of Interest</a> ## <a name="links">Links of Interest</a>


[Need for Speed](http://www.ohler.com/software/thoughts/Blog/Entries/2012/3/13_Need_for_Speed.html) for an overview of how Oj::Doc was designed. [Need for Speed](http://www.ohler.com/dev/need_for_speed/need_for_speed.html) for an overview of how Oj::Doc was designed.


*Fast XML parser and marshaller on RubyGems*: https://rubygems.org/gems/ox *Fast XML parser and marshaller on RubyGems*: https://rubygems.org/gems/ox


Expand Down
2 changes: 1 addition & 1 deletion ext/oj/extconf.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
'RUBY_VERSION_MINOR' => version[1], 'RUBY_VERSION_MINOR' => version[1],
'RUBY_VERSION_MICRO' => version[2], 'RUBY_VERSION_MICRO' => version[2],
'HAS_RB_TIME_TIMESPEC' => ('ruby' == type && '1.9.3' == RUBY_VERSION) ? 1 : 0, 'HAS_RB_TIME_TIMESPEC' => ('ruby' == type && '1.9.3' == RUBY_VERSION) ? 1 : 0,
'HAS_ENCODING_SUPPORT' => ('ruby' == type && '1' == version[0] && '9' == version[1]) ? 1 : 0, 'HAS_ENCODING_SUPPORT' => (('ruby' == type || 'rubinius' == type) && '1' == version[0] && '9' == version[1]) ? 1 : 0,
'HAS_NANO_TIME' => ('ruby' == type && '1' == version[0] && '9' == version[1]) ? 1 : 0, 'HAS_NANO_TIME' => ('ruby' == type && '1' == version[0] && '9' == version[1]) ? 1 : 0,
'HAS_RSTRUCT' => ('ruby' == type || 'ree' == type) ? 1 : 0, 'HAS_RSTRUCT' => ('ruby' == type || 'ree' == type) ? 1 : 0,
'HAS_IVAR_HELPERS' => ('ruby' == type && '1' == version[0] && '9' == version[1]) ? 1 : 0, 'HAS_IVAR_HELPERS' => ('ruby' == type && '1' == version[0] && '9' == version[1]) ? 1 : 0,
Expand Down
2 changes: 1 addition & 1 deletion oj.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.authors = "Peter Ohler" s.authors = "Peter Ohler"
s.date = Date.today.to_s s.date = Date.today.to_s
s.email = "peter@ohler.com" s.email = "peter@ohler.com"
s.homepage = "https://github.com/ohler55/oj" s.homepage = "http://www.ohler.com/oj"
s.summary = "A fast JSON parser and serializer." s.summary = "A fast JSON parser and serializer."
s.description = %{The fastest JSON parser and object serializer. } s.description = %{The fastest JSON parser and object serializer. }


Expand Down

0 comments on commit e900e8e

Please sign in to comment.