interval-braining-ui-asset-pack 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d3deaba77b0dfc546bd3c3cbb5b1bd5b84c5024b
4
+ data.tar.gz: 082d43d34ef122431e008cb9b100d1b5fd8f9ec7
5
+ SHA512:
6
+ metadata.gz: ed746e76a50e5d53b722112eab0318fdf699501ed5d4057f8379c3f8c695e02f2b31fe3d1b12ad94643018e6a76d3f9be0691f27d511f4b714c8362fa5750acb
7
+ data.tar.gz: fad8eed7e1a25f018cf89d8ab991721eb89ec18678fa2e497e06ddad3efe3fd2549f10d2ced3601eedd1ca0be7e368afc40f61860e5318598c7e30aebb753aff
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2014 IntervalBraining
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.
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # AssetPack
2
+
3
+ Bower-maintained collection of front-end vendor assets used by IntervalBraining
4
+ UI.
data/Rakefile ADDED
@@ -0,0 +1,15 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ Bundler::GemHelper.install_tasks
8
+
9
+ # Hack to install bower-rails rake tasks in engine env
10
+ begin
11
+ require 'bower-rails/railtie'
12
+ instance_eval(&BowerRails::Railtie.rake_tasks.first)
13
+ rescue LoadError
14
+ puts 'Could not find bower-rails. Skipping'
15
+ end
@@ -0,0 +1,11 @@
1
+ module AssetPack
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace AssetPack
4
+
5
+ initializer 'asset_pack.assets.precompile' do |app|
6
+ app.config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
7
+ app.config.assets.precompile += %w[.svg .eot .woff .ttf]
8
+ Mime::Type.register 'font/opentype', :font
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module AssetPack
2
+ VERSION = '0.0.1'
3
+ end
data/lib/asset_pack.rb ADDED
@@ -0,0 +1,4 @@
1
+ module AssetPack; end
2
+
3
+ require 'asset_pack/version'
4
+ require 'asset_pack/engine'
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: interval-braining-ui-asset-pack
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tristan Crockett
8
+ - Danny Guinther
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-07-29 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '4.0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '4.0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: bower-rails
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '0.8'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '0.8'
42
+ description: Collection of front-end vendor assets used by IntervalBraining
43
+ email:
44
+ - dev@intervalbraining.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - LICENSE
50
+ - README.md
51
+ - Rakefile
52
+ - lib/asset_pack.rb
53
+ - lib/asset_pack/engine.rb
54
+ - lib/asset_pack/version.rb
55
+ homepage: https://github.com/interval-braining/asset-pack
56
+ licenses:
57
+ - MIT
58
+ metadata: {}
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubyforge_project:
75
+ rubygems_version: 2.2.2
76
+ signing_key:
77
+ specification_version: 4
78
+ summary: Collection of vendor assets used by IntervalBraining
79
+ test_files: []
80
+ has_rdoc: