rumination 0.14.2 → 0.14.3

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: 5208843836b496a1d08d446e1524fb55f422178d
4
- data.tar.gz: 6c993b9294ef69b074d399c3b73a86e017d3e51d
3
+ metadata.gz: 21b791ed19d4badc3df9efe6e073347961715450
4
+ data.tar.gz: 095d58293e922fecfb35dfcdbaa8afabfcc56725
5
5
  SHA512:
6
- metadata.gz: 8fb77e775924c88ba92fb6e484389305aac435092f07f5c644269193ff25b29ff4d3eb5674cae919f8977cdfebf51ad9cc21df09b7bf45c4ed38bd66d62575b7
7
- data.tar.gz: 210f0c39a94999389966cf7fbd4b543a71977b48ed37ef3917fa0220c9a20b722b276898011c004229ccd75e40f984fedd257cb208566313df6ff92cf77163d3
6
+ metadata.gz: 663ff71ce98a073610bc235eb3360cfdf5112c27c2a85da6e716e245914bf3bf2305f911bedfdd72bd95aa1d96446ba0d1420402bb2e9650d016f0b8484f7bde
7
+ data.tar.gz: eab834c5c57597612634c587e52057d98615afd1ff61cfea49c2d2a96fca3a4e5f2d4ca5ee50290aa17a4774c4e341ef30f3e1afa477e5a24982766c2f8802e2
@@ -0,0 +1,7 @@
1
+ module Rake
2
+ module RequiredEnvVar
3
+ def required_env_var variable
4
+ ENV[variable] or raise "supply #{variable} environment variable"
5
+ end
6
+ end
7
+ end
@@ -1,3 +1,3 @@
1
1
  Dir[File.expand_path("../tasks/**/*.rake", __FILE__)].each do |task_file|
2
- load task_file
2
+ import task_file
3
3
  end
@@ -1,3 +1,3 @@
1
1
  module Rumination
2
- VERSION = "0.14.2"
2
+ VERSION = "0.14.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rumination
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.2
4
+ version: 0.14.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Baguinski
@@ -150,6 +150,7 @@ files:
150
150
  - lib/rumination/pg/commands.rb
151
151
  - lib/rumination/pg/restore.rb
152
152
  - lib/rumination/railtie.rb
153
+ - lib/rumination/rake/required_env_var.rb
153
154
  - lib/rumination/tasks.rb
154
155
  - lib/rumination/tasks/db/dump.rake
155
156
  - lib/rumination/tasks/db/setup.rake