polar-express 0.0.3 → 0.0.4

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: 1c4a4197fc73a80fb9460675e87168a836b75de0
4
- data.tar.gz: 834f48c1713947bcfd4a4ceaad9a9f42546e4854
3
+ metadata.gz: ae4e1c2c3a83041c3b123d74a7b62dca5318b56e
4
+ data.tar.gz: 61a706de14eb75388e246e173e7240e50fe56177
5
5
  SHA512:
6
- metadata.gz: 669e399942eac4336681061f44829f8f26a417a975777cfda6f6ee4585336a269e3249a3dcf332eb33d189c48a6d3bb9f1d310c383275b854b71b9084fb13315
7
- data.tar.gz: dd04fcb5b561cac65a67fffbd002ea792d477ff944ad30535531ae4ac81985b1029ea9193f3806c5936aa0a5f9038622a1cc847c78581afe2d2710d2b4da11c4
6
+ metadata.gz: 4abc616790b68692ba376ed13bc464d9cfdb973d66391bbe007e8ed56f1ed96ff17c363c060210a9e43173da6d575da357f1e0afaa29faae1c4e4ed2ddc6e787
7
+ data.tar.gz: 3aed5f364c4e5d645f951e369436eeabc583c408e75b9a2e76eddcb03b27c61881694157e21780b34bde4e73cf9f20fcb9a2b3e3388a56858108427b6cda5906
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in my_new_gem.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,20 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'polar-express/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "polar-express"
8
+ spec.version = PolarExpress::VERSION
9
+ spec.authors = ["Daniel Boggs"]
10
+ spec.email = ["daniel.boggs@gmail.com"]
11
+ spec.description = "Graceful integration of inuit.css into the Rails asset pipeline"
12
+ spec.summary = "Graceful integration of inuit.css into the Rails asset pipeline"
13
+ spec.homepage = "https://github.com/danielboggs/polar-express"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_dependency "railties", "~> 3.1"
20
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polar-express
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Boggs
@@ -31,10 +31,19 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - .gitignore
35
+ - Gemfile
36
+ - README.md
37
+ - Rakefile
38
+ - lib/generators/inuitcss/install/USAGE
34
39
  - lib/generators/inuitcss/install/install_generator.rb
35
40
  - lib/generators/inuitcss/install/templates/inuit.css.scss
36
- - lib/generators/inuitcss/install/USAGE
37
41
  - lib/polar-express.rb
42
+ - polar-express.gemspec
43
+ - vendor/assets/stylesheets/CHANGELOG.md
44
+ - vendor/assets/stylesheets/CONTRIBUTING.md
45
+ - vendor/assets/stylesheets/LICENSE
46
+ - vendor/assets/stylesheets/README.md
38
47
  - vendor/assets/stylesheets/_defaults.scss
39
48
  - vendor/assets/stylesheets/_inuit.scss
40
49
  - vendor/assets/stylesheets/base/_code.scss
@@ -47,9 +56,7 @@ files:
47
56
  - vendor/assets/stylesheets/base/_quotes.scss
48
57
  - vendor/assets/stylesheets/base/_smallprint.scss
49
58
  - vendor/assets/stylesheets/base/_tables.scss
50
- - vendor/assets/stylesheets/CHANGELOG.md
51
59
  - vendor/assets/stylesheets/component.json
52
- - vendor/assets/stylesheets/CONTRIBUTING.md
53
60
  - vendor/assets/stylesheets/generic/_brand.scss
54
61
  - vendor/assets/stylesheets/generic/_clearfix.scss
55
62
  - vendor/assets/stylesheets/generic/_debug.scss
@@ -61,7 +68,6 @@ files:
61
68
  - vendor/assets/stylesheets/generic/_reset.scss
62
69
  - vendor/assets/stylesheets/generic/_shared.scss
63
70
  - vendor/assets/stylesheets/generic/_widths.scss
64
- - vendor/assets/stylesheets/LICENSE
65
71
  - vendor/assets/stylesheets/objects/_arrows.scss
66
72
  - vendor/assets/stylesheets/objects/_beautons.scss
67
73
  - vendor/assets/stylesheets/objects/_block-list.scss
@@ -86,12 +92,10 @@ files:
86
92
  - vendor/assets/stylesheets/objects/_sprite.scss
87
93
  - vendor/assets/stylesheets/objects/_stats.scss
88
94
  - vendor/assets/stylesheets/objects/_this-or-this.scss
89
- - vendor/assets/stylesheets/README.md
90
95
  - vendor/assets/stylesheets/style.scss
91
- - MIT-LICENSE
92
- - README.md
93
96
  homepage: https://github.com/danielboggs/polar-express
94
- licenses: []
97
+ licenses:
98
+ - MIT
95
99
  metadata: {}
96
100
  post_install_message:
97
101
  rdoc_options: []
data/MIT-LICENSE DELETED
@@ -1,19 +0,0 @@
1
- Copyright (c) 2013 Daniel Boggs
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.