Skip to content

Commit

Permalink
Merge pull request drnic#18 from sferik/rails_admin
Browse files Browse the repository at this point in the history
RailsAdmin
  • Loading branch information
drnic committed Apr 15, 2012
2 parents d12d48f + de33055 commit e723ba8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 33 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -36,7 +36,7 @@ To transform an existing Rails app, you ... wait, that's not implemented yet. Bu

The current available scrolls grouped by category:

* administration: active_admin
* administration: active_admin, rails_admin
* assets: jquery, prototype
* deployment: eycloud, eycloud_recipes_on_deploy, git, github, passenger, thin, unicorn
* persistence: mysql, postgresql, redis, sqlite3
Expand Down
18 changes: 8 additions & 10 deletions appscrolls.gemspec
Expand Up @@ -9,25 +9,23 @@ Gem::Specification.new do |s|
s.authors = ["Michael Bleigh", "Dr Nic Williams"]
s.email = ["michael@intridea.com", "drnicwilliams@gmail.com"]
s.homepage = "http://appscrolls.org/"
s.summary = %q{The App Scrolls is a magical tool to generate new Rails and modify existing Rails applications (coming) to include your favourite, powerful magic. }
s.description = %q{The App Scrolls is a magical tool to generate new Rails and modify existing Rails applications (coming) to include your favourite, powerful magic. }
s.summary = %q{The App Scrolls is a magical tool to generate new Rails and modify existing Rails applications (coming) to include your favourite, powerful magic.}
s.description = s.summary

s.add_dependency "rails", "~> 3.2.2"
s.add_dependency "activesupport", "~> 3.0"
s.add_dependency "i18n"
s.add_dependency "json", "1.6.5"
s.add_dependency "activesupport", "~> 3.0"
s.add_dependency "rails", "~> 3.2.2"
s.add_dependency "thor"
s.add_development_dependency "rspec", "~> 2.5.0"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "cucumber"
s.add_development_dependency "guard-cucumber"
s.add_development_dependency "bundler", "~> 1.1.0"
s.add_development_dependency "cucumber"
s.add_development_dependency "guard-bundler"
s.add_development_dependency "rails", "~> 3.0"
s.add_development_dependency "guard-cucumber"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "rspec"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end

15 changes: 15 additions & 0 deletions scrolls/rails_admin.rb
@@ -0,0 +1,15 @@
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git'

after_bundler do
generate "rails_admin:install"
end

__END__

name: RailsAdmin
description: "An engine that provides an easy-to-use interface for managing your data"
website: https://github.com/sferik/rails_admin
author: sferik
exclusive: administration
category: administration
tags: [administration]
22 changes: 0 additions & 22 deletions scrolls/zzz/rails_admin.rb

This file was deleted.

0 comments on commit e723ba8

Please sign in to comment.