resource_name_validator 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8f1ae8e48c0cef20f014bd12e98f770499d00e0f
4
+ data.tar.gz: 205446e12b79c9fe7b5ab32b9e93776169b15526
5
+ SHA512:
6
+ metadata.gz: f1ec07ada7ad81db65c4541cfa85667c675dfb816b8d2e33c620ae539a4b8dbd6c0953c79df51b0bbbcc85c2b0ca2d6954003b662952b404cc356b58f9d5073b
7
+ data.tar.gz: edbd33b5d51d10eed8259453a9d6e2ce9cea6c97a32c9b210a60f8c1b82311a1db35e6eab4f6c7b127c3fd90008155449884ca749c4a10cfca6bf6667cd01dfd
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
4
+ - ruby-head
5
+ before_install: gem install bundler -v 1.11.2
6
+ script: bundle exec rake spec
7
+ notifications:
8
+ slack:
9
+ secure: oi2znBMDFGCtwQ3UlNmq7azSWq6Cn+u/bAe85hQ9JVC+Npku7JU2R+WZsLggEtJBwev2o1tRnInTLYcVQdRfwt9OQVdtH0FmO1SUt68YUJVh/ukFHYLrxJJBPXK2bIhvMPVJsmzpVp9DOIIXjwXZaxjtOpjKdIKr4MxippqQ+hweJtbERL0VzzPgld2mw5ZAbYjaXKhcpJjTzAtYUoPPiurBqMeufrXtQWLelDeqrIY2+QCgXxioUc1V3SSmHwvIQU60P98335aG+h/jPcTTaLApYiXZx68Lsdg3XRdgrKJ9S91+Lwqd1ufV3IQw+q+42aZPaNHH5mOCAdWCIzliAVD3WJ6LWg47evlkYMKHVK0eh3gVX3YmygDQPgRd1KUTN0pePEzq8bFKM2ogkaI3h4swXnDEt36MdWU1BQFFYn8CVwYYdtUha73f0icL1A+8ONEO/WxaMgGIWixIZJ2ENdpKJsy5Jq5c1UvO2tlT+O2imCXwgD4BCKZE1FTiv3W//WSk9/3xgBWr8FfqZ1fPtMpwp0z5A9qX7YaJK1J/SR7mndg8XmV0hEvXFiJSEnf0tbRhyXUb5CZ++VvhsE3BBL4mzdJa+wsR3FepYOg4BL4KLRjf+A+EJ69Cpo77oMv7ZVFc5394RZMKyiHxJEoESc8jRj9ahxl40t0qJ32vyNI=
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in resource_name_validator.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Yuta Kurotaki
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # ResourceNameValidator
2
+ [![Build Status](https://travis-ci.org/kurotaky/resource_name_validator.svg?branch=master)](https://travis-ci.org/kurotaky/resource_name_validator)
3
+ [![Gem](https://img.shields.io/gem/v/resource_name_validator.svg?style=flat-square)](https://rubygems.org/gems/resource_name_validator)
4
+
5
+ defined resources validator for Rails Application.
6
+ validate name in accordance with current defined resources.
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'resource_name_validator'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install resource_name_validator
23
+
24
+ ## Usage
25
+
26
+ ```ruby
27
+ # app/models/user.rb
28
+ class User < ActiveRecord::Base
29
+ validates :name, resource_name: true
30
+ end
31
+ ```
32
+
33
+ ## Examples
34
+ ```sh
35
+ Rails.application.routes.routes.collect {|r| r.path.spec.to_s }.include? '/admin(.:format)'
36
+ #=> true
37
+
38
+ user = User.new(name: 'admin')
39
+ user.valid? #=> false
40
+ ```
41
+
42
+
43
+ ## Development
44
+
45
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
46
+
47
+ 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).
48
+
49
+ ## Contributing
50
+
51
+ Bug reports and pull requests are welcome on GitHub at https://github.com/kurotaky/resource_name_validator.
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "resource_name_validator"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,28 @@
1
+ require 'active_model/validations'
2
+
3
+ module ActiveModel
4
+ module Validations
5
+ class ResourceNameValidator < ActiveModel::EachValidator
6
+ cattr_accessor :routes
7
+
8
+ def validate_each(record, attribute, value)
9
+ if resource_patterns.include? value
10
+ record.errors.add(attribute, :is_reserved || 'is reserved.')
11
+ end
12
+ end
13
+
14
+ private
15
+
16
+ def resource_patterns
17
+ routes = self.routes || Rails.application.routes.routes.collect {|r| r.path.spec.to_s }
18
+ routes.map {|path| resource_filter(path)}.compact.uniq
19
+ end
20
+
21
+ def resource_filter(path)
22
+ if match = %r{^\/([^\/\(:]+)}.match(path)
23
+ match[1]
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,5 @@
1
+ require 'active_model/validations/resource_name_validator'
2
+ require "resource_name_validator/version"
3
+
4
+ module ResourceNameValidator
5
+ end
@@ -0,0 +1,3 @@
1
+ module ResourceNameValidator
2
+ VERSION = "0.1.0"
3
+ end
data/locales/en.yml ADDED
@@ -0,0 +1,4 @@
1
+ en:
2
+ errors:
3
+ messages:
4
+ is_reserved: 'is unavailable.'
data/locales/ja.yml ADDED
@@ -0,0 +1,4 @@
1
+ ja:
2
+ errors:
3
+ messages:
4
+ is_reserved: 'は利用できません。'
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'resource_name_validator/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "resource_name_validator"
8
+ spec.version = ResourceNameValidator::VERSION
9
+ spec.authors = ["Yuta Kurotaki"]
10
+ spec.email = ["yuta.kurotaki@gmail.com"]
11
+
12
+ spec.summary = %q{defined resources validator for Rails Application.}
13
+ spec.description = %q{validate name in accordance with current defined Rails routes.}
14
+ spec.homepage = "https://github.com/kurotaky/resource_name_validator"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency "activemodel"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.11"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "rspec", "~> 3.0"
26
+ spec.add_development_dependency "rails"
27
+ end
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: resource_name_validator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Yuta Kurotaki
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-03-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activemodel
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.11'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.11'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: validate name in accordance with current defined Rails routes.
84
+ email:
85
+ - yuta.kurotaki@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".travis.yml"
93
+ - Gemfile
94
+ - LICENSE
95
+ - README.md
96
+ - Rakefile
97
+ - bin/console
98
+ - bin/setup
99
+ - lib/active_model/validations/resource_name_validator.rb
100
+ - lib/resource_name_validator.rb
101
+ - lib/resource_name_validator/version.rb
102
+ - locales/en.yml
103
+ - locales/ja.yml
104
+ - resource_name_validator.gemspec
105
+ homepage: https://github.com/kurotaky/resource_name_validator
106
+ licenses: []
107
+ metadata: {}
108
+ post_install_message:
109
+ rdoc_options: []
110
+ require_paths:
111
+ - lib
112
+ required_ruby_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ requirements: []
123
+ rubyforge_project:
124
+ rubygems_version: 2.5.1
125
+ signing_key:
126
+ specification_version: 4
127
+ summary: defined resources validator for Rails Application.
128
+ test_files: []