migration_rollinout 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 6e401e93a6ce6d58544bf451206adfd347e04fae
4
- data.tar.gz: 56e3a2d2515c8d6a0719f1b17f619dc711f7b4e3
3
+ metadata.gz: 59a5dd010239d7ad30701d134805173c5da635eb
4
+ data.tar.gz: d3b0e6707d4f1736dfef917544d89a32b807163a
5
5
  SHA512:
6
- metadata.gz: 755952149e202b81f474539c718b368682bcb0cccdc55902e28676c991d3ffea4a1532f5591addf5b711869e85472ff0fb00abb3de12523ca3690d3ede53b504
7
- data.tar.gz: ccbcc3995eaaa1eb891ce208a5832b02da8b100d21f0c582cfcc8293ca74a604fe0e3a03c23af597f42579e4c1670af69b237b1a745f153b80ac4fc3f95fa459
6
+ metadata.gz: b1b8b2e88a0d49f0f8d08d337140429c9fba9cbc18cdd641b514a0e6593ae35224cdb5f0e0ebdf1ea1a8d0aad6c78defde0dc9ff895d6c295a97e9c017612114
7
+ data.tar.gz: b5a7db40ef757ed69df5c57a5479feb02c461c69da219cc051e725c93d55ae666a414441936e6839ab8cc85bdff01ab60aba4eaa23d551b9055ff78bc6a50f23
data/README.md CHANGED
@@ -1,8 +1,20 @@
1
1
  # MigrationRollinout
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/migration_rollinout`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ This gem adds rake task:
4
+
5
+ ```ruby
6
+ rake db:rollinout
7
+ ```
8
+
9
+ It is a simple wrapper task for:
10
+ ```ruby
11
+ rake db:migrate db:rollback db:migrate
12
+ ```
13
+
14
+ Assures that your migration is reversable.
15
+
16
+ Makes life easier ;)
4
17
 
5
- TODO: Delete this and the text above, and describe your gem
6
18
 
7
19
  ## Installation
8
20
 
@@ -1,3 +1,3 @@
1
1
  module MigrationRollinout
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: migration_rollinout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bartlomiej Banasik