salty-ui-rails 0.1.1 → 0.1.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: 1f62008264bdca2914d6126a2e61545fdd9ec8d2
4
- data.tar.gz: f360df006f2e8f9b82c734a1cf81cb18bb79c4ca
3
+ metadata.gz: 2a7b8498ce3b2e2741efc121773accbea09cf4b2
4
+ data.tar.gz: df7bd8eec7252e0135e3411be64285afe1dbf951
5
5
  SHA512:
6
- metadata.gz: d252a689dbfc6b8018c48b69fef3691d7dcd61b3c50f24b1b5aaff9483e232da7c72bcfe877046054545eb80a3b12c9e46a60a8eec38ed9b964f3aa1e07d5ec3
7
- data.tar.gz: c226f7e65ff60e411ef57d467e8db9bc96b13d7b54d3fb998df469909383c9e346a7d225ac2e9c440d55e146a1d45458adc1a129b8d6068d5d1106b09ec750af
6
+ metadata.gz: 5383591543cb43f5e8de40aeb26a2a5f1dcd2f08aec3901709d3aa78afa83dceaa769a297aeb4b800e0dbd121fb634880a729eb58b816cf05f5b75fe8ed5ff76
7
+ data.tar.gz: 9fd5e989f79e70e0c16d0a5094de81d134eb4f8a5faa460117c7199abcbc26ae94d901bfc217ed161028f1ac4c54548106e1445f904dfa71d9abd49a0ce41990
@@ -1 +1 @@
1
- require "salty_ui_rails/engine"
1
+ require "salty/ui/rails/version"
@@ -0,0 +1,13 @@
1
+ module Salty
2
+ module Ui
3
+ module Rails
4
+ class Engine < ::Rails::Engine
5
+ initializer 'salty_ui_rails.assets.precompile' do |app|
6
+ %w(stylesheets).each do |sub|
7
+ app.config.assets.paths << root.join('assets', sub).to_s
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,7 @@
1
+ module Salty
2
+ module Ui
3
+ module Rails
4
+ VERSION = "0.1.2"
5
+ end
6
+ end
7
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: salty-ui-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - JaredCowan
@@ -77,8 +77,8 @@ files:
77
77
  - README.md
78
78
  - assets/stylesheets/_salty-ui-rails.scss
79
79
  - lib/salty-ui-rails.rb
80
- - lib/salty_ui_rails/engine.rb
81
- - lib/salty_ui_rails/version.rb
80
+ - lib/salty/ui/rails/engine.rb
81
+ - lib/salty/ui/rails/version.rb
82
82
  homepage: http://rubygems.org/gems/salty-ui-rails
83
83
  licenses:
84
84
  - MIT
@@ -1,9 +0,0 @@
1
- module SaltyUiRails
2
- class Engine < ::Rails::Engine
3
- initializer 'salty_ui_rails.assets.precompile' do |app|
4
- %w(stylesheets).each do |sub|
5
- app.config.assets.paths << root.join('assets', sub).to_s
6
- end
7
- end
8
- end
9
- end
@@ -1,3 +0,0 @@
1
- module SaltyUiRails
2
- VERSION = "0.1.1"
3
- end