semantic-ui-sass 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +51 -0
- data/Rakefile +5 -0
- data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.svg +450 -0
- data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.otf +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +399 -0
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-large.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small.gif +0 -0
- data/app/assets/javascripts/semantic-ui.js +20 -0
- data/app/assets/javascripts/semantic-ui/accordion.js +419 -0
- data/app/assets/javascripts/semantic-ui/behavior/api.js +638 -0
- data/app/assets/javascripts/semantic-ui/behavior/colorize.js +270 -0
- data/app/assets/javascripts/semantic-ui/behavior/form.js +702 -0
- data/app/assets/javascripts/semantic-ui/behavior/state.js +725 -0
- data/app/assets/javascripts/semantic-ui/chatroom.js +769 -0
- data/app/assets/javascripts/semantic-ui/checkbox.js +344 -0
- data/app/assets/javascripts/semantic-ui/dimmer.js +564 -0
- data/app/assets/javascripts/semantic-ui/dropdown.js +724 -0
- data/app/assets/javascripts/semantic-ui/modal.js +553 -0
- data/app/assets/javascripts/semantic-ui/nag.js +545 -0
- data/app/assets/javascripts/semantic-ui/popup.js +727 -0
- data/app/assets/javascripts/semantic-ui/rating.js +403 -0
- data/app/assets/javascripts/semantic-ui/search.js +772 -0
- data/app/assets/javascripts/semantic-ui/shape.js +778 -0
- data/app/assets/javascripts/semantic-ui/sidebar.js +490 -0
- data/app/assets/javascripts/semantic-ui/tab.js +689 -0
- data/app/assets/javascripts/semantic-ui/transition.js +654 -0
- data/app/assets/javascripts/semantic-ui/video.js +457 -0
- data/app/assets/stylesheets/semantic-ui.scss +4 -0
- data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +77 -0
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +569 -0
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +643 -0
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +1767 -0
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +347 -0
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +524 -0
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +12 -0
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +479 -0
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1187 -0
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +199 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +342 -0
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +772 -0
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +181 -0
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +338 -0
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +827 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +185 -0
- data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +352 -0
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +464 -0
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +293 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +199 -0
- data/app/assets/stylesheets/semantic-ui/modules/_all.scss +16 -0
- data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +281 -0
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +481 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +236 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +548 -0
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +217 -0
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +173 -0
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +255 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +179 -0
- data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +365 -0
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +273 -0
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +113 -0
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +150 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +63 -0
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1096 -0
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +98 -0
- data/app/assets/stylesheets/semantic-ui/views/_all.scss +5 -0
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +221 -0
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +152 -0
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +651 -0
- data/app/assets/stylesheets/semantic-ui/views/_list.scss +555 -0
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +27 -0
- data/lib/semantic/ui/sass.rb +10 -0
- data/lib/semantic/ui/sass/engine.rb +13 -0
- data/lib/semantic/ui/sass/version.rb +8 -0
- data/semantic-ui-sass.gemspec +24 -0
- data/tasks/converter.rb +237 -0
- metadata +177 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
/*
|
2
|
+
* # Statistic
|
3
|
+
*
|
4
|
+
*
|
5
|
+
* Copyright 2013 Contributors
|
6
|
+
* Released under the MIT license
|
7
|
+
* http://opensource.org/licenses/MIT
|
8
|
+
*
|
9
|
+
* Released: Aug 20, 2013
|
10
|
+
*/
|
11
|
+
/*******************************
|
12
|
+
Statistic
|
13
|
+
*******************************/
|
14
|
+
.ui.statistic {
|
15
|
+
text-align: center;
|
16
|
+
}
|
17
|
+
/*******************************
|
18
|
+
Content
|
19
|
+
*******************************/
|
20
|
+
.ui.statistic > .number {
|
21
|
+
font-size: 4em;
|
22
|
+
font-weight: bold;
|
23
|
+
color: rgba(0, 0, 0, 0.7);
|
24
|
+
}
|
25
|
+
.ui.statistic > .description {
|
26
|
+
opacity: 0.8;
|
27
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module Semantic
|
2
|
+
module Ui
|
3
|
+
module Sass
|
4
|
+
module Rails
|
5
|
+
class Engine < ::Rails::Engine
|
6
|
+
initializer "semantic-ui-sass.assets.precompile" do |app|
|
7
|
+
app.config.assets.precompile << %r(semantic-ui\/(basic\.)*icons\.(?:eot|svg|ttf|woff)$)
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'semantic/ui/sass/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "semantic-ui-sass"
|
8
|
+
spec.version = Semantic::Ui::Sass::VERSION
|
9
|
+
spec.authors = ["doabit"]
|
10
|
+
spec.email = ["doinsist@gmail.com"]
|
11
|
+
spec.description = %q{Semantic UI, converted to Sass and ready to drop into Rails.}
|
12
|
+
spec.summary = %q{Semantic UI, converted to Sass and ready to drop into Rails.}
|
13
|
+
spec.homepage = "http://github.com/doabit/semantic-ui-sass"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_runtime_dependency 'sass', '~> 3.2'
|
24
|
+
end
|
data/tasks/converter.rb
ADDED
@@ -0,0 +1,237 @@
|
|
1
|
+
# Based on convert script from vwall/compass-twitter-bootstrap gem.
|
2
|
+
# https://github.com/vwall/compass-twitter-bootstrap/blob/master/build/convert.rb
|
3
|
+
|
4
|
+
require 'open-uri'
|
5
|
+
require 'json'
|
6
|
+
require 'fileutils'
|
7
|
+
|
8
|
+
class Converter
|
9
|
+
|
10
|
+
def initialize
|
11
|
+
@branch_sha = get_tree_sha
|
12
|
+
@paths = ['collections', 'elements', 'views', 'modules']
|
13
|
+
@save_at = { js: 'app/assets/javascripts/semantic-ui',
|
14
|
+
scss: 'app/assets/stylesheets/semantic-ui',
|
15
|
+
images: 'app/assets/images/semantic-ui',
|
16
|
+
fonts: 'app/assets/fonts/semantic-ui' }
|
17
|
+
end
|
18
|
+
|
19
|
+
def process
|
20
|
+
process_stylesheets_assets
|
21
|
+
process_javascript_assets
|
22
|
+
process_images_and_fonts_assets
|
23
|
+
store_version
|
24
|
+
end
|
25
|
+
|
26
|
+
def process_stylesheets_assets
|
27
|
+
main_content = ''
|
28
|
+
get_less_paths.each do |path, sha|
|
29
|
+
content = ''
|
30
|
+
get_less_files(sha).each do |name|
|
31
|
+
file_name = name.gsub('.less', '')
|
32
|
+
|
33
|
+
if name.include?('.less') && @paths.include?(path)
|
34
|
+
file = open_git_file("https://raw.github.com/jlukic/Semantic-UI/master/src/#{path}/#{name}")
|
35
|
+
file = convert(file)
|
36
|
+
save_file(name, file, path)
|
37
|
+
content += "@import '#{file_name}';\n"
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
|
+
if @paths.include?(path)
|
43
|
+
save_file('all', content, path)
|
44
|
+
main_content += "@import 'semantic-ui/#{path}/all';\n";
|
45
|
+
end
|
46
|
+
end
|
47
|
+
file = "app/assets/stylesheets/semantic-ui.scss"
|
48
|
+
f = File.open(file, "w+")
|
49
|
+
f.write(main_content)
|
50
|
+
f.close
|
51
|
+
end
|
52
|
+
|
53
|
+
def process_javascript_assets
|
54
|
+
get_less_paths.each do |path, sha|
|
55
|
+
content = ''
|
56
|
+
get_less_files(sha).each do |name|
|
57
|
+
file_name = name.gsub('.js', '')
|
58
|
+
# Copy javascripts
|
59
|
+
if path == 'modules' && name.include?('.js')
|
60
|
+
file = open_git_file("https://raw.github.com/jlukic/Semantic-UI/master/src/#{path}/#{name}")
|
61
|
+
save_file(name, file, path, 'js')
|
62
|
+
content += "//= require semantic-ui/#{file_name}\n"
|
63
|
+
end
|
64
|
+
end
|
65
|
+
if path == 'modules'
|
66
|
+
file = "app/assets/javascripts/semantic-ui.js"
|
67
|
+
f = File.open(file, "w+")
|
68
|
+
f.write(content)
|
69
|
+
f.close
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
def process_images_and_fonts_assets
|
75
|
+
get_less_paths.each do |path, sha|
|
76
|
+
|
77
|
+
get_less_files(sha).each do |name|
|
78
|
+
file_name = name.gsub('.less', '')
|
79
|
+
if path == 'images' || path == 'fonts'
|
80
|
+
file = open_git_file("https://raw.github.com/jlukic/Semantic-UI/master/src/#{path}/#{name}")
|
81
|
+
save_file(name, file, path, path)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
87
|
+
|
88
|
+
|
89
|
+
private
|
90
|
+
|
91
|
+
# Get the sha of less branch
|
92
|
+
def get_tree_sha
|
93
|
+
sha = nil
|
94
|
+
trees = open('https://api.github.com/repos/jlukic/Semantic-UI/git/trees/master').read
|
95
|
+
trees = JSON.parse trees
|
96
|
+
trees['tree'].find{|t| t['path'] == 'src'}['sha']
|
97
|
+
end
|
98
|
+
|
99
|
+
def get_less_paths
|
100
|
+
paths = open("https://api.github.com/repos/jlukic/Semantic-UI/git/trees/#{get_tree_sha}").read
|
101
|
+
paths = JSON.parse paths
|
102
|
+
paths['tree'].select{|f| f['type'] == 'tree' }.map{|f| [f['path'], f['sha']] }
|
103
|
+
end
|
104
|
+
|
105
|
+
def get_less_files(sha)
|
106
|
+
files = open("https://api.github.com/repos/jlukic/Semantic-UI/git/trees/#{sha}").read
|
107
|
+
files = JSON.parse files
|
108
|
+
files['tree'].select{|f| f['type'] == 'blob' }.map{|f| f['path'] }
|
109
|
+
end
|
110
|
+
|
111
|
+
|
112
|
+
def convert(file)
|
113
|
+
file = replace_interpolation(file)
|
114
|
+
file = replace_vars(file)
|
115
|
+
file = replace_fonts(file)
|
116
|
+
# file = replace_font_family(file)
|
117
|
+
file = replace_fonts_url(file)
|
118
|
+
file = replace_grads(file)
|
119
|
+
file = replace_mixins(file)
|
120
|
+
file = replace_less_extend(file)
|
121
|
+
file = replace_includes(file)
|
122
|
+
file = replace_spin(file)
|
123
|
+
file = replace_opacity(file)
|
124
|
+
file = replace_image_urls(file)
|
125
|
+
file = replace_image_paths(file)
|
126
|
+
file = replace_escaping(file)
|
127
|
+
|
128
|
+
file
|
129
|
+
end
|
130
|
+
|
131
|
+
def open_git_file(file)
|
132
|
+
open(file).read
|
133
|
+
end
|
134
|
+
|
135
|
+
def save_file(name, content, path, type='stylesheets')
|
136
|
+
case type
|
137
|
+
when 'stylesheets'
|
138
|
+
name = name.gsub(/\.less/, '')
|
139
|
+
file = "#{@save_at[:scss]}/#{path}/_#{name}.scss"
|
140
|
+
when 'js', 'images', 'fonts'
|
141
|
+
name = name
|
142
|
+
file = "#{@save_at[type.to_sym]}/#{name}"
|
143
|
+
end
|
144
|
+
dir = File.dirname(file)
|
145
|
+
unless File.directory?(file)
|
146
|
+
FileUtils.mkdir_p(dir)
|
147
|
+
end
|
148
|
+
f = File.open(file, "w+")
|
149
|
+
f.write(content)
|
150
|
+
f.close
|
151
|
+
puts "Saved #{name}\n"
|
152
|
+
end
|
153
|
+
|
154
|
+
def store_version
|
155
|
+
path = 'lib/semantic/ui/sass/version.rb'
|
156
|
+
content = File.read(path).sub(/SEMANTIC_UI_SHA\s*=\s*['"][\w]+['"]/, "SEMANTIC_UI_SHA = '#@branch_sha'")
|
157
|
+
File.open(path, 'w') { |f| f.write(content) }
|
158
|
+
end
|
159
|
+
|
160
|
+
def replace_interpolation(less)
|
161
|
+
less.gsub(/@{([^}]+)}/, '#{$\1}')
|
162
|
+
end
|
163
|
+
|
164
|
+
def replace_vars(less)
|
165
|
+
less = less.dup
|
166
|
+
# skip header comment
|
167
|
+
less =~ %r(\A/\*(.*?)\*/)m
|
168
|
+
from = $~ ? $~.to_s.length : 0
|
169
|
+
less[from..-1] = less[from..-1].
|
170
|
+
gsub(/(?!@mixin|@media|@page|@keyframes|@font-face|@-\w)@/, '$').
|
171
|
+
# variables that would be ignored by gsub above: e.g. @page-header-border-color
|
172
|
+
gsub(/@(page[\w-]+)/, '$\1')
|
173
|
+
less
|
174
|
+
end
|
175
|
+
|
176
|
+
def fix_progress_bar(less)
|
177
|
+
less = less.gsub(/(\$)(-webkit-keyframes progress-bar-stripes)/, '@\2')
|
178
|
+
less = less.gsub(/(\$)(-moz-keyframes)/, '@\2')
|
179
|
+
less = less.gsub(/(\$)(keyframes progress-bar-stripes)/, '@\2')
|
180
|
+
end
|
181
|
+
|
182
|
+
def replace_fonts(less)
|
183
|
+
less.gsub(/#font \> \.([\w-]+)/, '@include ctb-font-\1')
|
184
|
+
end
|
185
|
+
|
186
|
+
def replace_fonts_url(less)
|
187
|
+
less.gsub(/url\(\.\.\/fonts\/?(.*?)\)/) {|s| "font-url(\"semantic-ui/#{$1}\")" }
|
188
|
+
end
|
189
|
+
|
190
|
+
def replace_font_family(less)
|
191
|
+
less.gsub(/#font \> #family \> \.([\w-]+)/, '@include ctb-font-family-\1')
|
192
|
+
end
|
193
|
+
|
194
|
+
def replace_grads(less)
|
195
|
+
less.gsub(/#gradient \> \.([\w-]+)/, '@include ctb-gradient-\1')
|
196
|
+
end
|
197
|
+
|
198
|
+
def replace_mixins(less)
|
199
|
+
less.gsub(/^\.([\w-]*)(\(.*\))([\s\{]+)$/, '@mixin \1\2\3')
|
200
|
+
end
|
201
|
+
|
202
|
+
def replace_includes(less)
|
203
|
+
less.gsub(/\.([\w-]*)(\(.*\));?/, '@include ctb-\1\2;')
|
204
|
+
end
|
205
|
+
|
206
|
+
def replace_less_extend(less)
|
207
|
+
less.gsub(/\#(\w+) \> \.([\w-]*)(\(.*\));?/, '@include ctb-\1-\2\3;')
|
208
|
+
end
|
209
|
+
|
210
|
+
def replace_spin(less)
|
211
|
+
less.gsub(/spin/, 'adjust-hue')
|
212
|
+
end
|
213
|
+
|
214
|
+
def replace_opacity(scss)
|
215
|
+
scss.gsub(/\@include opacity\((\d+)\)/) {|s| "@include ctb-opacity(#{$1.to_f / 100})"}
|
216
|
+
end
|
217
|
+
|
218
|
+
def replace_image_urls(less)
|
219
|
+
less.gsub(/url\("?(.*?).gif"?\)/) {|s| "image-url(\"#{$1}.gif\")" }
|
220
|
+
end
|
221
|
+
|
222
|
+
def replace_image_paths(less)
|
223
|
+
less.gsub('../images/', 'semantic-ui/')
|
224
|
+
end
|
225
|
+
|
226
|
+
def replace_escaping(less)
|
227
|
+
less = less.gsub(/\~"([^"]+)"/, '#{\1}') # Get rid of ~ escape
|
228
|
+
less.gsub(/(\W)e\("([^\)]+)"\)/) {|s| "#{$1 if $1 != /\s/}#{$2}"} # Get rid of e escape
|
229
|
+
end
|
230
|
+
|
231
|
+
def insert_default_vars(scss)
|
232
|
+
scss.gsub(/^(\$.+);$/, '\1 !default;')
|
233
|
+
end
|
234
|
+
|
235
|
+
end
|
236
|
+
|
237
|
+
Converter.new.process
|
metadata
ADDED
@@ -0,0 +1,177 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: semantic-ui-sass
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- doabit
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-10-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sass
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.2'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.2'
|
55
|
+
description: Semantic UI, converted to Sass and ready to drop into Rails.
|
56
|
+
email:
|
57
|
+
- doinsist@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- app/assets/fonts/semantic-ui/basic.icons.eot
|
68
|
+
- app/assets/fonts/semantic-ui/basic.icons.svg
|
69
|
+
- app/assets/fonts/semantic-ui/basic.icons.ttf
|
70
|
+
- app/assets/fonts/semantic-ui/basic.icons.woff
|
71
|
+
- app/assets/fonts/semantic-ui/icons.eot
|
72
|
+
- app/assets/fonts/semantic-ui/icons.otf
|
73
|
+
- app/assets/fonts/semantic-ui/icons.svg
|
74
|
+
- app/assets/fonts/semantic-ui/icons.ttf
|
75
|
+
- app/assets/fonts/semantic-ui/icons.woff
|
76
|
+
- app/assets/images/semantic-ui/loader-large-inverted.gif
|
77
|
+
- app/assets/images/semantic-ui/loader-large.gif
|
78
|
+
- app/assets/images/semantic-ui/loader-medium-inverted.gif
|
79
|
+
- app/assets/images/semantic-ui/loader-medium.gif
|
80
|
+
- app/assets/images/semantic-ui/loader-mini-inverted.gif
|
81
|
+
- app/assets/images/semantic-ui/loader-mini.gif
|
82
|
+
- app/assets/images/semantic-ui/loader-small-inverted.gif
|
83
|
+
- app/assets/images/semantic-ui/loader-small.gif
|
84
|
+
- app/assets/javascripts/semantic-ui.js
|
85
|
+
- app/assets/javascripts/semantic-ui/accordion.js
|
86
|
+
- app/assets/javascripts/semantic-ui/behavior/api.js
|
87
|
+
- app/assets/javascripts/semantic-ui/behavior/colorize.js
|
88
|
+
- app/assets/javascripts/semantic-ui/behavior/form.js
|
89
|
+
- app/assets/javascripts/semantic-ui/behavior/state.js
|
90
|
+
- app/assets/javascripts/semantic-ui/chatroom.js
|
91
|
+
- app/assets/javascripts/semantic-ui/checkbox.js
|
92
|
+
- app/assets/javascripts/semantic-ui/dimmer.js
|
93
|
+
- app/assets/javascripts/semantic-ui/dropdown.js
|
94
|
+
- app/assets/javascripts/semantic-ui/modal.js
|
95
|
+
- app/assets/javascripts/semantic-ui/nag.js
|
96
|
+
- app/assets/javascripts/semantic-ui/popup.js
|
97
|
+
- app/assets/javascripts/semantic-ui/rating.js
|
98
|
+
- app/assets/javascripts/semantic-ui/search.js
|
99
|
+
- app/assets/javascripts/semantic-ui/shape.js
|
100
|
+
- app/assets/javascripts/semantic-ui/sidebar.js
|
101
|
+
- app/assets/javascripts/semantic-ui/tab.js
|
102
|
+
- app/assets/javascripts/semantic-ui/transition.js
|
103
|
+
- app/assets/javascripts/semantic-ui/video.js
|
104
|
+
- app/assets/stylesheets/semantic-ui.scss
|
105
|
+
- app/assets/stylesheets/semantic-ui/collections/_all.scss
|
106
|
+
- app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss
|
107
|
+
- app/assets/stylesheets/semantic-ui/collections/_form.scss
|
108
|
+
- app/assets/stylesheets/semantic-ui/collections/_grid.scss
|
109
|
+
- app/assets/stylesheets/semantic-ui/collections/_menu.scss
|
110
|
+
- app/assets/stylesheets/semantic-ui/collections/_message.scss
|
111
|
+
- app/assets/stylesheets/semantic-ui/collections/_table.scss
|
112
|
+
- app/assets/stylesheets/semantic-ui/elements/_all.scss
|
113
|
+
- app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss
|
114
|
+
- app/assets/stylesheets/semantic-ui/elements/_button.scss
|
115
|
+
- app/assets/stylesheets/semantic-ui/elements/_divider.scss
|
116
|
+
- app/assets/stylesheets/semantic-ui/elements/_header.scss
|
117
|
+
- app/assets/stylesheets/semantic-ui/elements/_icon.scss
|
118
|
+
- app/assets/stylesheets/semantic-ui/elements/_image.scss
|
119
|
+
- app/assets/stylesheets/semantic-ui/elements/_input.scss
|
120
|
+
- app/assets/stylesheets/semantic-ui/elements/_label.scss
|
121
|
+
- app/assets/stylesheets/semantic-ui/elements/_loader.scss
|
122
|
+
- app/assets/stylesheets/semantic-ui/elements/_progress.scss
|
123
|
+
- app/assets/stylesheets/semantic-ui/elements/_segment.scss
|
124
|
+
- app/assets/stylesheets/semantic-ui/elements/_step.scss
|
125
|
+
- app/assets/stylesheets/semantic-ui/modules/_accordion.scss
|
126
|
+
- app/assets/stylesheets/semantic-ui/modules/_all.scss
|
127
|
+
- app/assets/stylesheets/semantic-ui/modules/_chatroom.scss
|
128
|
+
- app/assets/stylesheets/semantic-ui/modules/_checkbox.scss
|
129
|
+
- app/assets/stylesheets/semantic-ui/modules/_dimmer.scss
|
130
|
+
- app/assets/stylesheets/semantic-ui/modules/_dropdown.scss
|
131
|
+
- app/assets/stylesheets/semantic-ui/modules/_modal.scss
|
132
|
+
- app/assets/stylesheets/semantic-ui/modules/_nag.scss
|
133
|
+
- app/assets/stylesheets/semantic-ui/modules/_popup.scss
|
134
|
+
- app/assets/stylesheets/semantic-ui/modules/_rating.scss
|
135
|
+
- app/assets/stylesheets/semantic-ui/modules/_reveal.scss
|
136
|
+
- app/assets/stylesheets/semantic-ui/modules/_search.scss
|
137
|
+
- app/assets/stylesheets/semantic-ui/modules/_shape.scss
|
138
|
+
- app/assets/stylesheets/semantic-ui/modules/_sidebar.scss
|
139
|
+
- app/assets/stylesheets/semantic-ui/modules/_tab.scss
|
140
|
+
- app/assets/stylesheets/semantic-ui/modules/_transition.scss
|
141
|
+
- app/assets/stylesheets/semantic-ui/modules/_video.scss
|
142
|
+
- app/assets/stylesheets/semantic-ui/views/_all.scss
|
143
|
+
- app/assets/stylesheets/semantic-ui/views/_comment.scss
|
144
|
+
- app/assets/stylesheets/semantic-ui/views/_feed.scss
|
145
|
+
- app/assets/stylesheets/semantic-ui/views/_item.scss
|
146
|
+
- app/assets/stylesheets/semantic-ui/views/_list.scss
|
147
|
+
- app/assets/stylesheets/semantic-ui/views/_statistic.scss
|
148
|
+
- lib/semantic/ui/sass.rb
|
149
|
+
- lib/semantic/ui/sass/engine.rb
|
150
|
+
- lib/semantic/ui/sass/version.rb
|
151
|
+
- semantic-ui-sass.gemspec
|
152
|
+
- tasks/converter.rb
|
153
|
+
homepage: http://github.com/doabit/semantic-ui-sass
|
154
|
+
licenses:
|
155
|
+
- MIT
|
156
|
+
metadata: {}
|
157
|
+
post_install_message:
|
158
|
+
rdoc_options: []
|
159
|
+
require_paths:
|
160
|
+
- lib
|
161
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - '>='
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
166
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
167
|
+
requirements:
|
168
|
+
- - '>='
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
version: '0'
|
171
|
+
requirements: []
|
172
|
+
rubyforge_project:
|
173
|
+
rubygems_version: 2.0.3
|
174
|
+
signing_key:
|
175
|
+
specification_version: 4
|
176
|
+
summary: Semantic UI, converted to Sass and ready to drop into Rails.
|
177
|
+
test_files: []
|