octopusUI 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.
@@ -0,0 +1,3 @@
1
+ module OctopusUI
2
+ VERSION = "0.0.1"
3
+ end
data/lib/octopusUI.rb ADDED
@@ -0,0 +1,16 @@
1
+ require "octopusUI/version"
2
+
3
+ module OctopusUI
4
+ stylesheets_path = File.expand_path(File.join(File.dirname(__FILE__), '..', 'stylesheets'))
5
+
6
+ ENV['SASS_PATH'] ||= ''
7
+
8
+ begin
9
+ require 'compass'
10
+ Compass::Frameworks.register('octopus', :stylesheets_directory => stylesheets_path)
11
+ rescue LoadError
12
+ end
13
+
14
+ # compass not found, register on the Sass path via the environment.
15
+ ENV['SASS_PATH'] += File::PATH_SEPARATOR + stylesheets_path
16
+ end
@@ -0,0 +1,3 @@
1
+ %octopus{
2
+ z-index:2345;
3
+ }
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: octopusUI
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - octopusUI
14
+ autorequire:
15
+ bindir: exe
16
+ cert_chain: []
17
+
18
+ date: 2017-04-07 00:00:00 Z
19
+ dependencies: []
20
+
21
+ description: octopusUI
22
+ email:
23
+ - ""
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files: []
29
+
30
+ files:
31
+ - lib/octopusUI.rb
32
+ - lib/octopusUI/version.rb
33
+ - stylesheets/_octopus.scss
34
+ homepage: ""
35
+ licenses:
36
+ - MIT
37
+ post_install_message:
38
+ rdoc_options: []
39
+
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ hash: 3
48
+ segments:
49
+ - 0
50
+ version: "0"
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ hash: 3
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ requirements: []
61
+
62
+ rubyforge_project:
63
+ rubygems_version: 1.8.24
64
+ signing_key:
65
+ specification_version: 3
66
+ summary: octopusUI
67
+ test_files: []
68
+