hekenga 1.0.0 → 1.0.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
  SHA256:
3
- metadata.gz: 4befa0d3716a0609575aa42f35fe126b854365f5e348ecb6b8babff4912e2522
4
- data.tar.gz: 674e20c142d8b8ebc0f51e75a4a372912359c196247471170c5ddae2c317c294
3
+ metadata.gz: 7a38cb70bbe202d2aecd3f16353ca659aca7b50e4d90d91d6437040439f5b356
4
+ data.tar.gz: cbb4e9a75fdf27338c91960182ebd9e0c11069869a74536fc6b2c00e2c044533
5
5
  SHA512:
6
- metadata.gz: 6625430dc0dc24bf821e7c584fa1141362de50effdf5606ed53583b77d20b8e79b7bd17680128b25e736c24a8fb41b58169f9a0b106bd693165abfec339c49b2
7
- data.tar.gz: 84a0af87ac9b21acc5253206d4de311adc6b5edbe47303894aeb1eb169ac89365f6338f79f67257478cc744ad98d8a23fe8002ee67c64b276f0a5e33be214685
6
+ metadata.gz: a25a854810fde682c314bc2c690f8619785410e38f049ed3f9ddd2628d926b6600d48e45f34cf86d3fc15f941f756f7f1ab436c762d5936749a97f3db948febe
7
+ data.tar.gz: 75a06ce6490d6710ec8116fa68c00ff447a7ffc650b945f511e0a5ebb1213e6e5ff03f7f719ec36934139f9661c0399400009706e22526166486ec5ff2e036a5
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
  /tmp/
10
10
  *.gem
11
11
  todo.txt
12
+ .versions.conf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.0.1
4
+
5
+ - Generate migrations without : in the filename for windows
6
+
3
7
  ## v1.0.0
4
8
 
5
9
  - `hekenga run!` now has a `--clear` option to clear the migration prior to running it
@@ -16,7 +16,8 @@ module Hekenga
16
16
  end
17
17
 
18
18
  def to_path
19
- @path ||= File.join(Hekenga.config.abs_dir, @migration.to_key+".rb")
19
+ @path ||= File.join(Hekenga.config.abs_dir, @migration.to_key.gsub(/\:/, '-') +
20
+ '.rb')
20
21
  end
21
22
 
22
23
  def to_s
@@ -1,3 +1,3 @@
1
1
  module Hekenga
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hekenga
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tapio Saarinen