selly 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7cab0577f25ad79b0ca9c728671bd0e6fc3add0e
4
+ data.tar.gz: ce8ac99025796be1feb9886272f472cd834e6c2f
5
+ SHA512:
6
+ metadata.gz: 83b0055f6c2c305e72bd4327127b9762e33152822ce91bd9075ddccba75283ae0ed6d7de6b951dec2d8570120298a76bfe06fbae91150353534ce85c43da77f0
7
+ data.tar.gz: c1918707b0692bde3ab56f9339fcb15d2183df142e9e91a26f69613c987ab00be64bbbbd2456fcc21e11ccf87c68a0ef87ce7cc11bfd815c42b8cd0eded8247c
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at Sexual@users.noreply.github.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in selly.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Selly
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.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # Selly Ruby
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's Gemfile:
6
+
7
+ ```ruby
8
+ gem 'selly'
9
+ ```
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install selly
18
+
19
+ ## Usage
20
+
21
+ Visit the [API documentation](https://selly.gg/developer/docs) for complete method lists
22
+
23
+ ```ruby
24
+ require 'selly'
25
+
26
+ # Set API credentials
27
+ Selly.api_key = 'your api key'
28
+ Selly.api_email = 'your account email'
29
+
30
+ # List orders
31
+ Selly::Orders.list
32
+
33
+ # Pagination
34
+ Selly::Orders.list(page: 10)
35
+
36
+ # Get single resource
37
+ Selly::Orders.show('order id')
38
+ ```
39
+
40
+ ## License
41
+
42
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
43
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "selly"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ module Selly
2
+ class Blacklist < Resource
3
+ extend Selly::Operations::List
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Selly
2
+ class ExchangeRates < Resource
3
+ extend Selly::Operations::List
4
+ end
5
+ end
@@ -0,0 +1,11 @@
1
+ require 'http'
2
+
3
+ module Selly
4
+ module Operations
5
+ module List
6
+ def list(options = {})
7
+ HTTP.get("#{API_ROOT}#{resource_url}", headers: Selly.request_headers, params: options).parse
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ require 'http'
2
+
3
+ module Selly
4
+ module Operations
5
+ module Show
6
+ def show(resource_id, options = {})
7
+ HTTP.get("#{API_ROOT}#{resource_url}/#{resource_id}", headers: Selly.request_headers, params: options).parse
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,6 @@
1
+ module Selly
2
+ class Orders < Resource
3
+ extend Selly::Operations::List
4
+ extend Selly::Operations::Show
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Selly
2
+ class Products < Resource
3
+ extend Selly::Operations::List
4
+ extend Selly::Operations::Show
5
+ end
6
+ end
@@ -0,0 +1,21 @@
1
+ require 'cgi'
2
+
3
+ module Selly
4
+ class Resource
5
+ def self.class_name
6
+ self.name.split('::')[-1]
7
+ end
8
+
9
+ def self.resource_url
10
+ "/#{CGI.escape(to_snake_case(class_name))}"
11
+ end
12
+
13
+ def self.to_snake_case(string)
14
+ string.gsub(/::/, '/').
15
+ gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').
16
+ gsub(/([a-z\d])([A-Z])/, '\1_\2').
17
+ tr("-", "_").
18
+ downcase
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,17 @@
1
+ module Selly
2
+ class Statistics < Resource
3
+ extend Selly::Operations::Show
4
+
5
+ def self.income(options = {})
6
+ self.show('/income', options)
7
+ end
8
+
9
+ def self.day_income(options = {})
10
+ self.show('/day_income', options)
11
+ end
12
+
13
+ def self.views(options = {})
14
+ self.show('/views', options)
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,3 @@
1
+ module Selly
2
+ VERSION = '1.0.1'
3
+ end
data/lib/selly.rb ADDED
@@ -0,0 +1,30 @@
1
+ require 'selly/version'
2
+ require 'selly/operations/list'
3
+ require 'selly/operations/show'
4
+ require 'selly/resource'
5
+ require 'selly/blacklist'
6
+ require 'selly/exchange_rates'
7
+ require 'selly/orders'
8
+ require 'selly/products'
9
+ require 'selly/statistics'
10
+
11
+ module Selly
12
+ API_ROOT = 'https://selly.gg/api'.freeze
13
+ USER_AGENT = "[Selly Ruby v#{VERSION}] Ruby-#{RUBY_VERSION} - #{RUBY_PLATFORM}".freeze
14
+ JSON_MIME = 'application/json'.freeze
15
+
16
+ class << self
17
+ attr_accessor :api_key, :api_email
18
+
19
+
20
+ def request_headers
21
+ {
22
+ 'User-Agent': USER_AGENT,
23
+ 'Accept': JSON_MIME,
24
+ 'Content-Type': JSON_MIME,
25
+ 'X-Auth-Email': @api_email,
26
+ 'X-Auth-Key': @api_key
27
+ }
28
+ end
29
+ end
30
+ end
data/selly.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'selly/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "selly"
8
+ spec.version = Selly::VERSION
9
+ spec.authors = ["Selly"]
10
+ spec.email = ["contact@selly.gg"]
11
+
12
+ spec.summary = "Ruby library for Selly's API"
13
+ spec.description = "Ruby library for Selly's API"
14
+ spec.homepage = "https://selly.gg"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files`.split("\n")
18
+ spec.require_paths = ['lib', 'lib/selly']
19
+
20
+ spec.add_dependency 'http'
21
+ spec.add_development_dependency "bundler", "~> 1.13"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: selly
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Selly
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-08-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: http
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.13'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.13'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description: Ruby library for Selly's API
56
+ email:
57
+ - contact@selly.gg
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - CODE_OF_CONDUCT.md
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - bin/console
69
+ - bin/setup
70
+ - lib/selly.rb
71
+ - lib/selly/blacklist.rb
72
+ - lib/selly/exchange_rates.rb
73
+ - lib/selly/operations/list.rb
74
+ - lib/selly/operations/show.rb
75
+ - lib/selly/orders.rb
76
+ - lib/selly/products.rb
77
+ - lib/selly/resource.rb
78
+ - lib/selly/statistics.rb
79
+ - lib/selly/version.rb
80
+ - selly.gemspec
81
+ homepage: https://selly.gg
82
+ licenses:
83
+ - MIT
84
+ metadata: {}
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ - lib/selly
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project:
102
+ rubygems_version: 2.6.8
103
+ signing_key:
104
+ specification_version: 4
105
+ summary: Ruby library for Selly's API
106
+ test_files: []