nojiko 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,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4a935bd49beef0cad0a98e5b326dda9adabce5b6
4
+ data.tar.gz: ae761873eebc6d9e7bcbf339eadd0704ea4eef69
5
+ SHA512:
6
+ metadata.gz: 8e42cf51d6cf2ce294537e7fc40262a9c515b80f69fc6594da23fac914a9e2f0f0a92873465b7cb0866f6df88de19e0141749033cebe92d0d2a1d81d1da987ff
7
+ data.tar.gz: 67b00534a1a22b50dd029dc92919f3302039a01765e62b78a71b9bf843e5410ce3bfc5e731bdb590f67d1de6c894904bfd5d3cd93a84d273212c8107ac0929d2
@@ -0,0 +1,38 @@
1
+ # 一些编辑器生成的临时文件
2
+ *~
3
+ +.#*
4
+ \#*\#
5
+
6
+ # 日志文件
7
+ *.log
8
+
9
+ # 临时文件存放目录
10
+ .tmp/
11
+
12
+ # windows 中存放文件说明信息的文件,一般是供开发人员自己标记项目文件用的,不用推送
13
+ descript.ion
14
+
15
+ # windows 的缩略图文件
16
+ Thumbs.db
17
+
18
+ # node.js 的模块存储目录
19
+ node_modules/
20
+
21
+ # sea.js 的模块存储目录
22
+ sea-modules/
23
+
24
+ # sass/scss 的编译缓存文件存储目录
25
+ .sass-cache/
26
+
27
+ # bower 的包存储目录
28
+ bower_components/
29
+
30
+ # 大多静态站点生成工具默认存放生成页面的目录
31
+ _site/
32
+
33
+ # gem 项目会在根目录生成安装包
34
+ /*.gem
35
+
36
+ #-----------------------------
37
+ # 项目相关
38
+ #-----------------------------
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Bios Sun
2
+
3
+ Permission is hereby granted, free of charge, to any person
4
+ obtaining a copy of this software and associated documentation
5
+ files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use,
7
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the
9
+ Software is furnished to do so, subject to the following
10
+ conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,10 @@
1
+ Nojiko
2
+ =======
3
+
4
+ Nojiko 是一个 Compass 扩展库,提供有:
5
+
6
+
7
+ - 一些 scss 混入类
8
+ - 一个 reset
9
+ - 一套基础全局样式
10
+ - 一套栅格系统
@@ -0,0 +1,7 @@
1
+ require 'compass'
2
+
3
+ base_directory = File.join(File.dirname(__FILE__), '..')
4
+ stylesheets_dir = File.join(base_directory, 'stylesheets')
5
+
6
+ Compass::Frameworks.register('nojiko',
7
+ :stylesheets_directory => stylesheets_dir)
@@ -0,0 +1,18 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "nojiko"
5
+ s.version = "0.0.1"
6
+ s.authors = ["Bios Sun"]
7
+ s.email = 'biossun@gmail.com'
8
+ s.description = "这是一个基础的 Compass 扩展库,可以帮助你快速开始创建一个网站。它会为你提供一组混入类,一个 reset,一套基础全局样式,以及一套栅格系统。"
9
+ s.summary = "这是一个基础的 Compass 扩展库,可以帮助你快速开始创建一个网站。"
10
+ s.homepage = "https://github.com/BiosSun/nojiko"
11
+ s.license = 'MIT'
12
+
13
+ s.files = `git ls-files`.split("\n")
14
+ s.test_files = `git ls-files -- test/*`.split("\n")
15
+
16
+ s.add_dependency 'sass', '~> 3.3'
17
+ s.add_dependency 'compass', '~> 1.0.0.rc.1'
18
+ end
@@ -0,0 +1,11 @@
1
+ @charset "utf-8";
2
+
3
+ @mixin print-nojiko-banner() {
4
+ /*!
5
+ * This is Nojiko.
6
+ * @version: 0.0.1
7
+ * @author: Bios Sun
8
+ * @license: MIT
9
+ * @url: http://github.com/biossun/nojiko
10
+ */
11
+ }
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nojiko
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Bios Sun
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-08-05 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.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: compass
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.0.rc.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.0.0.rc.1
41
+ description: "这是一个基础的 Compass 扩展库,可以帮助你快速开始创建一个网站。它会为你提供一组混入类,一个 reset,一套基础全局样式,以及一套栅格系统。"
42
+ email: biossun@gmail.com
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - ".gitignore"
48
+ - LICENSE-MIT
49
+ - README.md
50
+ - lib/nojiko.rb
51
+ - nojiko.gemspec
52
+ - stylesheets/_nojiko.scss
53
+ homepage: https://github.com/BiosSun/nojiko
54
+ licenses:
55
+ - MIT
56
+ metadata: {}
57
+ post_install_message:
58
+ rdoc_options: []
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ requirements: []
72
+ rubyforge_project:
73
+ rubygems_version: 2.2.2
74
+ signing_key:
75
+ specification_version: 4
76
+ summary: "这是一个基础的 Compass 扩展库,可以帮助你快速开始创建一个网站。"
77
+ test_files: []