centurion-framework 3.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/centurion.rb +16 -0
  3. metadata +59 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4e4c7aafd1648896283908a16ee0a21c28e08f87
4
+ data.tar.gz: 17367cbec903f85b6a511c7688dde00d4b986d50
5
+ SHA512:
6
+ metadata.gz: 1e353c9566fd506e4a2cf4be52db174f51b7cf8129bb43c1b01da1f9293b3b5c4779beca976641ed2df933fba8bd03ee5361bf2ef83c5b92a563ecf77425467a
7
+ data.tar.gz: 0dc7b46b31ca15d761b7685e8128a1f1b4abd33610c98c4343aa0a65d3ef6bc1d6de6a2dec9d6da2e1879fabdd4264ff9dacd28d42e2cd8745e492e41ae9a3b8
data/lib/centurion.rb ADDED
@@ -0,0 +1,16 @@
1
+ # find the 'lib' directory and also the stylesheets directory
2
+ base_directory = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+ stylesheets_path = File.join(base_directory, 'sass')
4
+
5
+ # if using compass, register as a compass extension
6
+ if (defined? Compass)
7
+ Compass::Frameworks.register('centurion', :stylesheets_directory => stylesheets_path)
8
+ else
9
+ # if not, register on the Sass path via the environment.
10
+ if ENV.has_key?("SASS_PATH")
11
+ ENV["SASS_PATH"] = ENV["SASS_PATH"] + File::PATH_SEPARATOR + stylesheets_path
12
+ else
13
+ ENV["SASS_PATH"] = stylesheets_path
14
+ end
15
+ end
16
+
metadata ADDED
@@ -0,0 +1,59 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: centurion-framework
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.5.2
5
+ platform: ruby
6
+ authors:
7
+ - Justin Hough
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '3.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '3.4'
27
+ description: Centurion is a web-based framework for rapid prototyping and provides
28
+ a core for building larger web projects
29
+ email: <justin@justinhough.com>
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - lib/centurion.rb
35
+ homepage: http://www.centurionframework.com
36
+ licenses:
37
+ - GPL
38
+ metadata: {}
39
+ post_install_message:
40
+ rdoc_options: []
41
+ require_paths:
42
+ - lib
43
+ required_ruby_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ required_rubygems_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ requirements: []
54
+ rubyforge_project:
55
+ rubygems_version: 2.2.2
56
+ signing_key:
57
+ specification_version: 4
58
+ summary: Centurion is a framework built with Sass
59
+ test_files: []