forked from brianmario/yajl-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb801e7
commit 46d0c11
Showing
9 changed files
with
17 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ benchmark/subjects/contacts.* | |
TODO.txt | ||
tmp/* | ||
pkg/* | ||
vendor/gems | ||
vendor/gems | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
source :rubygems | ||
|
||
group :development do | ||
gem 'rake-compiler', '>= 0.7.5' | ||
gem 'jeweler' | ||
gem 'rspec' | ||
end | ||
gemspec |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
# encoding: UTF-8 | ||
require 'bundler' | ||
Bundler.setup | ||
|
||
require 'rake' | ||
|
||
# Load custom tasks | ||
Dir['tasks/*.rake'].sort.each { |f| load f } |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module Yajl | ||
VERSION = "0.7.9" | ||
end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,215 +1,27 @@ | ||
# Generated by jeweler | ||
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | ||
require './lib/yajl/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = %q{yajl-ruby} | ||
s.version = "0.7.9" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.version = Yajl::VERSION | ||
s.authors = ["Brian Lopez", "Lloyd Hilaiel"] | ||
s.date = %q{2011-01-11} | ||
s.date = Time.now.utc.strftime("%Y-%m-%d") | ||
s.email = %q{[email protected]} | ||
s.extensions = ["ext/yajl/extconf.rb"] | ||
s.extra_rdoc_files = [ | ||
"README.rdoc" | ||
] | ||
s.files = [ | ||
".gitignore", | ||
".rspec", | ||
"CHANGELOG.md", | ||
"Gemfile", | ||
"Gemfile.lock", | ||
"MIT-LICENSE", | ||
"README.rdoc", | ||
"Rakefile", | ||
"VERSION.yml", | ||
"benchmark/encode.rb", | ||
"benchmark/encode_json_and_marshal.rb", | ||
"benchmark/encode_json_and_yaml.rb", | ||
"benchmark/http.rb", | ||
"benchmark/parse.rb", | ||
"benchmark/parse_json_and_marshal.rb", | ||
"benchmark/parse_json_and_yaml.rb", | ||
"benchmark/parse_stream.rb", | ||
"benchmark/subjects/item.json", | ||
"benchmark/subjects/ohai.json", | ||
"benchmark/subjects/ohai.marshal_dump", | ||
"benchmark/subjects/ohai.yml", | ||
"benchmark/subjects/twitter_search.json", | ||
"benchmark/subjects/twitter_stream.json", | ||
"benchmark/subjects/unicode.json", | ||
"examples/encoding/chunked_encoding.rb", | ||
"examples/encoding/one_shot.rb", | ||
"examples/encoding/to_an_io.rb", | ||
"examples/http/twitter_search_api.rb", | ||
"examples/http/twitter_stream_api.rb", | ||
"examples/parsing/from_file.rb", | ||
"examples/parsing/from_stdin.rb", | ||
"examples/parsing/from_string.rb", | ||
"ext/yajl/api/yajl_common.h", | ||
"ext/yajl/api/yajl_gen.h", | ||
"ext/yajl/api/yajl_parse.h", | ||
"ext/yajl/api/yajl_version.h", | ||
"ext/yajl/extconf.rb", | ||
"ext/yajl/yajl.c", | ||
"ext/yajl/yajl_alloc.c", | ||
"ext/yajl/yajl_alloc.h", | ||
"ext/yajl/yajl_buf.c", | ||
"ext/yajl/yajl_buf.h", | ||
"ext/yajl/yajl_bytestack.h", | ||
"ext/yajl/yajl_encode.c", | ||
"ext/yajl/yajl_encode.h", | ||
"ext/yajl/yajl_ext.c", | ||
"ext/yajl/yajl_ext.h", | ||
"ext/yajl/yajl_gen.c", | ||
"ext/yajl/yajl_lex.c", | ||
"ext/yajl/yajl_lex.h", | ||
"ext/yajl/yajl_parser.c", | ||
"ext/yajl/yajl_parser.h", | ||
"ext/yajl/yajl_version.c", | ||
"lib/yajl.rb", | ||
"lib/yajl/bzip2.rb", | ||
"lib/yajl/bzip2/stream_reader.rb", | ||
"lib/yajl/bzip2/stream_writer.rb", | ||
"lib/yajl/deflate.rb", | ||
"lib/yajl/deflate/stream_reader.rb", | ||
"lib/yajl/deflate/stream_writer.rb", | ||
"lib/yajl/gzip.rb", | ||
"lib/yajl/gzip/stream_reader.rb", | ||
"lib/yajl/gzip/stream_writer.rb", | ||
"lib/yajl/http_stream.rb", | ||
"lib/yajl/json_gem.rb", | ||
"lib/yajl/json_gem/encoding.rb", | ||
"lib/yajl/json_gem/parsing.rb", | ||
"spec/encoding/encoding_spec.rb", | ||
"spec/global/global_spec.rb", | ||
"spec/http/fixtures/http.bzip2.dump", | ||
"spec/http/fixtures/http.chunked.dump", | ||
"spec/http/fixtures/http.deflate.dump", | ||
"spec/http/fixtures/http.error.dump", | ||
"spec/http/fixtures/http.gzip.dump", | ||
"spec/http/fixtures/http.html.dump", | ||
"spec/http/fixtures/http.raw.dump", | ||
"spec/http/http_delete_spec.rb", | ||
"spec/http/http_error_spec.rb", | ||
"spec/http/http_get_spec.rb", | ||
"spec/http/http_post_spec.rb", | ||
"spec/http/http_put_spec.rb", | ||
"spec/json_gem_compatibility/compatibility_spec.rb", | ||
"spec/parsing/active_support_spec.rb", | ||
"spec/parsing/chunked_spec.rb", | ||
"spec/parsing/fixtures/fail.15.json", | ||
"spec/parsing/fixtures/fail.16.json", | ||
"spec/parsing/fixtures/fail.17.json", | ||
"spec/parsing/fixtures/fail.26.json", | ||
"spec/parsing/fixtures/fail11.json", | ||
"spec/parsing/fixtures/fail12.json", | ||
"spec/parsing/fixtures/fail13.json", | ||
"spec/parsing/fixtures/fail14.json", | ||
"spec/parsing/fixtures/fail19.json", | ||
"spec/parsing/fixtures/fail20.json", | ||
"spec/parsing/fixtures/fail21.json", | ||
"spec/parsing/fixtures/fail22.json", | ||
"spec/parsing/fixtures/fail23.json", | ||
"spec/parsing/fixtures/fail24.json", | ||
"spec/parsing/fixtures/fail25.json", | ||
"spec/parsing/fixtures/fail27.json", | ||
"spec/parsing/fixtures/fail28.json", | ||
"spec/parsing/fixtures/fail3.json", | ||
"spec/parsing/fixtures/fail4.json", | ||
"spec/parsing/fixtures/fail5.json", | ||
"spec/parsing/fixtures/fail6.json", | ||
"spec/parsing/fixtures/fail9.json", | ||
"spec/parsing/fixtures/pass.array.json", | ||
"spec/parsing/fixtures/pass.codepoints_from_unicode_org.json", | ||
"spec/parsing/fixtures/pass.contacts.json", | ||
"spec/parsing/fixtures/pass.db100.xml.json", | ||
"spec/parsing/fixtures/pass.db1000.xml.json", | ||
"spec/parsing/fixtures/pass.dc_simple_with_comments.json", | ||
"spec/parsing/fixtures/pass.deep_arrays.json", | ||
"spec/parsing/fixtures/pass.difficult_json_c_test_case.json", | ||
"spec/parsing/fixtures/pass.difficult_json_c_test_case_with_comments.json", | ||
"spec/parsing/fixtures/pass.doubles.json", | ||
"spec/parsing/fixtures/pass.empty_array.json", | ||
"spec/parsing/fixtures/pass.empty_string.json", | ||
"spec/parsing/fixtures/pass.escaped_bulgarian.json", | ||
"spec/parsing/fixtures/pass.escaped_foobar.json", | ||
"spec/parsing/fixtures/pass.item.json", | ||
"spec/parsing/fixtures/pass.json-org-sample1.json", | ||
"spec/parsing/fixtures/pass.json-org-sample2.json", | ||
"spec/parsing/fixtures/pass.json-org-sample3.json", | ||
"spec/parsing/fixtures/pass.json-org-sample4-nows.json", | ||
"spec/parsing/fixtures/pass.json-org-sample4.json", | ||
"spec/parsing/fixtures/pass.json-org-sample5.json", | ||
"spec/parsing/fixtures/pass.map-spain.xml.json", | ||
"spec/parsing/fixtures/pass.ns-invoice100.xml.json", | ||
"spec/parsing/fixtures/pass.ns-soap.xml.json", | ||
"spec/parsing/fixtures/pass.numbers-fp-4k.json", | ||
"spec/parsing/fixtures/pass.numbers-fp-64k.json", | ||
"spec/parsing/fixtures/pass.numbers-int-4k.json", | ||
"spec/parsing/fixtures/pass.numbers-int-64k.json", | ||
"spec/parsing/fixtures/pass.twitter-search.json", | ||
"spec/parsing/fixtures/pass.twitter-search2.json", | ||
"spec/parsing/fixtures/pass.unicode.json", | ||
"spec/parsing/fixtures/pass.yelp.json", | ||
"spec/parsing/fixtures/pass1.json", | ||
"spec/parsing/fixtures/pass2.json", | ||
"spec/parsing/fixtures/pass3.json", | ||
"spec/parsing/fixtures_spec.rb", | ||
"spec/parsing/one_off_spec.rb", | ||
"spec/rcov.opts", | ||
"spec/spec_helper.rb", | ||
"tasks/compile.rake", | ||
"tasks/jeweler.rake", | ||
"tasks/rspec.rake", | ||
"yajl-ruby.gemspec" | ||
] | ||
s.files = `git ls-files`.split("\n") | ||
s.homepage = %q{http://github.com/brianmario/yajl-ruby} | ||
s.require_paths = ["lib", "ext"] | ||
s.rubygems_version = %q{1.4.2} | ||
s.summary = %q{Ruby C bindings to the excellent Yajl JSON stream-based parser library.} | ||
s.test_files = [ | ||
"examples/encoding/chunked_encoding.rb", | ||
"examples/encoding/one_shot.rb", | ||
"examples/encoding/to_an_io.rb", | ||
"examples/http/twitter_search_api.rb", | ||
"examples/http/twitter_stream_api.rb", | ||
"examples/parsing/from_file.rb", | ||
"examples/parsing/from_stdin.rb", | ||
"examples/parsing/from_string.rb", | ||
"spec/encoding/encoding_spec.rb", | ||
"spec/global/global_spec.rb", | ||
"spec/http/http_delete_spec.rb", | ||
"spec/http/http_error_spec.rb", | ||
"spec/http/http_get_spec.rb", | ||
"spec/http/http_post_spec.rb", | ||
"spec/http/http_put_spec.rb", | ||
"spec/json_gem_compatibility/compatibility_spec.rb", | ||
"spec/parsing/active_support_spec.rb", | ||
"spec/parsing/chunked_spec.rb", | ||
"spec/parsing/fixtures_spec.rb", | ||
"spec/parsing/one_off_spec.rb", | ||
"spec/spec_helper.rb" | ||
] | ||
|
||
if s.respond_to? :specification_version then | ||
s.specification_version = 3 | ||
s.test_files = `git ls-files spec examples`.split("\n") | ||
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_development_dependency(%q<rake-compiler>, [">= 0.7.5"]) | ||
s.add_development_dependency(%q<jeweler>, [">= 0"]) | ||
s.add_development_dependency(%q<rspec>, [">= 0"]) | ||
else | ||
s.add_dependency(%q<rake-compiler>, [">= 0.7.5"]) | ||
s.add_dependency(%q<jeweler>, [">= 0"]) | ||
s.add_dependency(%q<rspec>, [">= 0"]) | ||
end | ||
else | ||
s.add_dependency(%q<rake-compiler>, [">= 0.7.5"]) | ||
s.add_dependency(%q<jeweler>, [">= 0"]) | ||
s.add_dependency(%q<rspec>, [">= 0"]) | ||
end | ||
# tests | ||
s.add_development_dependency 'rake-compiler', ">= 0.7.5" | ||
s.add_development_dependency 'rspec', ">= 2.0.0" | ||
# benchmarks | ||
s.add_development_dependency 'activesupport' | ||
s.add_development_dependency 'json' | ||
end | ||
|