hangman_game1 0.1.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2cdfac26c098ea5f457307cbfba16c556a44d9d2
4
+ data.tar.gz: d487b7b9ad376b77d52b7484dcc46c6e9628243f
5
+ SHA512:
6
+ metadata.gz: 3d6121f26d6c67ecb9ca326ce448b0f84187d3240c624003f61cecdc892f5f8ed4c15d97572a3076e6258783158e896a4608aa553bba3c66bb92bacb39615fe8
7
+ data.tar.gz: 03e3e5abbfe8230e08df5b64f7f7f62f99efb7d33eab768a04849d1eb39c4ce5e771c8b9293e1dff4cea1982761d300a394fcad2f54977c40e4093aafc9cb7d3
data/.coveralls.yml ADDED
@@ -0,0 +1,4 @@
1
+ service_name: travis-pro
2
+ repo_token: rqxyaLAV9l8Aah2RSWe7zbdYOB8lZESkD
3
+
4
+ repo_token: rqxyaLAV9l8Aah2RSWe7zbdYOB8lZESkD
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+
6
+ /coverage/
7
+
8
+ /doc/
9
+ /pkg/
10
+ /spec/reports/
11
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+
2
+ --format documentation
3
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - "2.2.3"
4
+ before_install: gem install bundler -v 1.10.6
5
+ script: bundle exec rspec spec