mortadella 0.2.0 → 0.2.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 +4 -4
- data/.rubocop.yml +10 -0
- data/Gemfile.lock +1 -1
- data/features/support/env.rb +1 -2
- data/lib/mortadella.rb +8 -0
- data/mortadella.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae0012a5242c88790aea017c81474f2fce788eb0
|
|
4
|
+
data.tar.gz: 33ffd2a65deb404f4302e600a38c0dfbcbd6f352
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8517edb5e36f6b6c417f0f579b81502421366b0f9c6211e258200540911a0c0d250453e8298b2d6df4e89a2bf93b0d91ab3eead42f6ad19ba68ed18f7c2b171d
|
|
7
|
+
data.tar.gz: a8005063a0951e3c1b8d5fdd0a82673763697b48e51bf61dbfdf67e36f83ca096e369d56fcc35a6525271f544976f4c7ba77a96a63c4f630765270c58497e60e
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
data/features/support/env.rb
CHANGED
data/lib/mortadella.rb
ADDED
data/mortadella.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'mortadella'
|
|
7
|
-
s.version = '0.2.
|
|
7
|
+
s.version = '0.2.1'
|
|
8
8
|
s.authors = ['Kevin Goslar']
|
|
9
9
|
s.email = ['kevin.goslar@gmail.com']
|
|
10
10
|
s.summary = %s(Mock Ruby Table Delivery)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mortadella
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Goslar
|
|
@@ -102,6 +102,7 @@ files:
|
|
|
102
102
|
- features/step_definitions/steps.rb
|
|
103
103
|
- features/support/env.rb
|
|
104
104
|
- features/vertical_tables/basic_usage.feature
|
|
105
|
+
- lib/mortadella.rb
|
|
105
106
|
- lib/mortadella/horizontal.rb
|
|
106
107
|
- lib/mortadella/vertical.rb
|
|
107
108
|
- mortadella.gemspec
|