Name Last Update
bin Loading commit data...
lib Loading commit data...
spec Loading commit data...
.gitignore Loading commit data...
.rspec Loading commit data...
.travis.yml Loading commit data...
Gemfile Loading commit data...
Guardfile Loading commit data...
README.md Loading commit data...
Rakefile Loading commit data...
var-0.1.0.gem Loading commit data...
var.gemspec Loading commit data...

Var

Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file lib/var. To experiment with that code, run bin/console for an interactive prompt.

TODO: Delete this and the text above, and describe your gem

Installation

Add this line to your application's Gemfile:

gem 'var'

And then execute:

$ bundle

Or install it yourself as:

$ gem install var

You need to install the configuration for paypal if you intend to use it in your application:

$ rails g paypal:sdk:install

It will create a configuration file(config/paypal.yml)

You also need to configure conekta if you intend to use it in your application, Create a configuration file(config/initializers/conekta.rb)

Conekta.locale = :es

Conekta.api_key = '1tv5yJp3xnVZ7eK67m4h'

# Or via an initializer in config/initializers/conekta.rb
Conekta.config do |c|
  c.locale = :es
  c.api_key = '1tv5yJp3xnVZ7eK67m4h'
  c.api_version = '1.0.0'
end

Usage

TODO: Write usage instructions here

Development

After checking out the repo, run bin/setup to install dependencies. Then, run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release to create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

  1. Fork it ( https://github.com/[my-github-username]/var/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 a new Pull Request