New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

zoho_reports

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zoho_reports

  • 0.0.5
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

ZohoReports

Wraps the raw HTTP based API of Zoho Reports with easy to use methods for the ruby platform. This enables ruby and Rails developers to easily use Zoho Reports API.

Installation

Add this line to your application's Gemfile:

gem 'zoho_reports'

And then execute:

$ bundle

Or install it yourself as:

$ gem install zoho_reports

Usage

Setting auth_token and login_email

# (usually in /config/intializers/zoho_reports.rb)
ZohoReports.configure do |config|
  config.auth_token = 'token'
  config.login_email = 'user@example.com'
  config.database_name = 'test_database'
end

Initializing an instance

client = ZohoReports::Client.new

Importing an entire model

This example shows how to import the "Widget" model records, including creating a table if it doesn't already exist.

# Clean up the dates prior to json-ing the attributes
Widget.all.each do |model|
  zoho_all = ZohoReports::Client.zoho_attributes(model)
end

client.import_data(
  "test_database", 
  "widgets", 
  'UPDATEADD', 
  zoho_all.to_json, 
  'ZOHO_MATCHING_COLUMNS' => 'id', 
  'ZOHO_CREATE_TABLE' => 'true', 
)

When importing through the API and generating a new table, string and datetime date types import correctly with format. However, here are the steps provided through the Zoho Reports wiki comments in case you have an issue with the column format:

  1. Login into Zoho Reports, Open the import wizard ( "Import Excel, CSV, HTML, Google docs,.." ), upload your file.
  2. Click "Next" button to go to the next screen of import wizard (i.e step 2 of 2), there you can see the preview table.
  3. In that table, the first row will be header row ( i.e., Column names ) and the second row will be the datatype which is auto identified by our Zoho Reports system. There you can change the column datatype to "Text" for the column you want to change. Then, continue the import process.

Rails / ActiveRecord Support

ZohoReports includes a module specific to ActiveReports that may be used as follows:

# /app/models/widget.rb
class Widget < ActiveRecord::Base
  zoho_reportify
...
end

This adds two things to your Rails app.

  1. Widget.intialize_zoho_table will create the database table based on Widget.table_name and load all of the current data into it
  2. Adds an after_save callback that stores the instance attributes into the Zoho Reports table keeping your data in sync

Contributing

  1. Fork it ( http://github.com//zoho_reports/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 25 Apr 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc