README.rdoc in zendesk-features-1.0.0 vs README.rdoc in zendesk-features-1.0.1
- old
+ new
@@ -66,9 +66,26 @@
<h3>
<%= f.feature_check_box :ssl %> Enable SSL on your account
</h3>
<% end %>
+== Installation
+
+Install the gem in your rails project by putting it in your environment.rb:
+
+ config.gem 'zendesk-features', :lib => 'features', :source => 'http://gems.github.com'
+
+and do a sudo rake gems:install
+
+Also remember to create the features table. Depending on the name of the model you choose to associate with features in
+your project, you could create the table like:
+
+ create_table :features do |t|
+ t.string :type, :null => false
+ t.integer :account_id, :null => false
+ t.timestamps
+ end
+
== Known issues
Let us know if you find any.
== Requirements
\ No newline at end of file