poppy-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: aeb0965a5f6d009488d4984973733776904bac7d
4
+ data.tar.gz: 1486ff47b5bff645776382658d865caf8f13c8c8
5
+ SHA512:
6
+ metadata.gz: c17d3590665a899d65dce98b0daa81dc692e79e24c86240ba8218be8465c93abd9d43562aa38481d3b1b3e32865e7a04d3dc36f81ab44b5e337539e07d52ef8b
7
+ data.tar.gz: 168e49782116215895ab56456660a2f1256c60f71c9f485b061bea6ebf3cd6e267725f9bc316cfc1716fffb2a346675bbbbe767d8893d2178b851685a6bc6aa4
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.swp
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in poppy-rails.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Damien Adermann
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
13
+ all 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
21
+ THE SOFTWARE.
@@ -0,0 +1,119 @@
1
+ # Poppy Rails
2
+
3
+ A simple and flexible enumeration implementation for ActiveRecord.
4
+
5
+
6
+ *This release is very alpha. Use at your own risk but I would appreciate feedback.
7
+
8
+ ## Description
9
+
10
+ Inspired by [enumerate_it](https://github.com/cassiomarques/enumerate_it), Poppy is a simple implementation of enumerations with minimal goodies. Poppy offers a few nice features:
11
+
12
+ - Enumeration values are objects and can respond to methods
13
+ - Works with postreSQL arrays with validations
14
+ - Simple API
15
+
16
+ ## Installation
17
+
18
+ Add this line to your application's Gemfile:
19
+
20
+ ```ruby
21
+ gem 'poppy-rails'
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install poppy-rails
31
+
32
+ **optional**
33
+
34
+ Add an initializer that calls
35
+
36
+ ```ruby
37
+ ActiveRecord::Base.include(Poppy::ActiveRecord)
38
+ ```
39
+
40
+ this can be omitted by manually including the adapter in each model that uses Poppy
41
+
42
+ ```ruby
43
+ class Sandwhich < ActiveRecord::Base
44
+ include Poppy::ActiveRecord
45
+
46
+ enumeration :bread, of: Bread
47
+ #...
48
+ end
49
+ ```
50
+
51
+
52
+ ## Usage
53
+
54
+
55
+ ### Model
56
+ ```ruby
57
+ class Sandwhich < ActiveRecord::Bas
58
+ enumeration :bread, of: Bread
59
+ enumeration :cheeses, as: :array, of: Cheese
60
+ end
61
+ ```
62
+ Adding an enumeration to an active_record model will add an inclusion validation. There is no support for nullable enumerations. This is an intended design decision. If you would like this functionality you will need to add a null value
63
+ E.g. ` Bread::None `
64
+
65
+ If the enumeration is an array then all values in the array must be of that enumeration.
66
+
67
+ ### Migrations
68
+
69
+ Just regular rails migrations
70
+
71
+ ```ruby
72
+ class AddJobKindsToJob < ActiveRecord::Migration
73
+ def change
74
+ add_column :sandwhiches, :bread, :string, default: Bread::WHITE
75
+ add_column :sandwhiches, :cheeses, :string, array: true, default: []
76
+ end
77
+ end
78
+ ```
79
+
80
+ ### In the wild
81
+
82
+ ```ruby
83
+ > sandwhich = Sandwhich.new(bread: Bread::WHITE, cheeses: [Cheese::CHEDDAR])
84
+ > sandwhich.bread
85
+ => Bread::WHITE
86
+
87
+ > sandwhich.cheeses
88
+ => [Cheese::CHEDDAR]
89
+ ```
90
+
91
+
92
+ ## Development
93
+
94
+ 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.
95
+
96
+ 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).
97
+
98
+ Specs depend rely on a postgres database running to test the array support.
99
+
100
+ ```bash
101
+ $ createdb poppy-rails-test
102
+ ```
103
+
104
+ ## Contributing
105
+
106
+ Bug reports and pull requests are welcome on GitHub at https://github.com/damienadermann/poppy-rails. 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.
107
+
108
+
109
+ ## License
110
+
111
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
112
+
113
+
114
+ ##TODO
115
+ - Add AR initializer
116
+ - Add travis.yml
117
+ - Add badges
118
+ - Add docs
119
+
@@ -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
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "poppy/rails"
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
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,69 @@
1
+ require 'active_record'
2
+ require 'active_record/connection_adapters/postgresql/oid/array'
3
+ require 'active_record/connection_adapters/postgresql_adapter'
4
+
5
+ module Poppy
6
+ module ActiveRecord
7
+ PostgreSQLAdapter = ::ActiveRecord::ConnectionAdapters::PostgreSQLAdapter
8
+ PostgreSQLArrayType = ::ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Array
9
+
10
+ COLUMN_TYPES = %i(value array)
11
+ DEFAULT_COLUMN_TYPE = :value
12
+
13
+ class InvalidColumnTypeForAdapterTypeError < StandardError; end
14
+
15
+ include Poppy::Rails::Validators
16
+
17
+ def self.included(base)
18
+ base.send :extend, ClassMethods
19
+ end
20
+
21
+ module ClassMethods
22
+
23
+ def enumeration(attribute_name, **options)
24
+ options.assert_valid_keys(:as, :of)
25
+ column_type = options.fetch(:as, DEFAULT_COLUMN_TYPE)
26
+ enumeration = options[:of]
27
+ define_type(attribute_name: attribute_name, column_type: column_type, enumeration: enumeration)
28
+ add_validation(attribute_name: attribute_name, column_type: column_type, enumeration: enumeration)
29
+ end
30
+
31
+ private
32
+
33
+ def define_type(attribute_name:, column_type:, enumeration:)
34
+ attribute attribute_name, type_for(column_type: column_type, enumeration: enumeration)
35
+ end
36
+
37
+ def add_validation(attribute_name:, column_type:, enumeration:)
38
+ case column_type
39
+ when :value
40
+ validates attribute_name, inclusion: { in: enumeration.list }
41
+ when :array
42
+ validates attribute_name, enum_array: { as: enumeration }
43
+ end
44
+ end
45
+
46
+ def type_for(column_type:, enumeration:)
47
+ case column_type
48
+ when :value
49
+ value_type_for_enum(enumeration)
50
+ when :array
51
+ array_type_for_enum(enumeration)
52
+ end
53
+ end
54
+
55
+ def value_type_for_enum(enumeration)
56
+ EnumType.new(enum: enumeration)
57
+ end
58
+
59
+ def array_type_for_enum(enumeration)
60
+ raise InvalidColumnTypeForAdapterTypeError unless postgres_connection?
61
+ PostgreSQLArrayType.new(EnumType.new(enum: enumeration))
62
+ end
63
+
64
+ def postgres_connection?
65
+ ::ActiveRecord::Base.connection.is_a?(PostgreSQLAdapter)
66
+ end
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,26 @@
1
+ module Poppy
2
+ module ActiveRecord
3
+ class EnumType < ::ActiveRecord::Type::Value
4
+ class InvalidEnumerationError < StandardError; end;
5
+
6
+ attr_accessor :enum
7
+
8
+ def initialize(options)
9
+ options.assert_valid_keys(:precision, :scale, :limit, :enum)
10
+ @precision = options[:precision]
11
+ @scale = options[:scale]
12
+ @limit = options[:limit]
13
+ @enum = options[:enum]
14
+ end
15
+
16
+ def type_cast(value)
17
+ return value if enum.valid?(value)
18
+ enum.enum_for(value.to_sym)
19
+ end
20
+
21
+ def type_cast_for_database(value)
22
+ enum.key_for(value)
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,11 @@
1
+ require "poppy"
2
+ require "poppy/rails/version"
3
+
4
+ module Poppy
5
+ module Rails
6
+ end
7
+ end
8
+
9
+ require "poppy/rails/validators/enum_array_validator"
10
+ require "poppy/active_record"
11
+ require "poppy/active_record/enum_type"
@@ -0,0 +1,22 @@
1
+ require 'active_model'
2
+
3
+ module Poppy
4
+ module Rails
5
+ module Validators
6
+ class EnumArrayValidator < ::ActiveModel::EachValidator
7
+ def validate_each(record, attribute, value)
8
+ record.errors.add(attribute, "must only only contain values of type #{enumeration}") unless valid_enums?(value)
9
+ end
10
+
11
+ private
12
+ def valid_enums?(array)
13
+ array.select{ |v| enumeration.valid?(v) }.count == array.count
14
+ end
15
+
16
+ def enumeration
17
+ options[:as]
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,5 @@
1
+ module Poppy
2
+ module Rails
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'poppy/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "poppy-rails"
8
+ spec.version = Poppy::Rails::VERSION
9
+ spec.authors = ["Damien Adermann"]
10
+ spec.email = ["damienadermann@gmail.com"]
11
+
12
+ spec.summary = %q{Ruby On Rails integration for Poppy Enumerations}
13
+ spec.description = %q{Simple Polymorphic enumerations for Ruby on Rails. Inspired by Enumerate_it, not inspired by ActiveRecord's enum}
14
+ spec.homepage = "https://github.com/damienadermann/poppy-rails"
15
+ spec.license = "MIT"
16
+
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_dependency "poppy", "0.1.0"
24
+ spec.add_dependency "activerecord", "~> 4.2.0"
25
+
26
+ spec.add_development_dependency "pg"
27
+ spec.add_development_dependency "bundler", "~> 1.10"
28
+ spec.add_development_dependency "rake", "~> 10.0"
29
+ spec.add_development_dependency "rspec"
30
+ spec.add_development_dependency "sqlite3"
31
+ spec.add_development_dependency "byebug"
32
+ end
metadata ADDED
@@ -0,0 +1,173 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: poppy-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Damien Adermann
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-11-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: poppy
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.1.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.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: activerecord
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 4.2.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 4.2.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: pg
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.10'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: sqlite3
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: byebug
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ description: Simple Polymorphic enumerations for Ruby on Rails. Inspired by Enumerate_it,
126
+ not inspired by ActiveRecord's enum
127
+ email:
128
+ - damienadermann@gmail.com
129
+ executables: []
130
+ extensions: []
131
+ extra_rdoc_files: []
132
+ files:
133
+ - ".gitignore"
134
+ - ".rspec"
135
+ - ".travis.yml"
136
+ - CODE_OF_CONDUCT.md
137
+ - Gemfile
138
+ - LICENSE.txt
139
+ - README.md
140
+ - Rakefile
141
+ - bin/console
142
+ - bin/setup
143
+ - lib/poppy/active_record.rb
144
+ - lib/poppy/active_record/enum_type.rb
145
+ - lib/poppy/rails.rb
146
+ - lib/poppy/rails/validators/enum_array_validator.rb
147
+ - lib/poppy/rails/version.rb
148
+ - poppy-rails.gemspec
149
+ homepage: https://github.com/damienadermann/poppy-rails
150
+ licenses:
151
+ - MIT
152
+ metadata: {}
153
+ post_install_message:
154
+ rdoc_options: []
155
+ require_paths:
156
+ - lib
157
+ required_ruby_version: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - ">="
160
+ - !ruby/object:Gem::Version
161
+ version: '0'
162
+ required_rubygems_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ requirements: []
168
+ rubyforge_project:
169
+ rubygems_version: 2.4.5
170
+ signing_key:
171
+ specification_version: 4
172
+ summary: Ruby On Rails integration for Poppy Enumerations
173
+ test_files: []