Browse Source

Makefileやrebar.configなどを少し整理

Takeru Ohta 11 years ago
parent
commit
8cfca951e7
6 changed files with 7 additions and 8 deletions
  1. 1 1
      COPYING
  2. 1 1
      Makefile
  3. 2 1
      rebar.config
  4. 1 1
      src/jsone.erl
  5. 1 3
      src/jsone_decode.erl
  6. 1 1
      src/jsone_encode.erl

+ 1 - 1
COPYING

@@ -1,6 +1,6 @@
 The MIT License
 
-Copyright (c) 2013 Takeru Ohta <phjgt308@gmail.com>
+Copyright (c) 2013-2014 Takeru Ohta <phjgt308@gmail.com>
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
Makefile

@@ -5,7 +5,7 @@ DIALYZER_OPTS=-Werror_handling -Wrace_conditions -Wunmatched_returns
 
 DEPENDED_APPS=
 
-all: compile xref eunit edoc dialyze
+all: compile xref eunit dialyze
 
 init:
 	@./rebar get-deps compile 

+ 2 - 1
rebar.config

@@ -2,7 +2,8 @@
 {erl_opts, [
             warnings_as_errors,
             warn_export_all,
-            warn_untyped_record
+            warn_untyped_record,
+            inline
            ]}. 
 
 {xref_checks, [

+ 1 - 1
src/jsone.erl

@@ -1,7 +1,7 @@
 %%% @doc JSON decoding/encoding module
 %%% @end
 %%%
-%%% Copyright (c) 2013, Takeru Ohta <phjgt308@gmail.com>
+%%% Copyright (c) 2013-2014, Takeru Ohta <phjgt308@gmail.com>
 %%%
 %%% The MIT License
 %%%

+ 1 - 3
src/jsone_decode.erl

@@ -2,7 +2,7 @@
 %%% @private
 %%% @end
 %%%
-%%% Copyright (c) 2013, Takeru Ohta <phjgt308@gmail.com>
+%%% Copyright (c) 2013-2014, Takeru Ohta <phjgt308@gmail.com>
 %%%
 %%% The MIT License
 %%%
@@ -27,8 +27,6 @@
 %%%---------------------------------------------------------------------------------------
 -module(jsone_decode).
 
--compile(inline).
-
 %%--------------------------------------------------------------------------------
 %% Exported API
 %%--------------------------------------------------------------------------------

+ 1 - 1
src/jsone_encode.erl

@@ -2,7 +2,7 @@
 %%% @private
 %%% @end
 %%%
-%%% Copyright (c) 2013, Takeru Ohta <phjgt308@gmail.com>
+%%% Copyright (c) 2013-2014, Takeru Ohta <phjgt308@gmail.com>
 %%%
 %%% The MIT License
 %%%