bhm-admin 0.1.0 → 0.1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +1 -1
- data/README.md +36 -0
- data/Rakefile +2 -2
- data/bhm-admin.gemspec +6 -6
- data/config/locales/en.yml +1 -1
- data/lib/bhm/admin.rb +1 -1
- metadata +8 -7
- data/README.rdoc +0 -17
data/LICENSE
CHANGED
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# BHM Admin #
|
2
|
+
|
3
|
+
bhm-admin is a compass framework, rails engine and assorted libraries that make it
|
4
|
+
easy to add a simple, crud-like admin user interface to Rails 3 applications. Makes
|
5
|
+
it as simple as requiring the gem, overriding a few files and configuring it to add
|
6
|
+
a nice, css3 admin area for rails 3 apps.
|
7
|
+
|
8
|
+
It's very opinionated and expects your app follows a few general guidelines (e.g. uses jammit
|
9
|
+
w/ css and javascript bundles named admin).
|
10
|
+
|
11
|
+
## Installation ##
|
12
|
+
|
13
|
+
1. Add "gem 'bhm-admin'" to your Gemfile
|
14
|
+
2. Run bundle install
|
15
|
+
|
16
|
+
## Usage ##
|
17
|
+
|
18
|
+
To be added soon.
|
19
|
+
|
20
|
+
## Configuration ##
|
21
|
+
|
22
|
+
The only option at the moment is `BHM::Admin.site_name`. e.g.:
|
23
|
+
|
24
|
+
BHM::Admin.site_name = "MySite"
|
25
|
+
|
26
|
+
## Note on Patches/Pull Requests ##
|
27
|
+
|
28
|
+
1. Fork the project.
|
29
|
+
2. Make your feature addition or bug fix.
|
30
|
+
3. Add tests for it. This is important so I don't break it in a future version unintentionally.
|
31
|
+
4. Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
32
|
+
5. Send me a pull request. Bonus points for topic branches.
|
33
|
+
|
34
|
+
## Copyright ##
|
35
|
+
|
36
|
+
Copyright (c) 2010 Youth Tree. See LICENSE for details.
|
data/Rakefile
CHANGED
@@ -7,10 +7,10 @@ begin
|
|
7
7
|
require 'jeweler'
|
8
8
|
Jeweler::Tasks.new do |gem|
|
9
9
|
gem.name = "bhm-admin"
|
10
|
-
gem.summary = %Q{
|
10
|
+
gem.summary = %Q{General Admin Area stuff extracted from the big-help-mob web application.}
|
11
11
|
gem.description = %Q{Provides a reasonably dynamic and simple to use admin area for Rails 3 application. Built on a bunch of open source libraries.}
|
12
12
|
gem.email = "sutto@sutto.net"
|
13
|
-
gem.homepage = "http://github.com/
|
13
|
+
gem.homepage = "http://github.com/YouthTree/bhm-admin"
|
14
14
|
gem.authors = ["Darcy Laycock"]
|
15
15
|
gem.version = BHM::Admin::VERSION
|
16
16
|
gem.add_dependency "will_paginate"
|
data/bhm-admin.gemspec
CHANGED
@@ -5,23 +5,23 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{bhm-admin}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Darcy Laycock"]
|
12
|
-
s.date = %q{2010-05-
|
12
|
+
s.date = %q{2010-05-03}
|
13
13
|
s.description = %q{Provides a reasonably dynamic and simple to use admin area for Rails 3 application. Built on a bunch of open source libraries.}
|
14
14
|
s.email = %q{sutto@sutto.net}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
"README.
|
17
|
+
"README.md"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
21
21
|
".gitignore",
|
22
22
|
"Gemfile",
|
23
23
|
"LICENSE",
|
24
|
-
"README.
|
24
|
+
"README.md",
|
25
25
|
"Rakefile",
|
26
26
|
"app/controllers/admin/base_controller.rb",
|
27
27
|
"app/controllers/admin_controller.rb",
|
@@ -66,11 +66,11 @@ Gem::Specification.new do |s|
|
|
66
66
|
"test/helper.rb",
|
67
67
|
"test/test_bhm_admin.rb"
|
68
68
|
]
|
69
|
-
s.homepage = %q{http://github.com/
|
69
|
+
s.homepage = %q{http://github.com/YouthTree/bhm-admin}
|
70
70
|
s.rdoc_options = ["--charset=UTF-8"]
|
71
71
|
s.require_paths = ["lib"]
|
72
72
|
s.rubygems_version = %q{1.3.6}
|
73
|
-
s.summary = %q{
|
73
|
+
s.summary = %q{General Admin Area stuff extracted from the big-help-mob web application.}
|
74
74
|
s.test_files = [
|
75
75
|
"test/helper.rb",
|
76
76
|
"test/test_bhm_admin.rb"
|
data/config/locales/en.yml
CHANGED
data/lib/bhm/admin.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,9 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
|
8
|
+
- 1
|
9
|
+
- 1
|
10
|
+
version: 0.1.1.1
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Darcy Laycock
|
@@ -14,7 +15,7 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-05-
|
18
|
+
date: 2010-05-03 00:00:00 +08:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
@@ -148,13 +149,13 @@ extensions: []
|
|
148
149
|
|
149
150
|
extra_rdoc_files:
|
150
151
|
- LICENSE
|
151
|
-
- README.
|
152
|
+
- README.md
|
152
153
|
files:
|
153
154
|
- .document
|
154
155
|
- .gitignore
|
155
156
|
- Gemfile
|
156
157
|
- LICENSE
|
157
|
-
- README.
|
158
|
+
- README.md
|
158
159
|
- Rakefile
|
159
160
|
- app/controllers/admin/base_controller.rb
|
160
161
|
- app/controllers/admin_controller.rb
|
@@ -199,7 +200,7 @@ files:
|
|
199
200
|
- test/helper.rb
|
200
201
|
- test/test_bhm_admin.rb
|
201
202
|
has_rdoc: true
|
202
|
-
homepage: http://github.com/
|
203
|
+
homepage: http://github.com/YouthTree/bhm-admin
|
203
204
|
licenses: []
|
204
205
|
|
205
206
|
post_install_message:
|
@@ -227,7 +228,7 @@ rubyforge_project:
|
|
227
228
|
rubygems_version: 1.3.6
|
228
229
|
signing_key:
|
229
230
|
specification_version: 3
|
230
|
-
summary:
|
231
|
+
summary: General Admin Area stuff extracted from the big-help-mob web application.
|
231
232
|
test_files:
|
232
233
|
- test/helper.rb
|
233
234
|
- test/test_bhm_admin.rb
|
data/README.rdoc
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
= bhm_admin
|
2
|
-
|
3
|
-
Description goes here.
|
4
|
-
|
5
|
-
== Note on Patches/Pull Requests
|
6
|
-
|
7
|
-
* Fork the project.
|
8
|
-
* Make your feature addition or bug fix.
|
9
|
-
* Add tests for it. This is important so I don't break it in a
|
10
|
-
future version unintentionally.
|
11
|
-
* Commit, do not mess with rakefile, version, or history.
|
12
|
-
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
-
* Send me a pull request. Bonus points for topic branches.
|
14
|
-
|
15
|
-
== Copyright
|
16
|
-
|
17
|
-
Copyright (c) 2010 Darcy Laycock. See LICENSE for details.
|