Skip to content

Commit

Permalink
Redo description and avoid open-ended deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
markoa committed May 16, 2014
1 parent b26feee commit 7bf96ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# admin_view

Rails 4 generator of CRUD admin controllers, views and specs for existing ActiveRecord models. It helps you get the data on screen immediately, so you can customize the specifics to your liking.
Code generator of CRUD admin controllers, views and specs for existing ActiveRecord models. It helps you get the data on screen immediately, so you can customize the specifics to your liking.

It uses [ransack](https://github.com/activerecord-hackery/ransack) for search and [kaminari](https://github.com/amatsuda/kaminari) for pagination.
It works with Rails 4 and uses [ransack](https://github.com/activerecord-hackery/ransack) for search and [kaminari](https://github.com/amatsuda/kaminari) for pagination.

The produced markup in views is compatible with [Bootstrap 3](http://getbootstrap.com).

Expand Down
12 changes: 6 additions & 6 deletions admin_view.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Gem::Specification.new do |s|
s.authors = ["Marko Anastasov", "Darko Fabijan"]
s.email = ["devs@renderedtext.com"]
s.homepage = "http://github.com/renderedtext/admin_view"
s.summary = %q{Rails 4 generator of admin views and controllers for existing models.}
s.description = %q{Rails 4 generator of admin views and controllers for existing models.}
s.summary = %q{Admin view code generator for Rails.}
s.description = %q{Code generator of admin views and controllers for ActiveRecord models.}

s.rubyforge_project = "admin_view"

Expand All @@ -19,8 +19,8 @@ Gem::Specification.new do |s|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_dependency("rails", ">= 4.0")
s.add_dependency("ransack", ">= 1.2")
s.add_dependency("kaminari", ">= 0.15")
s.add_development_dependency("rspec-rails", ">= 2.4.0")
s.add_dependency("rails", "~> 4.0")
s.add_dependency("ransack", "~> 1.2")
s.add_dependency("kaminari", "~> 0.15")
s.add_development_dependency("rspec-rails", "~> 2.4")
end

0 comments on commit 7bf96ab

Please sign in to comment.