Skip to content

Commit d699789

Browse files
committed
Better description.
1 parent 1edea97 commit d699789

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# SQL Server 2005/2008 & Azure Adapter For ActiveRecord
2+
# ActiveRecord SQL Server Adapter. For SQL Server 2005 And Higher.
33

44
The SQL Server adapter for ActiveRecord. If you need the adapter for SQL Server 2000, you are still in the right spot. Just install the latest 2.3.x version of the adapter. Note, we follow a rational versioning policy that tracks ActiveRecord. That means that our 2.3.x version of the adapter is only for the latest 2.3 version of Rails. We also have stable branches for each major/minor release of ActiveRecord.
55

@@ -45,6 +45,8 @@ Every class that sub classes ActiveRecord::Base will now have an execute_procedu
4545

4646
```ruby
4747
Account.execute_procedure :update_totals, 'admin', nil, true
48+
# Or with named parameters.
49+
Account.execute_procedure :update_totals, :named => 'params'
4850
```
4951

5052
#### Native Data Type Support

activerecord-sqlserver-adapter.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Gem::Specification.new do |s|
55
s.platform = Gem::Platform::RUBY
66
s.name = "activerecord-sqlserver-adapter"
77
s.version = File.read(File.expand_path("../VERSION",__FILE__)).strip
8-
s.summary = "SQL Server 2005 and 2008 Adapter For ActiveRecord."
9-
s.description = "SQL Server 2005 and 2008 Adapter For ActiveRecord"
8+
s.summary = "ActiveRecord SQL Server Adapter. For SQL Server 2005 And Higher."
9+
s.description = "ActiveRecord SQL Server Adapter. For SQL Server 2005 And Higher."
1010

1111
s.authors = ['Ken Collins', 'Murray Steele', 'Shawn Balestracci', 'Joe Rafaniello', 'Tom Ward']
1212
s.email = "ken@metaskills.net"

0 commit comments

Comments
 (0)