item_list 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.idea/item_list.iml +26 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/workspace.xml +796 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/item_list.gemspec +29 -0
- data/lib/item_list/version.rb +3 -0
- data/lib/item_list.rb +6 -0
- data/lib/item_list_printer.rb +15 -0
- data/lib/item_printer.rb +15 -0
- data/lib/list.rb +47 -0
- metadata +134 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 438e2853650eeb72e42c08abe83346368e4ff33d
|
4
|
+
data.tar.gz: 1575e3bb987a0b9848a92314ac2dcdd9925ac92e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ca6908a7f2855a3d442525e7b00a03ca7b0480ea1e597053e7ef227e599d2fb387c0334814740d8f06561f9226c4d4153f0d11748da638951887172c605f96bb
|
7
|
+
data.tar.gz: 52f371844f4e4667834eaaa51b04489305639563b9188d5bf3d4282abc1a996127f7dad61e5e64a2549182a7a97dc1789d2d1b2823147829d04f02d024cc92f5
|
data/.gitignore
ADDED
data/.idea/item_list.iml
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
4
|
+
<shared />
|
5
|
+
</component>
|
6
|
+
<component name="NewModuleRootManager">
|
7
|
+
<content url="file://$MODULE_DIR$" />
|
8
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-2.4.0" jdkType="RUBY_SDK" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="ansi (v1.5.0, RVM: ruby-2.4.0) [gem]" level="application" />
|
11
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.15.4, RVM: ruby-2.4.0) [gem]" level="application" />
|
12
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.4.0) [gem]" level="application" />
|
13
|
+
<orderEntry type="library" scope="PROVIDED" name="docile (v1.1.5, RVM: ruby-2.4.0) [gem]" level="application" />
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="hirb (v0.7.3, RVM: ruby-2.4.0) [gem]" level="application" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v2.1.0, RVM: ruby-2.4.0) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.4.0) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.6.0, RVM: ruby-2.4.0) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.6.0, RVM: ruby-2.4.0) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.6.0, RVM: ruby-2.4.0) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.6.0, RVM: ruby-2.4.0) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.6.0, RVM: ruby-2.4.0) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov (v0.14.1, RVM: ruby-2.4.0) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-console (v0.4.1, RVM: ruby-2.4.0) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.10.0, RVM: ruby-2.4.0) [gem]" level="application" />
|
25
|
+
</component>
|
26
|
+
</module>
|
data/.idea/misc.xml
ADDED
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$/.idea/item_list.iml" filepath="$PROJECT_DIR$/.idea/item_list.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|