tablature 0.3.0 → 0.3.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: c0f01e862c6cb003f9b1bc86743f0254cccef3637fa87f84ea32b4c96f35b6e3
4
- data.tar.gz: 53694558d02632d0445cba1d699b996d822d5954a2103eba18e90a9368f23878
3
+ metadata.gz: 7d2ff14d9d94a6ab38483d133cfc3679a1647888683ca767e8201f5ca1db5357
4
+ data.tar.gz: dd65acaba0dae0cc4d659e3d9505c02483dac1bc5ae04d701741db3fad74f2ad
5
5
  SHA512:
6
- metadata.gz: f5adfa4f8f12f91c123d34c0425fcc1554fbe79f69feb33667626591c5ebcb24ad983574a16a7f70179524e645ed79c341c143592904ce056bcac01933eab5c5
7
- data.tar.gz: d26d13cf166673c56d341aedeecd948a563942c6bf0720b5ff01d6bffd22ee9d2b1de0576e0c88891b2a2a0e551aa192b9e0c32a8dc2f66050edce43ce42a9ee
6
+ metadata.gz: 25d6f5d66c1b72e7887eeae052476a2bdd161c59023c882edbc2cfe52673d279448102092810119990f9057ff6844c8f887921e7d5093903c5ebb2cabe333447
7
+ data.tar.gz: 65aa6da3dbcd404efb155665f4ce88481b3dbe6858170b6259292d09563880718656ea22eff17a885c7d74120337a8d05d38927b1c68f36d09f00d7d0389af8a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tablature (0.3.0)
4
+ tablature (0.3.1)
5
5
  activerecord (>= 5.0.0)
6
6
  railties (>= 5.0.0)
7
7
 
@@ -58,13 +58,13 @@ module Tablature
58
58
  private
59
59
 
60
60
  def setup_partition(partition_name)
61
- class_attribute(:partition_name)
62
61
  self.partition_name = partition_name
63
62
  end
64
63
  end
65
64
 
66
65
  def self.included(klass)
67
66
  klass.extend ClassMethods
67
+ klass.class_attribute(:partition_name)
68
68
  end
69
69
  end
70
70
  end
@@ -1,3 +1,3 @@
1
1
  module Tablature
2
- VERSION = '0.3.0'.freeze
2
+ VERSION = '0.3.1'.freeze
3
3
  end
data/tablature.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
- f.match(%r{^(test|spec|features)/})
17
+ f.match(%r{^(bin|test|spec|features)/})
18
18
  end
19
19
  spec.bindir = 'exe'
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tablature
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aliou Diallo
@@ -139,8 +139,6 @@ files:
139
139
  - LICENSE.txt
140
140
  - README.md
141
141
  - Rakefile
142
- - bin/console
143
- - bin/setup
144
142
  - lib/tablature.rb
145
143
  - lib/tablature/adapters/postgres.rb
146
144
  - lib/tablature/adapters/postgres/connection.rb
data/bin/console DELETED
@@ -1,10 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'tablature'
5
-
6
- # Require the dummy test app in the console.
7
- require File.expand_path('spec/dummy/config/environment')
8
-
9
- require 'pry'
10
- Pry.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here