widget_list_theme_cruddy 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.
- data/.gitattributes +22 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +33 -0
- data/Rakefile +1 -0
- data/create_new_widget_list_theme.sh +30 -0
- data/lib/widget_list_theme_cruddy.rb +33 -0
- data/lib/widget_list_theme_cruddy/version.rb +3 -0
- data/widget_list_theme_cruddy.gemspec +24 -0
- metadata +105 -0
data/.gitattributes
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# Auto detect text files and perform LF normalization
|
2
|
+
* text=auto
|
3
|
+
|
4
|
+
# Custom for Visual Studio
|
5
|
+
*.cs diff=csharp
|
6
|
+
*.sln merge=union
|
7
|
+
*.csproj merge=union
|
8
|
+
*.vbproj merge=union
|
9
|
+
*.fsproj merge=union
|
10
|
+
*.dbproj merge=union
|
11
|
+
|
12
|
+
# Standard to msysgit
|
13
|
+
*.doc diff=astextplain
|
14
|
+
*.DOC diff=astextplain
|
15
|
+
*.docx diff=astextplain
|
16
|
+
*.DOCX diff=astextplain
|
17
|
+
*.dot diff=astextplain
|
18
|
+
*.DOT diff=astextplain
|
19
|
+
*.pdf diff=astextplain
|
20
|
+
*.PDF diff=astextplain
|
21
|
+
*.rtf diff=astextplain
|
22
|
+
*.RTF diff=astextplain
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 TODO: Write your name
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# WidgetListThemeCruddy
|
2
|
+
|
3
|
+
A Theme for the [widget_list][1] gem. A cruddy beige theme. I like it.
|
4
|
+
|
5
|
+

