rails_pattern_view 0.2.1 → 0.2.2
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 +5 -4
- data/lib/rails_pattern_view/version.rb +1 -1
- data/rails_pattern_view.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c312462e65fb4c4e41a6d68be3a5a680f6fabf1f
|
4
|
+
data.tar.gz: ddfadf88e777b027f30d5b34c6138ffe5b3412d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0ee1658ac9dde2b43473a3fd44e942b4eb5330ea98dac339cfb9230c9b66ba3f3618c075ec98e7e25e2927742c873f1e2eaedd42195a00d1da4d8f5c9f79c05
|
7
|
+
data.tar.gz: f58456d6975fd8fb4267ab6fd706ad2a4697b495d477a1435712d6b4a30f6857b53d116a9fc2eda6aecfa485427f2aed4dadaab3eafa1d4f839e83bc422865d4
|
data/README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
|
+
[](https://badge.fury.io/rb/rails_pattern_view)
|
2
|
+
|
1
3
|
# RailsPatternView
|
2
4
|
|
3
5
|
Ever annoyed with having to copy/paste the Rails views around for very common pages, this gem will solve it
|
6
|
+
Creaet your view folder (pattern) once and instruct your controller to use that pattern
|
4
7
|
|
5
8
|
## Installation
|
6
9
|
|
@@ -66,13 +69,11 @@ all "create/update/destroy" actions will now render "views/shared/patterns/ajax_
|
|
66
69
|
|
67
70
|
## Development
|
68
71
|
|
69
|
-
|
70
|
-
|
71
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
72
|
+
Run specs with `rspec spec`
|
72
73
|
|
73
74
|
## Contributing
|
74
75
|
|
75
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
76
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/nqtien310/rails_pattern_view. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
76
77
|
|
77
78
|
|
78
79
|
## License
|
data/rails_pattern_view.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{Pattern for Rails actions}
|
13
13
|
spec.description = %q{provide a way to DRY shared/common Rails views}
|
14
|
-
spec.homepage = "https://github.com/nqtien310"
|
14
|
+
spec.homepage = "https://github.com/nqtien310/rails_pattern_view"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_pattern_view
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tien Nguyen
|
@@ -106,7 +106,7 @@ files:
|
|
106
106
|
- lib/rails_pattern_view.rb
|
107
107
|
- lib/rails_pattern_view/version.rb
|
108
108
|
- rails_pattern_view.gemspec
|
109
|
-
homepage: https://github.com/nqtien310
|
109
|
+
homepage: https://github.com/nqtien310/rails_pattern_view
|
110
110
|
licenses:
|
111
111
|
- MIT
|
112
112
|
metadata:
|