template_params-rails 0.2.2 → 0.3.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 +4 -4
- data/README.md +3 -1
- data/lib/template_params/rails/version.rb +1 -1
- data/template_params-rails.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 998b2cd1c5cee87b47dd47c110198cf37eb5f6e5
|
4
|
+
data.tar.gz: e8e4f2ec320d42254bc7f3fb65351695e0d5126e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e205f26eff9800cdc4b6e816b7825062be974269a8874a07fed2cdff636f3ca2a8e43fb73fbbc9c755859d0872a9343567bb45dcda7b8cce290a499729949f86
|
7
|
+
data.tar.gz: 52d6844ef3d61ca4c0515b33619bcd3bdc679131c049827a0e3f1c276666c09de101d81669c533c5a799ddb7ca04680fb77889ce5ea4873feca5b92f3feb9204
|
data/README.md
CHANGED
@@ -4,6 +4,7 @@ and local variables. Think of this as the method signature of a template.
|
|
4
4
|
There should be at least one of these assertions in almost every template.
|
5
5
|
|
6
6
|
template_params-rails project integrates [template_params](https://github.com/jaredbeck/template_params) for rails.
|
7
|
+
|
7
8
|
## Installation
|
8
9
|
|
9
10
|
Add this line to your application's Gemfile:
|
@@ -45,7 +46,8 @@ template_param(::Course, allow_nil: true) { @course }
|
|
45
46
|
```
|
46
47
|
## Contributing
|
47
48
|
|
48
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/opodartho/template_params-rails.
|
49
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/opodartho/template_params-rails.
|
50
|
+
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
49
51
|
|
50
52
|
|
51
53
|
## License
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
21
|
spec.add_runtime_dependency "template_params", "~> 0.1.0"
|
22
|
-
spec.add_runtime_dependency "railties", ">=4.1.0", "< 5.
|
22
|
+
spec.add_runtime_dependency "railties", ">=4.1.0", "< 5.2"
|
23
23
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.12"
|
25
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: template_params-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zahidul Haque
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: template_params
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: 4.1.0
|
34
34
|
- - "<"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: '5.
|
36
|
+
version: '5.2'
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: 4.1.0
|
44
44
|
- - "<"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '5.
|
46
|
+
version: '5.2'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: bundler
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
126
|
version: '0'
|
127
127
|
requirements: []
|
128
128
|
rubyforge_project:
|
129
|
-
rubygems_version: 2.6.
|
129
|
+
rubygems_version: 2.6.12
|
130
130
|
signing_key:
|
131
131
|
specification_version: 4
|
132
132
|
summary: Integrate template_params with rails
|