|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
gem 'widget_list_theme_cruddy'
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install widget_list_theme_cruddy
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
1. Fork it
|
28
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
29
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
30
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
+
5. Create new Pull Request
|
32
|
+
|
33
|
+
[1]: https://github.com/davidrenne/widget_list/
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,30 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
echo -e -n "Please enter your theme name (widget_list_theme_XXXXX_YYYY_MY_NAME): "
|
4
|
+
read THEMENAME
|
5
|
+
echo $THEMENAME
|
6
|
+
|
7
|
+
rvm gemset create $THEMENAME
|
8
|
+
rvm gemset use $THEMENAME
|
9
|
+
gem install bundler
|
10
|
+
bundle gem $THEMENAME
|
11
|
+
cd $THEMENAME/
|
12
|
+
echo 'require "'$THEMENAME'/version"' > lib/$THEMENAME.rb
|
13
|
+
echo '' >> lib/$THEMENAME.rb
|
14
|
+
echo 'module WidgetListThemeHelper' >> lib/$THEMENAME.rb
|
15
|
+
echo ' class ThemeDefaults' >> lib/$THEMENAME.rb
|
16
|
+
echo ' def self.get_theme_widget_list_defaults()' >> lib/$THEMENAME.rb
|
17
|
+
echo ' list_parms = {}' >> lib/$THEMENAME.rb
|
18
|
+
echo ' #Add all your theme customizations below' >> lib/$THEMENAME.rb
|
19
|
+
echo '' >> lib/$THEMENAME.rb
|
20
|
+
echo ' #list_parms['rowOffsets'] = ['#FFFFFF','#edf6fd'] # Like this!!!' >> lib/$THEMENAME.rb
|
21
|
+
echo '' >> lib/$THEMENAME.rb
|
22
|
+
echo ' return list_parms' >> lib/$THEMENAME.rb
|
23
|
+
echo ' end' >> lib/$THEMENAME.rb
|
24
|
+
echo ' end' >> lib/$THEMENAME.rb
|
25
|
+
echo 'end' >> lib/$THEMENAME.rb
|
26
|
+
echo '' >> lib/$THEMENAME.rb
|
27
|
+
echo 'ActionView::Base.send :include, WidgetListThemeHelper' >> lib/$THEMENAME.rb
|
28
|
+
wget https://github.com/davidrenne/widget_list_theme_blue_sky_basin/blob/master/create_new_widget_list_theme.sh
|
29
|
+
|
30
|
+
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require "widget_list_theme_cruddy/version"
|
2
|
+
|
3
|
+
module WidgetListThemeHelper
|
4
|
+
class ThemeDefaults
|
5
|
+
def self.get_theme_widget_list_defaults()
|
6
|
+
|
7
|
+
list_parms = {}
|
8
|
+
|
9
|
+
list_parms['rowOffsets'] = ['#eee','#E5E5CB']
|
10
|
+
list_parms['headerBGColor'] = '#cc9'
|
11
|
+
list_parms['footerBGColor'] = '#cc9'
|
12
|
+
list_parms['headerFontColor'] = '#FFFFFF'
|
13
|
+
list_parms['footerFontColor'] = '#FFFFFF'
|
14
|
+
list_parms['fontFamily'] = 'Georgia'
|
15
|
+
list_parms['headerFooterFontSize'] = '20px'
|
16
|
+
list_parms['headerFontColor'] = '#705E54'
|
17
|
+
list_parms['rowFontColor'] = 'SlateGray'
|
18
|
+
list_parms['dataFontSize'] = '14px'
|
19
|
+
list_parms['bordersEverywhere?'] = true
|
20
|
+
list_parms['borderEverywhere'] = '1px dotted grey'
|
21
|
+
list_parms['defaultButtonClass'] = 'default'
|
22
|
+
list_parms['cornerRadius'] = 0
|
23
|
+
list_parms['useShadow'] = true
|
24
|
+
list_parms['shadowInset'] = 10
|
25
|
+
list_parms['shadowSpread'] = 30
|
26
|
+
list_parms['shadowColor'] = 'black'
|
27
|
+
|
28
|
+
return list_parms
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
ActionView::Base.send :include, WidgetListThemeHelper
|
@@ -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 'widget_list_theme_cruddy/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "widget_list_theme_cruddy"
|
8
|
+
spec.version = WidgetListThemeCruddy::VERSION
|
9
|
+
spec.authors = ["David Renne"]
|
10
|
+
spec.email = ["message_me_on_github@dave.com"]
|
11
|
+
spec.description = %q{The First theme(s) for widget_list.}
|
12
|
+
spec.summary = %q{In rails you have will_paginate and other gems like it using the ActiveRecord approach, but widget_list adds some awesome treats to standard boring pagers}
|
13
|
+
spec.homepage = "https://github.com/davidrenne/widget_list_theme_cruddy/"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.add_dependency('widget_list', '~> 1.2.0')
|
16
|
+
|
17
|
+
spec.files = `git ls-files`.split($/)
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
23
|
+
spec.add_development_dependency "rake"
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: widget_list_theme_cruddy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- David Renne
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-04-09 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: widget_list
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 1.2.0
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 1.2.0
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: bundler
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '1.3'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.3'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rake
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description: The First theme(s) for widget_list.
|
63
|
+
email:
|
64
|
+
- message_me_on_github@dave.com
|
65
|
+
executables: []
|
66
|
+
extensions: []
|
67
|
+
extra_rdoc_files: []
|
68
|
+
files:
|
69
|
+
- .gitattributes
|
70
|
+
- .gitignore
|
71
|
+
- Gemfile
|
72
|
+
- LICENSE.txt
|
73
|
+
- README.md
|
74
|
+
- Rakefile
|
75
|
+
- create_new_widget_list_theme.sh
|
76
|
+
- lib/widget_list_theme_cruddy.rb
|
77
|
+
- lib/widget_list_theme_cruddy/version.rb
|
78
|
+
- widget_list_theme_cruddy.gemspec
|
79
|
+
homepage: https://github.com/davidrenne/widget_list_theme_cruddy/
|
80
|
+
licenses:
|
81
|
+
- MIT
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
none: false
|
88
|
+
requirements:
|
89
|
+
- - ! '>='
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
none: false
|
94
|
+
requirements:
|
95
|
+
- - ! '>='
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
requirements: []
|
99
|
+
rubyforge_project:
|
100
|
+
rubygems_version: 1.8.19
|
101
|
+
signing_key:
|
102
|
+
specification_version: 3
|
103
|
+
summary: In rails you have will_paginate and other gems like it using the ActiveRecord
|
104
|
+
approach, but widget_list adds some awesome treats to standard boring pagers
|
105
|
+
test_files: []
|