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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/tablature/model.rb +1 -1
- data/lib/tablature/version.rb +1 -1
- data/tablature.gemspec +1 -1
- metadata +1 -3
- data/bin/console +0 -10
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d2ff14d9d94a6ab38483d133cfc3679a1647888683ca767e8201f5ca1db5357
|
|
4
|
+
data.tar.gz: dd65acaba0dae0cc4d659e3d9505c02483dac1bc5ae04d701741db3fad74f2ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25d6f5d66c1b72e7887eeae052476a2bdd161c59023c882edbc2cfe52673d279448102092810119990f9057ff6844c8f887921e7d5093903c5ebb2cabe333447
|
|
7
|
+
data.tar.gz: 65aa6da3dbcd404efb155665f4ce88481b3dbe6858170b6259292d09563880718656ea22eff17a885c7d74120337a8d05d38927b1c68f36d09f00d7d0389af8a
|
data/Gemfile.lock
CHANGED
data/lib/tablature/model.rb
CHANGED
|
@@ -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
|
data/lib/tablature/version.rb
CHANGED
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.
|
|
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