h2ocube_rails_assets 0.2.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -3
- data/h2ocube_rails_assets.gemspec +2 -2
- data/lib/h2ocube_rails_assets.rb +1 -2
- metadata +2 -18
- data/test/compass_test.rb +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 301477e9e6191e8b69397ea0e17e4e2fc16408f6
|
4
|
+
data.tar.gz: beefa0fc58aa4b3d2ac8e37b0a2280fc887de3f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50ba210c9c438f7d8fe3e5440eddacdb9a783b8efae1b1fdb40231656aa7c4560ec55cfae0cf2738de8d9c81944232d2af2d242e332a474a18d6d7c726a41813
|
7
|
+
data.tar.gz: 29b86820af3535352420b9f275ece2e1aff2c35a27515c39cae3e89d96014966f3b5f72f806b231eb92cb437fe581b9ab331081926dfbcefafc39d7ae82cbe03
|
data/README.md
CHANGED
@@ -35,7 +35,6 @@ Or install it yourself as:
|
|
35
35
|
|
36
36
|
* slim http://slim-lang.com/
|
37
37
|
* sass-rails https://github.com/rails/sass-rails
|
38
|
-
* compass-rails https://github.com/Compass/compass-rails
|
39
38
|
* coffee-rails https://github.com/rails/coffee-rails
|
40
39
|
* therubyracer https://github.com/cowboyd/therubyracer
|
41
40
|
* uglifier https://github.com/lautis/uglifier
|
@@ -60,10 +59,10 @@ bootstrap-sass https://github.com/twbs/bootstrap-sass
|
|
60
59
|
Semantic UI https://github.com/doabit/semantic-ui-sass
|
61
60
|
|
62
61
|
gem 'semantic-ui-sass'
|
63
|
-
|
62
|
+
|
64
63
|
@import "semantic-ui"
|
65
64
|
#= require semantic-ui
|
66
|
-
|
65
|
+
|
67
66
|
|
68
67
|
Backbone & Underscore https://github.com/codebrew/backbone-rails
|
69
68
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = 'h2ocube_rails_assets'
|
7
|
-
gem.version = '0.
|
7
|
+
gem.version = '0.3.0'
|
8
8
|
gem.authors = ['Ben']
|
9
9
|
gem.email = ['ben@h2ocube.com']
|
10
10
|
gem.description = %q{Just an assets collection}
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |gem|
|
|
19
19
|
|
20
20
|
gem.add_dependency 'rails', '> 4.1'
|
21
21
|
gem.add_dependency 'sass-rails'
|
22
|
-
%w(slim
|
22
|
+
%w(slim coffee-rails therubyracer uglifier quiet_assets).each{ |g| gem.add_dependency g }
|
23
23
|
|
24
24
|
%w(minitest capybara rubyzip vendorer).each{ |g| gem.add_development_dependency g }
|
25
25
|
end
|
data/lib/h2ocube_rails_assets.rb
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
if defined?(Rails)
|
2
|
-
%w(slim sass-rails
|
2
|
+
%w(slim sass-rails coffee-rails v8 uglifier quiet_assets).each{ |g| require g }
|
3
3
|
|
4
4
|
module H2ocubeRailsAssets
|
5
5
|
class Railtie < Rails::Railtie
|
6
6
|
PATH = File.dirname(__FILE__)
|
7
7
|
initializer 'h2ocube_rails_assets.require_dependency' do |app|
|
8
8
|
app.config.assets.paths += Dir[File.join(PATH, '../vendor/assets/*')]
|
9
|
-
app.config.assets.paths << Compass::Frameworks['compass'].stylesheets_directory
|
10
9
|
end
|
11
10
|
end
|
12
11
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: h2ocube_rails_assets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -52,20 +52,6 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: compass-rails
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :runtime
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
56
|
name: coffee-rails
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -196,7 +182,6 @@ files:
|
|
196
182
|
- h2ocube_rails_assets.sublime-project
|
197
183
|
- lib/h2ocube_rails_assets.rb
|
198
184
|
- test/assets_test.rb
|
199
|
-
- test/compass_test.rb
|
200
185
|
- test/dummy/Rakefile
|
201
186
|
- test/dummy/app/assets/javascripts/coffee.coffee
|
202
187
|
- test/dummy/app/assets/javascripts/jquery-turbolinks_test.js
|
@@ -258,7 +243,6 @@ specification_version: 4
|
|
258
243
|
summary: Just an assets collection
|
259
244
|
test_files:
|
260
245
|
- test/assets_test.rb
|
261
|
-
- test/compass_test.rb
|
262
246
|
- test/dummy/Rakefile
|
263
247
|
- test/dummy/app/assets/javascripts/coffee.coffee
|
264
248
|
- test/dummy/app/assets/javascripts/jquery-turbolinks_test.js
|