catwalk 0.0.2 → 0.0.3
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/LICENSE.txt +22 -0
- data/catwalk.gemspec +7 -2
- data/lib/catwalk/version.rb +1 -1
- metadata +6 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 522dd9c47676df6039577bdccc8ae0b8b3ee6f7d
|
4
|
+
data.tar.gz: a94c62c569977056b27e270d8dca847199c7f8a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43ab13d711f5870253e1939e7327235183f645fd698cace8eccd0d541ed087f26dd726a0a04e600f6abe9b14ede3173f4b543c314da5b3cc75b7b71b13b31691
|
7
|
+
data.tar.gz: f4f64a3f76521aea52942ed39be361409fe7687421010f4a3cce5c30605ec8de92e69747af934580d55db3201b47d9b94778f9c0cdd84763bcdf36f41db04337
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Jon Rowe
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/catwalk.gemspec
CHANGED
@@ -8,9 +8,10 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
9
9
|
s.authors = ["Jon Rowe"]
|
10
10
|
s.email = ["hello@jonrowe.co.uk"]
|
11
|
-
s.homepage = "http://github.com/
|
11
|
+
s.homepage = "http://github.com/JonRowe/catwalk"
|
12
12
|
s.summary = %q{Catwalk is a gem for showing off models. It allows you to seperate presentation logic from data models.}
|
13
13
|
s.description = %q{Catwalk is a gem for showing off models. It allows you to seperate presentation logic from data models.}
|
14
|
+
s.license = "MIT"
|
14
15
|
|
15
16
|
s.files = `git ls-files`.split("\n")
|
16
17
|
s.test_files = `git ls-files -- {spec,features}/* .autotest`.split("\n")
|
@@ -22,5 +23,9 @@ Gem::Specification.new do |s|
|
|
22
23
|
s.add_development_dependency 'cucumber'
|
23
24
|
s.add_development_dependency 'autotest-standalone'
|
24
25
|
|
25
|
-
|
26
|
+
if RUBY_VERSION.to_f == 1.8 || RUBY_VERSION == '1.9.2'
|
27
|
+
s.add_development_dependency 'activemodel', '~> 3.2'
|
28
|
+
else
|
29
|
+
s.add_development_dependency 'activemodel'
|
30
|
+
end
|
26
31
|
end
|
data/lib/catwalk/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: catwalk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jon Rowe
|
@@ -29,7 +29,7 @@ cert_chain:
|
|
29
29
|
2feWfO4gCNmvfFjULOAYHq9JHEjN5SLSXvj5HdSnDcCyIfJKn5Ya3JahWQaWIsXf
|
30
30
|
/NPE/mB57TOwj+d7XUa2NC4HUadF8R51IYEcIB0PpIEzJlKtfXFcOZxO
|
31
31
|
-----END CERTIFICATE-----
|
32
|
-
date: 2013-07-
|
32
|
+
date: 2013-07-17 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: rake
|
@@ -114,6 +114,7 @@ files:
|
|
114
114
|
- .rspec
|
115
115
|
- .travis.yml
|
116
116
|
- Gemfile
|
117
|
+
- LICENSE.txt
|
117
118
|
- README.md
|
118
119
|
- Rakefile
|
119
120
|
- catwalk.gemspec
|
@@ -135,8 +136,9 @@ files:
|
|
135
136
|
- spec/spec_helper.rb
|
136
137
|
- spec/support/active_model_lint.rb
|
137
138
|
- spec/support/active_model_proxy_shared_examples.rb
|
138
|
-
homepage: http://github.com/
|
139
|
-
licenses:
|
139
|
+
homepage: http://github.com/JonRowe/catwalk
|
140
|
+
licenses:
|
141
|
+
- MIT
|
140
142
|
metadata: {}
|
141
143
|
post_install_message:
|
142
144
|
rdoc_options: []
|
metadata.gz.sig
CHANGED
Binary file
|