winton-admin 1.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.
Files changed (4) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.markdown +31 -0
  3. data/init.rb +4 -0
  4. metadata +59 -0
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 Winton Welsh <mail@wintoni.us>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.markdown ADDED
@@ -0,0 +1,31 @@
1
+ Admin
2
+ =====
3
+
4
+ A quick way to implement a nice looking Admin in Rails.
5
+
6
+
7
+ Requirements
8
+ ------------
9
+
10
+ * [haml](http://github.com/nex3/haml)
11
+ * [rails_widget](https://github.com/winton/rails_widget)
12
+ * [will_paginate](https://github.com/mislav/will_paginate)
13
+
14
+
15
+ Install
16
+ -------
17
+
18
+ gem install winton-admin
19
+
20
+ ### Add to environment.rb
21
+
22
+ config.gem 'winton-admin', :lib => 'admin', :source => 'http://gems.github.com'
23
+
24
+
25
+ Usage
26
+ -----
27
+
28
+ [Check out the wiki](http://github.com/winton/admin/wikis) for details on setting up your admin.
29
+
30
+
31
+ ##### Copyright (c) 2008 [Winton Welsh](mailto:mail@wintoni.us), released under the MIT license
data/init.rb ADDED
@@ -0,0 +1,4 @@
1
+ require 'admin'
2
+
3
+ ActionView::Base.send :include, Admin::Helpers
4
+ ActionController::Base.send :include, Admin::Actions
metadata ADDED
@@ -0,0 +1,59 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: winton-admin
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Winton Welsh
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-08-16 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: An instant Admin for your Rails app
17
+ email: mail@wintoni.us
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - init.rb
26
+ - lib/*
27
+ - lib/**/*
28
+ - MIT-LICENSE
29
+ - README.markdown
30
+ - resources/**/*
31
+ - tasks/*
32
+ has_rdoc: false
33
+ homepage: http://github.com/winton/admin
34
+ post_install_message:
35
+ rdoc_options: []
36
+
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: "0"
50
+ version:
51
+ requirements: []
52
+
53
+ rubyforge_project:
54
+ rubygems_version: 1.2.0
55
+ signing_key:
56
+ specification_version: 2
57
+ summary: An instant Admin for your Rails app
58
+ test_files: []
59
+