tamarama 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: 3da72114621dc24d9dea1d24356f8fa3bf717b8e
4
- data.tar.gz: 5a82a4dd707a51e7a7b2b16178ced90bfbd5a026
3
+ metadata.gz: 313d165c360fa86aa12b5f5e82806b9d3e914c2f
4
+ data.tar.gz: 55ea239e076a7c5d196cc9bbbdf02499bd418824
5
5
  SHA512:
6
- metadata.gz: cc38762bf571ef53ff669a6747edaf154bbab72a3b005c2ff38d629f2ed964cf4a86ae6cb43330a87f60a2b94afebf30d987428a99f1d337b995f922d690bf3b
7
- data.tar.gz: 48923f21322029ae46d3da87a91ba1f6c428278e8c91677bf9e4f025ba418ca3b4f703740bc640749628c4ee0a3a6e66ba01a495e5f22f79d005e4920f66ffc5
6
+ metadata.gz: 2efb1af35e86ffe858314470b3f5900b1cf4eed15067ffc42345274b318f8561d1578f36c4609ecade8f6abdb985445961d53f81c2b53f5f6828aca83bbdd223
7
+ data.tar.gz: bd5a26a8b8beac45d51a180e6f835bd12cc6af9bc694765c103826bd6d8a3bd9462e0d9c00a181284bf3205ce4fff2d60576f11df0ad53365aa36f8e165f3fd7
@@ -0,0 +1,7 @@
1
+ # 0.1.1
2
+
3
+ * Fix `rake_task.rb` so it uses `Sequel.()` for DB connection.
4
+
5
+ # 0.1.0
6
+
7
+ * First release into an unsuspecting world.
@@ -13,7 +13,7 @@ namespace :db do
13
13
  version = args[:version]
14
14
  migrations_directory = "migrations"
15
15
 
16
- db = DB.connect
16
+ db = Tamarama::DB::Sequel.()
17
17
 
18
18
  message = if args[:version].nil?
19
19
  Sequel::Migrator.run(db, migrations_directory)
@@ -29,7 +29,8 @@ namespace :db do
29
29
  task :debug => [:dotenv] do
30
30
  require "application"
31
31
 
32
- db = DB.connect
32
+ db = Tamarama::DB::Sequel.()
33
+
33
34
  puts "=== DB: #{db.uri}"
34
35
  puts db.schema(:users).inspect
35
36
  # puts User::Persistence.db_schema
@@ -1,3 +1,3 @@
1
1
  module Tamarama
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: tamarama
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
  - Nick Sutterer
@@ -46,6 +46,7 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - ".gitignore"
49
+ - CHANGES.md
49
50
  - Gemfile
50
51
  - README.md
51
52
  - Rakefile