ignored_columns_tasks 0.0.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad7e03cc537a362226785d3937b5e7642eb97720cfa6353272e2b691738bc9f4
4
- data.tar.gz: 2c3e07d772548bc75f0051c23ca0290ec3ead2c37a55999ad1a67f610d92fa3c
3
+ metadata.gz: 5766d5af94e72067164ba02354d848710b42fc85aabb19b0a4805fc9a0d5fa2f
4
+ data.tar.gz: c21503fa1b197220802644e8a697bec55fb454b3d059084a8c12120c4418843f
5
5
  SHA512:
6
- metadata.gz: 06756504d577020eb1611ab1f361418ca5d90cca980a592b6c7a8f4fa9fdcecd803c91164925b9699e7c3254c5146829b39540d2d515e8bead5738d0f99ebd06
7
- data.tar.gz: 39099157082e6e3f5aafc4e7768c4d126197b4e6bab7d5f4be87281dccd285c22e5f92525652d84a33d900ee84dee45b3cba16c5b53f116cfb124b47d37b4704
6
+ metadata.gz: 02e85c9e24669d726ba4bfb78ae04162ebe04ef9540c706ec1f710f2ba591cc050e0bf737675bbedfae763852c93d1c37ed0f76f8011c241728d76540eb9a051
7
+ data.tar.gz: 6f09ed53de2d8439bba4befa933ccaa979d0492f6028980ea8682b936da004f8550e681f0d9b70c5743ded6ea829cdf8df3218db23175ebbdffd7cd1f902c5b1
data/Changes ADDED
@@ -0,0 +1,3 @@
1
+ 2023-07-29 v0.1.0
2
+ --------------------
3
+ - Change IGNORED_COLUMNS_SKIP_COLUMNS env var to IGNORED_COLUMNS_TASKS_SKIP_COLUMNS
data/README.md CHANGED
@@ -32,13 +32,13 @@ If you have ignored columns that must not be dropped add them to the `SKIP_COLUM
32
32
  ```
33
33
 
34
34
  You can set this once for your project instead of specifying it every time.
35
- In this case it is recommended to use the `IGNORED_COLUMNS_SKIP_COLUMNS` environment variable.
35
+ In this case it is recommended to use the `IGNORED_COLUMNS_TASKS_SKIP_COLUMNS` environment variable:
36
36
 
37
37
  ```sh
38
- export IGNORED_COLUMNS_SKIP_COLUMNS="some_column,another_column"
38
+ export IGNORED_COLUMNS_TASKS_SKIP_COLUMNS="some_column,another_column"
39
39
  ```
40
40
 
41
- This task can also be limited to a single model via the `MODEL` environment variable:
41
+ This task can also be limited to a single model by setting the `MODEL` environment variable:
42
42
 
43
43
  ```
44
44
  ./bin/rails ignored_columns:migration MODEL=User
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
 
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
16
  spec.metadata["source_code_uri"] = "https://github.com/sshaw/ignored_columns_tasks"
17
- # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
17
+ spec.metadata["changelog_uri"] = "https://github.com/sshaw/ignored_columns_tasks/blob/master/Changes"
18
18
 
19
19
  # Specify which files should be added to the gem when it is released.
20
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -9,9 +9,9 @@ namespace :ignored_columns do
9
9
  def skip_columns
10
10
  skip = nil
11
11
 
12
- # IGNORED_COLUMNS_SKIP_COLUMNS is our global, namespaced verison
12
+ # IGNORED_COLUMNS_TASKS_SKIP_COLUMNS is our global, namespaced version
13
13
  # SKIP_COLUMNS is shorter, command-line argument
14
- %w[IGNORED_COLUMNS_SKIP_COLUMNS SKIP_COLUMNS].each do |name|
14
+ %w[IGNORED_COLUMNS_TASKS_SKIP_COLUMNS SKIP_COLUMNS].each do |name|
15
15
  if ENV[name]
16
16
  skip ||= []
17
17
  skip.concat(ENV[name].split(/\s*,\s/))
@@ -1,3 +1,3 @@
1
1
  module IgnoredColumnsTasks
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ignored_columns_tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Skye Shaw
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-29 00:00:00.000000000 Z
11
+ date: 2023-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -47,6 +47,7 @@ extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
49
  - ".gitignore"
50
+ - Changes
50
51
  - Gemfile
51
52
  - LICENSE.txt
52
53
  - README.md
@@ -64,6 +65,7 @@ licenses:
64
65
  metadata:
65
66
  homepage_uri: https://github.com/sshaw/ignored_columns_tasks
66
67
  source_code_uri: https://github.com/sshaw/ignored_columns_tasks
68
+ changelog_uri: https://github.com/sshaw/ignored_columns_tasks/blob/master/Changes
67
69
  post_install_message:
68
70
  rdoc_options: []
69
71
  require_paths: