Skip to content

Commit 7bf96ab

Browse files
committed
Redo description and avoid open-ended deps.
1 parent b26feee commit 7bf96ab

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# admin_view
22

3-
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.
3+
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.
44

5-
It uses [ransack](https://github.com/activerecord-hackery/ransack) for search and [kaminari](https://github.com/amatsuda/kaminari) for pagination.
5+
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.
66

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

admin_view.gemspec

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

1515
s.rubyforge_project = "admin_view"
1616

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

22-
s.add_dependency("rails", ">= 4.0")
23-
s.add_dependency("ransack", ">= 1.2")
24-
s.add_dependency("kaminari", ">= 0.15")
25-
s.add_development_dependency("rspec-rails", ">= 2.4.0")
22+
s.add_dependency("rails", "~> 4.0")
23+
s.add_dependency("ransack", "~> 1.2")
24+
s.add_dependency("kaminari", "~> 0.15")
25+
s.add_development_dependency("rspec-rails", "~> 2.4")
2626
end

0 commit comments

Comments
 (0)