ripsum 0.1.0 → 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 +4 -4
- data/lib/ripsum/version.rb +1 -1
- data/ripsum.gemspec +3 -2
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1eb2395e9c536af470cc49387ad0a4cab42ea5f6
|
4
|
+
data.tar.gz: 44888d7051a016e9a4e189544818491938e131f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f12b6ee9ec6c85ec9de562c65b56688f7ec6b14f92034a54167cd1c492a82c352ee7e7fbb001a5289eac762195586ada843dc88058f0dcb057ccf282bc9368a1
|
7
|
+
data.tar.gz: f635bdd0cc837a38a902305c63c12daf82cc07b8c65a73d1c0f64302da1c115e1e9263d91ceb4bd8eb871c12f5cb252f4efa7b07f1b1f8bfcf2748abb974deae
|
data/lib/ripsum/version.rb
CHANGED
data/ripsum.gemspec
CHANGED
@@ -9,9 +9,10 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Kyle Shevlin"]
|
10
10
|
spec.email = ["kyle.a.shevlin@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{
|
13
|
-
spec.description = %q{
|
12
|
+
spec.summary = %q{Using a small helper method, insert a random amount of lorem ipsum with each page load. Helps you stress test your design against edge cases and worst case scenarios.}
|
13
|
+
spec.description = %q{ View helper that generates a random amount of lorem ipsum text with each page load.}
|
14
14
|
spec.homepage = "http://www.github.com/kyleshevlin/ripsum"
|
15
|
+
spec.licenses = ['MIT']
|
15
16
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
18
|
spec.bindir = "exe"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ripsum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Shevlin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,9 +38,8 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
-
description:
|
42
|
-
each page load.
|
43
|
-
scenarios
|
41
|
+
description: " View helper that generates a random amount of lorem ipsum text with
|
42
|
+
each page load."
|
44
43
|
email:
|
45
44
|
- kyle.a.shevlin@gmail.com
|
46
45
|
executables: []
|
@@ -60,7 +59,8 @@ files:
|
|
60
59
|
- lib/ripsum/version.rb
|
61
60
|
- ripsum.gemspec
|
62
61
|
homepage: http://www.github.com/kyleshevlin/ripsum
|
63
|
-
licenses:
|
62
|
+
licenses:
|
63
|
+
- MIT
|
64
64
|
metadata: {}
|
65
65
|
post_install_message:
|
66
66
|
rdoc_options: []
|
@@ -81,6 +81,6 @@ rubyforge_project:
|
|
81
81
|
rubygems_version: 2.4.5.1
|
82
82
|
signing_key:
|
83
83
|
specification_version: 4
|
84
|
-
summary:
|
85
|
-
page load.
|
84
|
+
summary: Using a small helper method, insert a random amount of lorem ipsum with each
|
85
|
+
page load. Helps you stress test your design against edge cases and worst case scenarios.
|
86
86
|
test_files: []
|