tkd-grid 1.0.11 → 1.0.12

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: 063a662fb54def2ae4aeb63922b4a86295383d65
4
- data.tar.gz: 981c7d1ed34676726c9388a002372ad221b87eb6
3
+ metadata.gz: 66077bb06bf6106f78b547ea1fdb35a2b39830b2
4
+ data.tar.gz: 031aa27f9c05114328319b0d8c61695553060777
5
5
  SHA512:
6
- metadata.gz: 7697ef8f790b0c24ad4df9503f29d3d2aaaaacd573e93cd37513bb928d60629917ca4059adf1046d9bd0d9ec453503cbe760f828400209adb0843f5db9fe6f0f
7
- data.tar.gz: 06a14e56426dccc9e2eb4a7e082baa5810658ae9ea1a1d18575853d622c105148de7d24b7d00b85a6683fe8b03720c97b2115b885aef650d9a9b43e1f80ca9ed
6
+ metadata.gz: 57647ebbe6d967a14279ec42268f53529a01869c2b81085b6bdd484d3f897da9d24d45f96289cf410d5a09a5e487d1b3f1fd8141ef6eaf5bf7aa1901beb412cf
7
+ data.tar.gz: 2c28fb9c94ca0dc0e6d95f40328d4dabcdcec5b69f6fdf0299e8de67a565ad6baf5b1c9c22b98e14414e8120384796942a51791726a3adb872e6d0aebb3918e4
@@ -2,8 +2,9 @@ require "rails"
2
2
 
3
3
  module TkdGrid
4
4
  class Engine < Rails::Engine
5
- initializer "tkd-grid.setup", group: :all do |app|
6
- app.paths["config"] << File.join(config.root, "vendor")
5
+ initializer 'tkd-grid.setup',
6
+ :group => :all do |app|
7
+ app.paths['config'] << File.join(config.root, 'vendor')
7
8
  end
8
9
  end
9
10
  end
@@ -3,8 +3,9 @@ require "rails"
3
3
  module TkdGrid
4
4
  module Rails
5
5
  class Engine < Rails::Engine
6
- initializer "tkd-grid.setup", group: :all do |app|
7
- app.paths["config"] << File.join(config.root, "vendor")
6
+ initializer 'tkd-grid.setup',
7
+ :group => :all do |app|
8
+ app.paths['config'] << File.join(config.root, 'vendor')
8
9
  end
9
10
  end
10
11
  end
@@ -1,3 +1,3 @@
1
1
  module TkdGrid
2
- VERSION = "1.0.11"
2
+ VERSION = "1.0.12"
3
3
  end
data/tkd-grid.gemspec CHANGED
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = s.summary
11
11
  s.authors = ["Barnaby Taylor", "Archie Kennedy-Dyson"]
12
12
  s.files = `git ls-files`.split("\n")
13
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
13
14
  s.require_paths = ["lib"]
14
15
  s.homepage = 'http://github.com/barns/tkd-grid'
15
16
  s.license = 'MIT'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tkd-grid
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.11
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Barnaby Taylor