am-commons 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dc1071108bf696e84138672b97a73bf436324961
4
+ data.tar.gz: c62b3e83748c3b02908eb87ae996ca76d6c903f8
5
+ SHA512:
6
+ metadata.gz: 28198a896a86a1e26b81d1fc0f8b0f6ab9d81f050e0256ed88c71d88c49bdb8022aeba66fd4bcd26a2e49e440598458a95531eb33d970eb43fb87de2f5c6a6ec
7
+ data.tar.gz: eec6202a3ed6ec17ec50fc2d727cccf5f975e55c3e84044f225036fa9477f116b0763e90b27531ccd4f80f110334e8b80e640c185efbe1dbfb1c5181f5590460
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"
Binary file
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/am-commons/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Emiliano Mongelo"]
6
+ gem.email = ["emiliano.mongelo@almundo.com"]
7
+ gem.description = %q{AM-Commons - Sass/Compass Framework}
8
+ gem.summary = %q{AM-Commons - Sass/Compass Framework. Almundo.com}
9
+ gem.homepage = "http://www.almundo.com/"
10
+
11
+ gem.has_rdoc = false
12
+ gem.rubygems_version = "1.3.5"
13
+ gem.files = `git ls-files`.split($\)
14
+ gem.name = "am-commons"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = AmCommons::VERSION
17
+
18
+ gem.add_dependency("compass", [">= 0.12.1"])
19
+ end
@@ -0,0 +1,3 @@
1
+ module AmCommons
2
+ VERSION = "0.0.1"
3
+ end
data/lib/am-commons.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'compass'
2
+ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
3
+ Compass::Frameworks.register('am-commons', :path => extension_path)
data/package.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "name": "am-commons",
3
+ "version": "0.0.1",
4
+ }
@@ -0,0 +1,7 @@
1
+ // ### Sass
2
+
3
+ // #### Import
4
+
5
+ @import "am-commons/utils";
6
+ @import "am-commons/components";
7
+ @import "am-commons/am";
@@ -0,0 +1,5 @@
1
+ // ### Sass
2
+
3
+ // #### Import
4
+
5
+ @import "am/variables";
@@ -0,0 +1 @@
1
+ @import "components/example";
@@ -0,0 +1,5 @@
1
+ // ### Sass
2
+
3
+ // #### Import
4
+
5
+ @import "utils/example";
File without changes
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ discover :all
2
+
3
+ description "am-commons. Framework CSS/Sass."
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: am-commons
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Emiliano Mongelo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-05 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: AM-Commons - Sass/Compass Framework
28
+ email:
29
+ - emiliano.mongelo@almundo.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - Gemfile
35
+ - LICENSE
36
+ - README.md
37
+ - Rakefile
38
+ - am-commons-0.0.1.gem
39
+ - am-commons.gemspec
40
+ - lib/am-commons.rb
41
+ - lib/am-commons/version.rb
42
+ - package.json
43
+ - stylesheets/_am-commons.scss
44
+ - stylesheets/am-commons/_am.scss
45
+ - stylesheets/am-commons/_components.scss
46
+ - stylesheets/am-commons/_utils.scss
47
+ - stylesheets/am-commons/am/_variables.scss
48
+ - stylesheets/am-commons/components/_example.scss
49
+ - stylesheets/am-commons/utils/_example.scss
50
+ - templates/project/manifest.rb
51
+ homepage: http://www.almundo.com/
52
+ licenses: []
53
+ metadata: {}
54
+ post_install_message:
55
+ rdoc_options: []
56
+ require_paths:
57
+ - lib
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - '>='
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ requirements: []
69
+ rubyforge_project:
70
+ rubygems_version: 2.0.14
71
+ signing_key:
72
+ specification_version: 4
73
+ summary: AM-Commons - Sass/Compass Framework. Almundo.com
74
+ test_files: []