eventify 0.9.1 → 0.9.2

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: 4bb0d485e3949db3bfe9a861f6d516f6d6af3082
4
- data.tar.gz: 6be4b3e6f79e9d64038175d7dfa0a656b0f88651
3
+ metadata.gz: 00e01a3af0535a84a3c82e9556ab1e4bbf14c9fb
4
+ data.tar.gz: 5d5f7fc692f3eea93ae18613bdc9b3542510b923
5
5
  SHA512:
6
- metadata.gz: fa043408f154dd78e23143869ec0a38d626bab9c0987904ba4a37195eed999cbc5be8f93b08f522fdebfedc184cd23a4aae5910f96290f6a58b453470d6e4ae7
7
- data.tar.gz: 48023e0fc72ff395b964012993afaadd61048f4c692cbd9f74ca942167879f593f9d9c0310fe7c1c5ba01debf695556b28c5da58c14caccb458c0a133edf6ee1
6
+ metadata.gz: 0759811cf176cc5910ecff4d17d7039e2e3135566e951a89535b5682d3ce549e968d1b6f757c1df3c1aeb806dd4d7d6e1c01cc1de89ff3e252f655a254a75b33
7
+ data.tar.gz: 27b92530e6505d8fc44cde358bc2a4190b0f8b3f4b1c52e773429f0f16d538a7fc6572530414b77389bf581162ce9976875aec1dc8b0efb7d1a3c814e654eb41
@@ -1,7 +1,7 @@
1
1
  require "yaml"
2
2
 
3
3
  class Eventify::Configuration
4
- PATH = File.expand_path("~/.eventify/config.yaml")
4
+ PATH = File.expand_path(File.join(ENV["HOME"], "/.eventify/config.yaml"))
5
5
 
6
6
  def initialize(configuration = {})
7
7
  @configuration = default_configuration.merge(load).merge(configuration)
@@ -1,7 +1,7 @@
1
1
  require "sqlite3"
2
2
 
3
3
  class Eventify::Database
4
- PATH = File.expand_path("~/.eventify/events.sqlite3", __dir__)
4
+ PATH = File.expand_path(File.join(ENV["HOME"], "/.eventify/events.sqlite3"))
5
5
 
6
6
  class << self
7
7
  def exists?(event)
@@ -1,3 +1,3 @@
1
1
  class Eventify
2
- VERSION = "0.9.1"
2
+ VERSION = "0.9.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eventify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jarmo Pertman