punched 0.1.0

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,4 @@
1
+ ---
2
+ SHA512:
3
+ metadata.gz: 3b2e0aab0f2d32db1621234d009fed485e40c79859a8148238d8ac2c2c8354af77e262d8495f8c5292353d9bfd579a9026e61127280a95cfa2b2b2930d8b1c79
4
+ data.tar.gz: ac07f829505f733ca8a09e169c797b8f3c36460c0beb08fdc8574bc40d011c5f5d6983ccdff88b237f23f82dc09d76507c60671f3c4fa21a58a06c4d4a230e9a
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ Gemfile.lock
2
+ punchcard_test_data/
data/.travis.yml ADDED
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0
4
+ - 2.1
5
+ - 2.2
6
+ - 2.3.0
7
+ - ruby-head
8
+ script: bundle exec rspec
9
+ matrix:
10
+ allow_failures:
11
+ - rvm: ruby-head
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gem "rspec"