metka 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +5 -3
  3. data/README.md +12 -12
  4. data/lib/metka/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2abbcf2d24f30b02f527647df97cc02ad1f751a3fb351823df0e086300e7bba
4
- data.tar.gz: 9538d7eaf02b7117b758dfcec61657be5a093ea676d0e43df35b4cdf333f3a9d
3
+ metadata.gz: e3c0565e7e049ea911c9039ef193104c7bf7e7213a12bbd3ca804fa0f3a3ce9f
4
+ data.tar.gz: 11e33a74f78aca7fa1942702fd2dd550c232dde0bdab414ec2cbe3ddec8ffaa0
5
5
  SHA512:
6
- metadata.gz: fd7565a9e2fc51ef10c4f15f06f4acbefc3adc775d8cf0b3896d35580b399bc5ce01e19331812a2ccdf88b84d8fbb51337e4bacc19402bbfe0a520e5ba0ef9ef
7
- data.tar.gz: 186eec2fe3c5f81f1ec68d5bd7904f6f19e6cf77bfb98ddd967e1e52fe42d470e6085dd90faba65c92578ab487485571f2fce3415e8905a9bea372759b3fa78f
6
+ metadata.gz: 76749d9965518aaacc8e592a569c9a4a57885647b99b6df4aecd7574536658c5d8e2259a9b344bb2bfe44cdd506eff95a73530f775778151253d92e3e081d531
7
+ data.tar.gz: e29dea73313396cf64d120b5cbdde93b42902442962243925ae25c541b9b7fab361d4be7b81ccc83e946d03f34c7995475d37d6c869ad54d50b2981b6544f322
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- metka (1.0.2)
4
+ metka (1.0.3)
5
5
  dry-configurable (>= 0.8)
6
6
  rails (>= 5.1)
7
7
 
@@ -57,11 +57,13 @@ GEM
57
57
  crass (1.0.5)
58
58
  database_cleaner (1.7.0)
59
59
  diff-lcs (1.3)
60
- dry-configurable (0.9.0)
60
+ dry-configurable (0.11.3)
61
61
  concurrent-ruby (~> 1.0)
62
62
  dry-core (~> 0.4, >= 0.4.7)
63
+ dry-equalizer (~> 0.2)
63
64
  dry-core (0.4.9)
64
65
  concurrent-ruby (~> 1.0)
66
+ dry-equalizer (0.3.0)
65
67
  erubi (1.9.0)
66
68
  faker (2.8.0)
67
69
  i18n (>= 1.6, < 1.8)
@@ -84,7 +86,7 @@ GEM
84
86
  mini_portile2 (2.4.0)
85
87
  minitest (5.13.0)
86
88
  nio4r (2.5.2)
87
- nokogiri (1.10.7)
89
+ nokogiri (1.10.8)
88
90
  mini_portile2 (~> 2.4.0)
89
91
  parallel (1.19.1)
90
92
  parser (2.6.5.0)
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # Metka
6
6
 
7
- Rails gem to manage tags with SonggreSQL array columns.
7
+ Rails gem to manage tags with PostgreSQL array columns.
8
8
 
9
9
  ## Installation
10
10
 
@@ -47,7 +47,7 @@ class Song < ActiveRecord::Base
47
47
  include Metka::Model(column: 'genres')
48
48
  end
49
49
 
50
- @song = Song.new(title: 'Migrate tags in Rails to SonggreSQL')
50
+ @song = Song.new(title: 'Migrate tags in Rails to PostgreSQL')
51
51
  @song.tag_list = 'top, chill'
52
52
  @song.genre_list = 'rock, jazz, pop'
53
53
  @song.save
@@ -58,7 +58,7 @@ end
58
58
  ### .with_all_#{column_name}
59
59
  ```ruby
60
60
  Song.with_all_tags('top')
61
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
61
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
62
62
 
63
63
  Song.with_all_tags('top, 1990')
64
64
  => []
@@ -67,22 +67,22 @@ Song.with_all_tags('')
67
67
  => []
68
68
 
69
69
  Song.with_all_genres('rock')
70
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
70
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
71
71
  ```
72
72
 
73
73
  ### .with_any_#{column_name}
74
74
  ```ruby
75
75
  Song.with_any_tags('chill')
76
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
76
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
77
77
 
78
78
  Song.with_any_tags('chill, 1980')
79
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
79
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
80
80
 
81
81
  Song.with_any_tags('')
82
82
  => []
83
83
 
84
84
  Song.with_any_genres('rock, rap')
85
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
85
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
86
86
  ```
87
87
  ### .without_all_#{column_name}
88
88
  ```ruby
@@ -90,13 +90,13 @@ Song.without_all_tags('top')
90
90
  => []
91
91
 
92
92
  Song.without_all_tags('top, 1990')
93
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
93
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
94
94
 
95
95
  Song.without_all_tags('')
96
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
96
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
97
97
 
98
98
  Song.without_all_genres('rock, pop')
99
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
99
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
100
100
 
101
101
  Song.without_all_genres('rock')
102
102
  => []
@@ -108,13 +108,13 @@ Song.without_any_tags('top, 1990')
108
108
  => []
109
109
 
110
110
  Song.without_any_tags('1990, 1980')
111
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
111
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
112
112
 
113
113
  Song.without_any_genres('rock, pop')
114
114
  => []
115
115
 
116
116
  Song.without_any_genres('')
117
- => [#<Song id: 1, title: 'Migrate tags in Rails to SonggreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
117
+ => [#<Song id: 1, title: 'Migrate tags in Rails to PostgreSQL', tags: ['top', 'chill'], genres: ['rock', 'jazz', 'pop']]
118
118
  ```
119
119
 
120
120
  ## Custom delimiter
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Metka
4
- VERSION = '1.0.2'
4
+ VERSION = '1.0.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Alexandrov
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2019-12-20 00:00:00.000000000 Z
12
+ date: 2020-02-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dry-configurable