wysihtml5-rails 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,129 @@
1
+ .wysiwyg-font-size-smaller {
2
+ font-size: smaller;
3
+ }
4
+
5
+ .wysiwyg-font-size-larger {
6
+ font-size: larger;
7
+ }
8
+
9
+ .wysiwyg-font-size-xx-large {
10
+ font-size: xx-large;
11
+ }
12
+
13
+ .wysiwyg-font-size-x-large {
14
+ font-size: x-large;
15
+ }
16
+
17
+ .wysiwyg-font-size-large {
18
+ font-size: large;
19
+ }
20
+
21
+ .wysiwyg-font-size-medium {
22
+ font-size: medium;
23
+ }
24
+
25
+ .wysiwyg-font-size-small {
26
+ font-size: small;
27
+ }
28
+
29
+ .wysiwyg-font-size-x-small {
30
+ font-size: x-small;
31
+ }
32
+
33
+ .wysiwyg-font-size-xx-small {
34
+ font-size: xx-small;
35
+ }
36
+
37
+ .wysiwyg-color-black {
38
+ color: black;
39
+ }
40
+
41
+ .wysiwyg-color-silver {
42
+ color: silver;
43
+ }
44
+
45
+ .wysiwyg-color-gray {
46
+ color: gray;
47
+ }
48
+
49
+ .wysiwyg-color-white {
50
+ color: white;
51
+ }
52
+
53
+ .wysiwyg-color-maroon {
54
+ color: maroon;
55
+ }
56
+
57
+ .wysiwyg-color-red {
58
+ color: red;
59
+ }
60
+
61
+ .wysiwyg-color-purple {
62
+ color: purple;
63
+ }
64
+
65
+ .wysiwyg-color-fuchsia {
66
+ color: fuchsia;
67
+ }
68
+
69
+ .wysiwyg-color-green {
70
+ color: green;
71
+ }
72
+
73
+ .wysiwyg-color-lime {
74
+ color: lime;
75
+ }
76
+
77
+ .wysiwyg-color-olive {
78
+ color: olive;
79
+ }
80
+
81
+ .wysiwyg-color-yellow {
82
+ color: yellow;
83
+ }
84
+
85
+ .wysiwyg-color-navy {
86
+ color: navy;
87
+ }
88
+
89
+ .wysiwyg-color-blue {
90
+ color: blue;
91
+ }
92
+
93
+ .wysiwyg-color-teal {
94
+ color: teal;
95
+ }
96
+
97
+ .wysiwyg-color-aqua {
98
+ color: aqua;
99
+ }
100
+
101
+ .wysiwyg-text-align-right {
102
+ text-align: right;
103
+ }
104
+
105
+ .wysiwyg-text-align-center {
106
+ text-align: center;
107
+ }
108
+
109
+ .wysiwyg-text-align-left {
110
+ text-align: left;
111
+ }
112
+
113
+ .wysiwyg-float-left {
114
+ float: left;
115
+ margin: 0 8px 8px 0;
116
+ }
117
+
118
+ .wysiwyg-float-right {
119
+ float: right;
120
+ margin: 0 0 8px 8px;
121
+ }
122
+
123
+ .wysiwyg-clear-right {
124
+ clear: right;
125
+ }
126
+
127
+ .wysiwyg-clear-left {
128
+ clear: left;
129
+ }
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/wysihtml5-rails/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Nihad Abbasov"]
6
+ gem.email = ["mail@narkoz.me"]
7
+ gem.description = %q{A wysiwyg text editor for use in the Rails 3 asset pipeline}
8
+ gem.summary = %q{wysihtml5 for rails}
9
+ gem.homepage = ""
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "wysihtml5-rails"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Wysihtml5::Rails::VERSION
17
+ end
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wysihtml5-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Nihad Abbasov
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-05-30 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: A wysiwyg text editor for use in the Rails 3 asset pipeline
15
+ email:
16
+ - mail@narkoz.me
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - LICENSE.txt
24
+ - README.md
25
+ - Rakefile
26
+ - lib/wysihtml5-rails.rb
27
+ - lib/wysihtml5-rails/version.rb
28
+ - vendor/assets/javascripts/wysihtml5.js
29
+ - vendor/assets/javascripts/wysihtml5/parser_rules/advanced.js
30
+ - vendor/assets/javascripts/wysihtml5/parser_rules/simple.js
31
+ - vendor/assets/javascripts/wysihtml5/wysihtml5.js
32
+ - vendor/assets/stylesheets/wysiwyg.css
33
+ - wysihtml5-rails.gemspec
34
+ homepage: ''
35
+ licenses: []
36
+ post_install_message:
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ segments:
47
+ - 0
48
+ hash: -3287419751912636387
49
+ required_rubygems_version: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ segments:
56
+ - 0
57
+ hash: -3287419751912636387
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 1.8.24
61
+ signing_key:
62
+ specification_version: 3
63
+ summary: wysihtml5 for rails
64
+ test_files: []