standard_exceptions 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.idea/.name +1 -0
- data/.idea/compiler.xml +23 -0
- data/.idea/copyright/profiles_settings.xml +3 -0
- data/.idea/encodings.xml +6 -0
- data/.idea/misc.xml +39 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +1285 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +32 -0
- data/Rakefile +1 -0
- data/lib/standard_exceptions/application.rb +16 -0
- data/lib/standard_exceptions/application_methods.rb +15 -0
- data/lib/standard_exceptions/http.rb +55 -0
- data/lib/standard_exceptions/http_methods.rb +26 -0
- data/lib/standard_exceptions/version.rb +3 -0
- data/lib/standard_exceptions.rb +45 -0
- data/standard_exceptions.gemspec +24 -0
- data/standard_exceptions.iml +23 -0
- metadata +100 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5f0eb2a9f5740b0f942be66cba34e1be7648e75d
|
4
|
+
data.tar.gz: 7d9cdabd15673bca3f1f0284fab0dbf51f8a81a4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ae4511fff4afb3f5266d595ed3663ad3fcd68da4e0fdc2832dacbb92dc977abd788a2efada3411b3a0e229f56177db0732a379449738d1b61e56fe2f6cc0bd8b
|
7
|
+
data.tar.gz: 79956d11a1314a115d6165c07219f64c3243b9b18b920045065906891f5753bab89f318a3c4ce1fd7cd0b4a349435fb3aad5828c8e22db639aec565b54946ed0
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
standard_exceptions
|
data/.idea/compiler.xml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="CompilerConfiguration">
|
4
|
+
<option name="DEFAULT_COMPILER" value="Javac" />
|
5
|
+
<resourceExtensions />
|
6
|
+
<wildcardResourcePatterns>
|
7
|
+
<entry name="!?*.java" />
|
8
|
+
<entry name="!?*.form" />
|
9
|
+
<entry name="!?*.class" />
|
10
|
+
<entry name="!?*.groovy" />
|
11
|
+
<entry name="!?*.scala" />
|
12
|
+
<entry name="!?*.flex" />
|
13
|
+
<entry name="!?*.kt" />
|
14
|
+
<entry name="!?*.clj" />
|
15
|
+
<entry name="!?*.aj" />
|
16
|
+
</wildcardResourcePatterns>
|
17
|
+
<annotationProcessing>
|
18
|
+
<profile default="true" name="Default" enabled="false">
|
19
|
+
<processorPath useClasspath="true" />
|
20
|
+
</profile>
|
21
|
+
</annotationProcessing>
|
22
|
+
</component>
|
23
|
+
</project>
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="MavenImportPreferences">
|
4
|
+
<option name="generalSettings">
|
5
|
+
<MavenGeneralSettings>
|
6
|
+
<option name="mavenHome" value="Bundled (Maven 3)" />
|
7
|
+
</MavenGeneralSettings>
|
8
|
+
</option>
|
9
|
+
</component>
|
10
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
11
|
+
<OptionsSetting value="true" id="Add" />
|
12
|
+
<OptionsSetting value="true" id="Remove" />
|
13
|
+
<OptionsSetting value="true" id="Checkout" />
|
14
|
+
<OptionsSetting value="true" id="Update" />
|
15
|
+
<OptionsSetting value="true" id="Status" />
|
16
|
+
<OptionsSetting value="true" id="Edit" />
|
17
|
+
<ConfirmationsSetting value="0" id="Add" />
|
18
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
19
|
+
</component>
|
20
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true" project-jdk-name="RVM: ruby-2.2.5" project-jdk-type="RUBY_SDK">
|
21
|
+
<output url="file://$PROJECT_DIR$/out" />
|
22
|
+
</component>
|
23
|
+
<component name="masterDetails">
|
24
|
+
<states>
|
25
|
+
<state key="ProjectJDKs.UI">
|
26
|
+
<settings>
|
27
|
+
<last-edited>1.7</last-edited>
|
28
|
+
<splitter-proportions>
|
29
|
+
<option name="proportions">
|
30
|
+
<list>
|
31
|
+
<option value="0.42" />
|
32
|
+
</list>
|
33
|
+
</option>
|
34
|
+
</splitter-proportions>
|
35
|
+
</settings>
|
36
|
+
</state>
|
37
|
+
</states>
|
38
|
+
</component>
|
39
|
+
</project>
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/standard_exceptions.iml" filepath="$PROJECT_DIR$/standard_exceptions.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|