Skip to content

Commit a61ff9d

Browse files
committed
Add basic gem skeleton with an optimistic writeup
0 parents  commit a61ff9d

12 files changed

+212
-0
lines changed

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/.bundle/
2+
/.ruby-gemset
3+
/.ruby-version
4+
/.yardoc
5+
/Gemfile.lock
6+
/_yardoc/
7+
/coverage/
8+
/doc/
9+
/pkg/
10+
/spec/reports/
11+
/tmp/
12+
/test/config/*
13+
14+
.DS_Store

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: ruby
2+
rvm:
3+
- 2.2.0

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
3+
# Specify your gem's dependencies in restforce-db.gemspec
4+
gemspec

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Andrew Horner
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Restforce::DB
2+
3+
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/restforce/db`. To experiment with that code, run `bin/console` for an interactive prompt.
4+
5+
TODO: Delete this and the text above, and describe your gem
6+
7+
## Installation
8+
9+
Add this line to your application's Gemfile:
10+
11+
```ruby
12+
gem "restforce-db"
13+
```
14+
15+
And then execute:
16+
17+
$ bundle
18+
19+
Or install it yourself as:
20+
21+
$ gem install restforce-db
22+
23+
## Usage
24+
25+
TODO: Write usage instructions here
26+
27+
## Development
28+
29+
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.
30+
31+
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](https://rubygems.org).
32+
33+
## Contributing
34+
35+
1. Fork it ( https://github.com/ahorner/restforce-db/fork )
36+
2. Create your feature branch (`git checkout -b my-new-feature`)
37+
3. Commit your changes (`git commit -am 'Add some feature'`)
38+
4. Push to the branch (`git push origin my-new-feature`)
39+
5. Create a new Pull Request

Rakefile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env rake
2+
3+
require "bundler/gem_tasks"
4+
require "rake/testtask"
5+
6+
Rake::TestTask.new do |t|
7+
t.pattern = "test/**/*_test.rb"
8+
end
9+
10+
task default: :test

lib/restforce/db.rb

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
require "restforce"
2+
3+
require "restforce/db/version"
4+
require "restforce/db/configuration"
5+
6+
module Restforce
7+
8+
module DB
9+
10+
class << self
11+
attr_writer :configuration
12+
end
13+
14+
def self.configuration
15+
@configuration ||= Configuration.new
16+
end
17+
18+
def self.reset
19+
@configuration = Configuration.new
20+
end
21+
22+
def self.configure
23+
yield(configuration)
24+
end
25+
26+
end
27+
28+
end

lib/restforce/db/configuration.rb

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module Restforce
2+
3+
module DB
4+
5+
class Configuration
6+
7+
attr_accessor *%i(
8+
username
9+
password
10+
security_token
11+
client_id
12+
client_secret
13+
host
14+
)
15+
16+
end
17+
18+
end
19+
20+
end

lib/restforce/db/version.rb

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module Restforce
2+
3+
module DB
4+
5+
VERSION = "0.1.0"
6+
7+
end
8+
9+
end

restforce-db.gemspec

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# coding: utf-8
2+
lib = File.expand_path("../lib", __FILE__)
3+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4+
require "restforce/db/version"
5+
6+
Gem::Specification.new do |spec|
7+
spec.name = "restforce-db"
8+
spec.version = Restforce::DB::VERSION
9+
spec.authors = ["Andrew Horner"]
10+
spec.email = ["[email protected]"]
11+
12+
spec.summary = "Bind your database to Salesforce data"
13+
spec.description = %q(
14+
This gem provides two-way bindings between Salesforce records and records
15+
in an ActiveRecord-compatible database. It leans on the Restforce library
16+
for Salesforce API interactions, and provides a self-daemonizing binary
17+
which keeps records in sync by way of a tight polling loop.
18+
)
19+
spec.homepage = "https://www.github.com/ahorner/restforce-db"
20+
spec.license = "MIT"
21+
22+
spec.files = `git ls-files`.split($/)
23+
spec.bindir = "exe"
24+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25+
spec.require_paths = ["lib"]
26+
27+
spec.add_dependency "restforce"
28+
29+
spec.add_development_dependency "bundler", "~> 1.8"
30+
spec.add_development_dependency "rake", "~> 10.0"
31+
spec.add_development_dependency "minitest"
32+
end

test/lib/restforce/db_test.rb

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
require_relative "../../test_helper"
2+
3+
describe Restforce::DB do
4+
5+
before do
6+
Restforce::DB.configure do |config|
7+
config.username = Secrets["client"]["username"]
8+
config.password = Secrets["client"]["password"]
9+
config.security_token = Secrets["client"]["security_token"]
10+
config.client_id = Secrets["client"]["client_id"]
11+
config.client_secret = Secrets["client"]["client_secret"]
12+
config.host = Secrets["client"]["host"]
13+
end
14+
end
15+
16+
it "configures the Restforce::DB" do
17+
Restforce::DB.configuration.username.must_equal Secrets["client"]["username"]
18+
Restforce::DB.configuration.password.must_equal Secrets["client"]["password"]
19+
Restforce::DB.configuration.security_token.must_equal Secrets["client"]["security_token"]
20+
Restforce::DB.configuration.client_id.must_equal Secrets["client"]["client_id"]
21+
Restforce::DB.configuration.client_secret.must_equal Secrets["client"]["client_secret"]
22+
Restforce::DB.configuration.host.must_equal Secrets["client"]["host"]
23+
end
24+
end

test/test_helper.rb

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
require "minitest/autorun"
2+
require "yaml"
3+
4+
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
5+
require "restforce/db"
6+
7+
secrets_file = File.expand_path("../config/secrets.yml", __FILE__)
8+
Secrets = YAML.load_file(secrets_file)

0 commit comments

Comments
 (0)