salty-ui-rails 0.1.8 → 0.2.0

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: 148901892d89fb0eb4dc36e90683a98edf47c288
4
- data.tar.gz: bdbbcb0879f465525456667619db039ac2105dec
3
+ metadata.gz: ce80ebcb4bfff3bc3a82afb9c8229e0c15e7797b
4
+ data.tar.gz: f0929273dd2f40b7be3142e86be5f9b51a649fb8
5
5
  SHA512:
6
- metadata.gz: 82d70d84d427b428947c3d35a464488220743b82a5d5485f07117dcc8cd02b65bd36fcea3d18c23b445c1f0c5313d5e14d2d0a1eb77386b6328bf217cb9c8ef8
7
- data.tar.gz: 077f8e51aa4dfd1faf33d8f7328c23385065f2726e5a5a772b3c1ce21b3658728fa3cb84b7ada29162b0ef84052e540bb1c32f09f833d9e30d06607771b23a6a
6
+ metadata.gz: 154c1050f8b990f3f41b51d5d5fb0efb97fc601cd8c42a143744a0c94c2fd1ddaf811e0c4f4eda4012e575ad8c762647cd3ae227aecdf04207661afb87aa0432
7
+ data.tar.gz: 4649f2d8ce64f9302f0c06d433760564e712a1c78d39383a08c858af12f60ad677c7e984ef00834b03355357ba1b15845a894fc796da82bc714a5ab937582a88
@@ -0,0 +1,6 @@
1
+ module Salty
2
+ module UiRails
3
+ class Engine < ::Rails::Engine
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module SaltyUiRails
2
+ VERSION = "0.2.0"
3
+ end
@@ -1,2 +1,2 @@
1
- require "salty/ui/rails/version"
2
- require "salty/ui/rails/engine"
1
+ require "salty/ui_rails/version"
2
+ require "salty/ui_rails/engine"
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.8
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - JaredCowan
@@ -77,8 +77,8 @@ files:
77
77
  - README.md
78
78
  - lib/assets/stylesheets/salty-ui-rails.css
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,8 +0,0 @@
1
- module Salty
2
- module Ui
3
- module Rails
4
- class Engine < ::Rails::Engine
5
- end
6
- end
7
- end
8
- end
@@ -1,7 +0,0 @@
1
- module Salty
2
- module Ui
3
- module Rails
4
- VERSION = "0.1.8"
5
- end
6
- end
7
- end