flywayMigrator 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 177b47ca741058a5ca5cf1866473950da14bfaacba2f545d21fc0d1bb5cec2ed
4
+ data.tar.gz: ffa1c4c27863f2e887dec10680b8e6a5e586ad27ee252e0076877cc4f8d5a0ed
5
+ SHA512:
6
+ metadata.gz: a1e0c65e508928766b56e1c09afde8d6d6974658a7319434f7ec4c38284ae1c16dfb9bb99b47ce494ce9cb7c147552827d7c7885510a12607d991b578df890cd
7
+ data.tar.gz: b62aed730d8c356c5a97fe0e54565f5b17101bddd4733c173bd68d4e0b1388163258b6a175854a47854569ea4c1894d8cbc436efb4ae0122d8ec4cd872206357
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2020 []().
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,88 @@
1
+ # Flyway Migrator
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/flywayMigrator.svg)](http://badge.fury.io/rb/flywayMigrator)
4
+
5
+ <!-- Tocer[start]: Auto-generated, don't remove. -->
6
+
7
+ ## Table of Contents
8
+
9
+ - [Features](#features)
10
+ - [Screencasts](#screencasts)
11
+ - [Requirements](#requirements)
12
+ - [Setup](#setup)
13
+ - [Usage](#usage)
14
+ - [Tests](#tests)
15
+ - [Versioning](#versioning)
16
+ - [Code of Conduct](#code-of-conduct)
17
+ - [Contributions](#contributions)
18
+ - [License](#license)
19
+ - [History](#history)
20
+ - [Credits](#credits)
21
+
22
+ <!-- Tocer[finish]: Auto-generated, don't remove. -->
23
+
24
+ ## Features
25
+
26
+ ## Screencasts
27
+
28
+ ## Requirements
29
+
30
+ 0. [Ruby 2.6.1](https://www.ruby-lang.org)
31
+
32
+ ## Setup
33
+
34
+ For a secure install, type the following (recommended):
35
+
36
+ gem cert --add <(curl --location --silent /gem-public.pem)
37
+ gem install flywayMigrator --trust-policy MediumSecurity
38
+
39
+ NOTE: A HighSecurity trust policy would be best but MediumSecurity enables signed gem verification
40
+ while allowing the installation of unsigned dependencies since they are beyond the scope of this
41
+ gem.
42
+
43
+ For an insecure install, type the following (not recommended):
44
+
45
+ gem install flywayMigrator
46
+
47
+
48
+ ## Usage
49
+
50
+ flywayMigrator generate -n <NAME OF MIGRATION>
51
+
52
+ ## Tests
53
+
54
+ To test, run:
55
+
56
+ bundle exec rake
57
+
58
+ ## Versioning
59
+
60
+ Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
61
+
62
+ - Major (X.y.z) - Incremented for any backwards incompatible public API changes.
63
+ - Minor (x.Y.z) - Incremented for new, backwards compatible, public API enhancements/fixes.
64
+ - Patch (x.y.Z) - Incremented for small, backwards compatible, bug fixes.
65
+
66
+ ## Code of Conduct
67
+
68
+ Please note that this project is released with a [CODE OF CONDUCT](CODE_OF_CONDUCT.md). By
69
+ participating in this project you agree to abide by its terms.
70
+
71
+ ## Contributions
72
+
73
+ Read [CONTRIBUTING](CONTRIBUTING.md) for details.
74
+
75
+ ## License
76
+
77
+ Copyright (c) 2020 []().
78
+ Read [LICENSE](LICENSE.md) for details.
79
+
80
+ ## History
81
+
82
+ Read [CHANGES](CHANGES.md) for details.
83
+ Built with [Gemsmith](https://github.com/bkuhlmann/gemsmith).
84
+
85
+ ## Credits
86
+
87
+ Developed by [David Mkrtchyan]() at
88
+ []().
@@ -0,0 +1,9 @@
1
+ #! /usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "flyway_migrator"
5
+ require "flyway_migrator/cli"
6
+ require "flyway_migrator/identity"
7
+
8
+ Process.setproctitle FlywayMigrator::Identity.version_label
9
+ FlywayMigrator::CLI.start
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "flyway_migrator/identity"
4
+ require "flyway_migrator/cli"
5
+ require 'optparse'
6
+ require 'date'
7
+
8
+ module FlywayMigrator
9
+ class Migration
10
+ def self.generate(name)
11
+ begin
12
+ if name
13
+ new_escaped = name.gsub(' ', '_')
14
+ filename = "V#{DateTime.now.strftime("%Y%m%d%H%M")}__#{new_escaped}.sql"
15
+ if File.file?(filename)
16
+ raise Exception.new("File #{filename} already exists in this directory")
17
+ end
18
+ File.new(filename, "w")
19
+ else
20
+ raise Exception.new('Description Required')
21
+ end
22
+ rescue Exception => e
23
+ puts "#{e}"
24
+ end
25
+
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,56 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "thor"
4
+ require "thor/actions"
5
+ require "runcom"
6
+
7
+ module FlywayMigrator
8
+ # The Command Line Interface (CLI) for the gem.
9
+ class CLI < Thor
10
+ include Thor::Actions
11
+
12
+ package_name Identity.version_label
13
+
14
+ def self.configuration
15
+ Runcom::Configuration.new project_name: Identity.name
16
+ end
17
+
18
+ def initialize args = [], options = {}, config = {}
19
+ super args, options, config
20
+ @configuration = self.class.configuration
21
+ rescue Runcom::Errors::Base => error
22
+ abort error.message
23
+ end
24
+
25
+ desc "-g, [--generate]", "Manage gem configuration."
26
+ map %w[-g --generate] => :generate
27
+ method_option :name,
28
+ aliases: "-n",
29
+ desc: "Name the migration file.",
30
+ type: :string
31
+ def generate
32
+ path = configuration.path
33
+
34
+ if options.name?
35
+ FlywayMigrator::Migration.generate(options.name)
36
+ else help(:name)
37
+ end
38
+ end
39
+
40
+ desc "-v, [--version]", "Show gem version."
41
+ map %w[-v --version] => :version
42
+ def version
43
+ say Identity.version_label
44
+ end
45
+
46
+ desc "-h, [--help=COMMAND]", "Show this message or get help for a command."
47
+ map %w[-h --help] => :help
48
+ def help task = nil
49
+ say and super
50
+ end
51
+
52
+ private
53
+
54
+ attr_reader :configuration
55
+ end
56
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FlywayMigrator
4
+ # Gem identity information.
5
+ module Identity
6
+ def self.name
7
+ "flywayMigrator"
8
+ end
9
+
10
+ def self.label
11
+ "Flyway Migrator"
12
+ end
13
+
14
+ def self.version
15
+ "0.1.0"
16
+ end
17
+
18
+ def self.version_label
19
+ "#{label} #{version}"
20
+ end
21
+ end
22
+ end
metadata ADDED
@@ -0,0 +1,234 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flywayMigrator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - David Mkrtchyan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-03-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: runcom
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.20'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.20'
41
+ - !ruby/object:Gem::Dependency
42
+ name: date
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: OptionParser
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.5.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.5.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: gemsmith
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.4'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.4'
83
+ - !ruby/object:Gem::Dependency
84
+ name: git-cop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.7'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.7'
97
+ - !ruby/object:Gem::Dependency
98
+ name: guard-rspec
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '4.7'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '4.7'
111
+ - !ruby/object:Gem::Dependency
112
+ name: pry
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.10'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.10'
125
+ - !ruby/object:Gem::Dependency
126
+ name: pry-byebug
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '3.5'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '3.5'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rake
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '12.3'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '12.3'
153
+ - !ruby/object:Gem::Dependency
154
+ name: reek
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '4.7'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '4.7'
167
+ - !ruby/object:Gem::Dependency
168
+ name: rspec
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '3.7'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '3.7'
181
+ - !ruby/object:Gem::Dependency
182
+ name: rubocop
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: '0.51'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: '0.51'
195
+ description:
196
+ email:
197
+ - damkrtchyan@yahoo.com
198
+ executables:
199
+ - flywayMigrator
200
+ extensions: []
201
+ extra_rdoc_files:
202
+ - README.md
203
+ - LICENSE.md
204
+ files:
205
+ - LICENSE.md
206
+ - README.md
207
+ - bin/flywayMigrator
208
+ - lib/flyway_migrator.rb
209
+ - lib/flyway_migrator/cli.rb
210
+ - lib/flyway_migrator/identity.rb
211
+ homepage: ''
212
+ licenses:
213
+ - MIT
214
+ metadata: {}
215
+ post_install_message:
216
+ rdoc_options: []
217
+ require_paths:
218
+ - lib
219
+ required_ruby_version: !ruby/object:Gem::Requirement
220
+ requirements:
221
+ - - "~>"
222
+ - !ruby/object:Gem::Version
223
+ version: '2.6'
224
+ required_rubygems_version: !ruby/object:Gem::Requirement
225
+ requirements:
226
+ - - ">="
227
+ - !ruby/object:Gem::Version
228
+ version: '0'
229
+ requirements: []
230
+ rubygems_version: 3.0.2
231
+ signing_key:
232
+ specification_version: 4
233
+ summary: ''
234
+ test_files: []