salty-ui-rails 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e09bfeeb66691df57b93f37ea08cdd5b511a977
4
- data.tar.gz: 20aa8317cb36b4535f7fe2e75e3214bd73c5a00d
3
+ metadata.gz: d1cd42dc56e10b1aaf7f5096d76c3217140a6cf9
4
+ data.tar.gz: 53494842ab02284a07f2fa6da5cf4389a6e87c40
5
5
  SHA512:
6
- metadata.gz: 201814bc4021a52d89874d536c346b49478a6c5faaa1a5be7c2841d2f5918a454453c6b1fea14641381c13281af85a845e2a7216d9a55b05b6cb7088f6d34d2c
7
- data.tar.gz: 3a1cc435b59969768faa342ba3e07c92433e7d16de88f93a2e733318d981be1611c4e7513596a82b8b5d4a445a9e91858466d6ae4b69a1beaf623823e2b9b645
6
+ metadata.gz: b488097bc0da5a1b42025e0ec1f33a4da692c4bf98dda52ea2b1e8f36029a4090da68474303d25e2bdc901f34118bf300de495bd6b7863a9d8a763a2f2abe211
7
+ data.tar.gz: 0cfd7bb1c524d185253473c7ae8a3df2eaa6dab95a5208029da826aba76828a83310020fec6a531e31f2305880b0ce36c2c7b231944f14e2b5e4bf824114458d
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2015 JaredCowan
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,3 @@
1
+ body {
2
+ background-color: #f00 !important;
3
+ }
@@ -0,0 +1 @@
1
+ require "salty_ui_rails/engine"
@@ -0,0 +1,9 @@
1
+ module SaltyUi
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
@@ -0,0 +1,3 @@
1
+ module SaltyUiRails
2
+ VERSION = "0.1.0"
3
+ 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.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - JaredCowan
@@ -73,7 +73,12 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - MIT-LICENSE
76
77
  - README.md
78
+ - assets/stylesheets/_salty-ui-rails.scss
79
+ - lib/salty-ui-rails.rb
80
+ - lib/salty_ui_rails/engine.rb
81
+ - lib/salty_ui_rails/version.rb
77
82
  homepage: http://rubygems.org/gems/salty-ui-rails
78
83
  licenses:
79
84
  - MIT