giant-ui 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: a75d509397b517f5b78918e211b394417f9369cc
4
+ data.tar.gz: 254b5a362c73efb9459451ce204e3dec50962394
5
+ SHA512:
6
+ metadata.gz: f904244f44d23acf73426680d2b04062ec2ee04ff2af5ca2273b3dad1b4d9476c63bb5271fd51240bc6e8693341dd604dc03a11f2a739a6c9f7b9c4d57efd177
7
+ data.tar.gz: ef387338909cc0603b7b8478ef9cd35bc25d1032f1b59448374cd994b206023ad336c0a6e874ac3792f413f3c3e07f9d52940bb91150ce58155701c37df00de2
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ giant-ui-*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in am-commons.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
File without changes
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
data/giant-ui.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/giant-ui/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+
6
+ gem.authors = ["almundo team"]
7
+ gem.email = ["ux@almundo.com"]
8
+
9
+ gem.description = %q{Giant-UI - GUI Sass Framework}
10
+ gem.summary = %q{Giant-UI - GUI Sass Framework. almundo.com}
11
+ gem.homepage = "http://www.almundo.com/"
12
+
13
+ gem.has_rdoc = false
14
+ gem.rubygems_version = "1.3.5"
15
+ gem.files = `git ls-files`.split($\)
16
+ gem.name = "giant-ui"
17
+ gem.require_paths = ["lib"]
18
+ gem.version = GiantUi::VERSION
19
+
20
+ gem.post_install_message = "\n\n##################################################\n## Giant-UI - GUI Sass Framework\n\n## Versión: " + GiantUi::VERSION + "\n## Agregar a config.rb: \nrequire 'giant-ui'\ngem 'giant-ui', '~> "+ GiantUi::VERSION + "' \n##################################################\n\n"
21
+
22
+ gem.add_dependency("compass", [">= 0.12.1"])
23
+ end
data/lib/giant-ui.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'compass'
2
+ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
3
+ Compass::Frameworks.register('giant-ui', :path => extension_path)
@@ -0,0 +1,3 @@
1
+ module GiantUi
2
+ VERSION = "0.0.1"
3
+ end
data/package.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "name": "giant-ui",
3
+ "version": "0.0.1",
4
+ }
@@ -0,0 +1,4 @@
1
+
2
+ //---------- GIANT UI ----------
3
+
4
+ // @import "giant-ui/mixins";
@@ -0,0 +1,2 @@
1
+
2
+ //--------- MIXINS --------
@@ -0,0 +1,3 @@
1
+ discover :all
2
+
3
+ description "Giant UI - GUI Sass Framework"
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: giant-ui
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - almundo team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-11-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: compass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.12.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.12.1
27
+ description: Giant-UI - GUI Sass Framework
28
+ email:
29
+ - ux@almundo.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - .gitignore
35
+ - Gemfile
36
+ - LICENSE
37
+ - README.md
38
+ - Rakefile
39
+ - giant-ui.gemspec
40
+ - lib/giant-ui.rb
41
+ - lib/giant-ui/version.rb
42
+ - package.json
43
+ - stylesheets/_gui.scss
44
+ - stylesheets/giant-ui/_mixins.scss
45
+ - templates/project/manifest.rb
46
+ homepage: http://www.almundo.com/
47
+ licenses: []
48
+ metadata: {}
49
+ post_install_message: "\n\n##################################################\n##
50
+ Giant-UI - GUI Sass Framework\n\n## Versión: 0.0.1\n## Agregar a config.rb: \nrequire
51
+ 'giant-ui'\ngem 'giant-ui', '~> 0.0.1' \n##################################################\n\n"
52
+ rdoc_options: []
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - '>='
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ requirements: []
66
+ rubyforge_project:
67
+ rubygems_version: 2.0.14
68
+ signing_key:
69
+ specification_version: 4
70
+ summary: Giant-UI - GUI Sass Framework. almundo.com
71
+ test_files: []