Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removed gemspec task from default task on Rakefileremove-generate-task-for-gemspec | Hiroshi SHIBATA | 2020-06-30 | 1 | -1/+1 |
| | |||||
* | Removed task for json_pure.gemspec | Hiroshi SHIBATA | 2020-06-30 | 1 | -44/+0 |
| | |||||
* | ext/json/parser/prereq.mk: remove type-limit warning if char is unsigned | Yusuke Endoh | 2020-06-25 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | Ragel generates a code `0 <= (*p)` where `*p` is char. As char is unsigned by default on arm and RISC-V, it is warned by gcc: ``` compiling parser.c parser.c: In function ‘JSON_parse_string’: parser.c:1566:2: warning: comparison is always true due to limited range of data type [-Wtype-limits] if ( 0 <= (*p) && (*p) <= 31 ) ^ parser.c:1596:2: warning: comparison is always true due to limited range of data type [-Wtype-limits] if ( 0 <= (*p) && (*p) <= 31 ) ^ ``` This change removes the warning by substituting the condition with `0 <= (signed char)(*p)`. ruby/ruby@8bd27c547c3260ce72dc5edbab248bb858c84cf2 | ||||
* | ext/json/parser/prereq.mk: Add a "automatically generated" header | Yusuke Endoh | 2020-06-25 | 1 | -0/+1 |
| | | | | | | | to parser.c. ruby/ruby@5717e55e9a7790c938afa694a9bf558c0e54bb83 ruby/ruby@70e3fda2eb45c841e5fb4574273d20f8df5455e5 | ||||
* | Merge pull request #415 from marcandre/cleanup | Hiroshi SHIBATA | 2020-06-25 | 1 | -3/+6 |
|\ | | | | | Cleanup gemspec | ||||
| * | Fix rake task description | Marc-Andre Lafortune | 2020-06-25 | 1 | -1/+1 |
| | | |||||
| * | Accept test-unit v3.x too | Marc-Andre Lafortune | 2020-06-25 | 1 | -1/+1 |
| | | |||||
| * | Add comment that gemspec is generated automatically | Marc-Andre Lafortune | 2020-06-25 | 1 | -1/+4 |
| | | |||||
* | | Merge pull request #371 from kares/jruby-baseline | Hiroshi SHIBATA | 2020-06-25 | 1 | -6/+5 |
|\ \ | |/ |/| | baseline changes to help (JRuby) development | ||||
| * | [build] make test_xxx work standalone + avoid bundle exec | kares | 2019-01-12 | 1 | -6/+5 |
| | | |||||
| * | [build] let's build with Java 1.6 | kares | 2019-01-12 | 1 | -1/+1 |
| | | | | | | | | JRuby 1.7 was Java6+ compatible (9.2 is Java8+) | ||||
| * | [build] no need to clean on rake test_pure (similar to test_ext) | kares | 2019-01-12 | 1 | -1/+1 |
| | | |||||
* | | Removed gemspec_ext from gemspec task because it always add control char to ↵ | Hiroshi SHIBATA | 2019-12-29 | 1 | -40/+1 |
| | | | | | | | | gemspec. | ||||
* | | keyword argument is provided after Ruby 2.0+ | Hiroshi SHIBATA | 2019-12-23 | 1 | -1/+1 |
| | | |||||
* | | relax test-unit version for old ruby | Hiroshi SHIBATA | 2019-11-29 | 1 | -2/+2 |
| | | |||||
* | | Bump to test-unit 3 to get warnings cleaned up. | Ryan Davis | 2019-11-27 | 1 | -2/+2 |
| | | | | | | | | | | | | Immaculate test output! Signed-off-by: Ryan Davis <zenspider@chef.io> | ||||
* | | Use which to resolve to actual path | Florian Frank | 2019-02-21 | 1 | -4/+9 |
| | | |||||
* | | Upgrade version to 1.6 | Florian Frank | 2019-02-21 | 1 | -1/+1 |
|/ | |||||
* | Back-out change of directory of json-java.gemspec. | Xuân Baldauf | 2017-03-27 | 1 | -1/+1 |
| | |||||
* | Support some older internal Ruby API (<2.0) | Florian Frank | 2017-01-12 | 1 | -2/+2 |
| | |||||
* | Merge decimal_class patch by Michael Jaschob | Florian Frank | 2016-09-23 | 1 | -3/+3 |
| | | | | | | Also: - Avoid some issues with bundler - Avoid some issues with jruby | ||||
* | Simplify JAVA_HOME code | Florian Frank | 2016-09-23 | 1 | -7/+5 |
| | |||||
* | Add required_ruby_version to json_pure spec | Florian Frank | 2016-07-19 | 1 | -0/+1 |
| | |||||
* | And stay there | Florian Frank | 2016-06-22 | 1 | -0/+1 |
| | |||||
* | Add ruby version requirement to gemspec | Florian Frank | 2016-06-21 | 1 | -0/+1 |
| | |||||
* | Use enum | Nobuyoshi Nakada | 2016-06-21 | 1 | -0/+1 |
| | | | | | Use `enum` instead of `static const int` to get rid of unused-const-variable warnings. | ||||
* | Use ~> 2.0 test-unit that runs on 1.8 rubies as well | Florian Frank | 2016-06-07 | 1 | -2/+2 |
| | |||||
* | Move dependencies into gemspec files | Florian Frank | 2016-06-07 | 1 | -2/+2 |
| | |||||
* | Use ~> 2.0 test-unit that runs on 1.8 rubies as well | Florian Frank | 2016-02-25 | 1 | -0/+3 |
| | |||||
* | Merge branch 'v1.8' | Florian Frank | 2016-02-25 | 1 | -11/+7 |
|\ | |||||
| * | Remove permutation dependency | Florian Frank | 2016-02-25 | 1 | -2/+0 |
| | | |||||
| * | Convert README to markdown | Florian Frank | 2015-11-06 | 1 | -4/+4 |
| | | |||||
| * | Remove sdoc and upgrade dependencies | Florian Frank | 2015-09-11 | 1 | -14/+3 |
| | | |||||
* | | Ext parser is green now as well | Florian Frank | 2015-06-15 | 1 | -15/+8 |
| | | |||||
* | | Remove dependency on permutation | Florian Frank | 2015-06-13 | 1 | -5/+7 |
| | | | | | | | | Ruby can do this by now on her own. | ||||
* | | Move common setup into test_helper.rb | Florian Frank | 2015-06-13 | 1 | -3/+3 |
|/ | |||||
* | Add license information to gemspec task | Florian Frank | 2013-02-04 | 1 | -4/+4 |
| | |||||
* | Test on ruby-1.8.6 | Florian Frank | 2012-08-17 | 1 | -4/+8 |
| | |||||
* | Add another potential JAVA_HOME directory | Florian Frank | 2012-07-26 | 1 | -1/+8 |
| | |||||
* | Add task to create tags file | Florian Frank | 2012-05-10 | 1 | -0/+5 |
| | |||||
* | Stop adding 'ext' paths to LOAD_PATHluislavena-stop-polluting-load-path | Luis Lavena | 2012-05-06 | 1 | -3/+1 |
| | | | | | | | RubyGems will automatically copy the generated extension inside to 'lib' when doing `make install` This change let RubyGems do it's job and it works. | ||||
* | Clean up code a bit | Florian Frank | 2012-02-11 | 1 | -58/+48 |
| | | | | This should fix #117 | ||||
* | Use git ls-files to determine package files | Florian Frank | 2011-11-23 | 1 | -2/+1 |
| | |||||
* | Fix Rakefile to build JRuby bits using -target 1.5, for Java 1.5 and higher. | Charles Oliver Nutter | 2011-09-14 | 1 | -1/+1 |
| | |||||
* | Extract utils out of this library into json-utilsv1.6.0 | Florian Frank | 2011-09-13 | 1 | -7/+0 |
| | |||||
* | Add some documentationv1.5.4 | Florian Frank | 2011-08-31 | 1 | -2/+6 |
| | |||||
* | Try to include RbConfig if it exists | Florian Frank | 2011-08-25 | 1 | -2/+7 |
| | |||||
* | remove trailing spaces. | Nobuyoshi Nakada | 2011-07-08 | 1 | -0/+2 |
| | | | | * Rakefile (EXT_PARSER_SRC): remove trailing spaces. | ||||
* | Appy patch by Laurent Arnoud <laurent@spkdev.net> | Florian Frank | 2011-07-04 | 1 | -0/+1 |
| | | | | Use Spruz::GO.go for options parsing | ||||
* | Add rake as development dependency | Florian Frank | 2011-07-04 | 1 | -0/+1 |
| |