mojfile-uploader-api-client 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +50 -0
- data/.rubocop.yml +1151 -0
- data/.ruby-version +1 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +143 -0
- data/LICENSE +21 -0
- data/README.md +94 -0
- data/Rakefile +30 -0
- data/bin/.gitkeep +0 -0
- data/circle.yml +7 -0
- data/lib/mojfile_uploader_api_client/add_file.rb +24 -0
- data/lib/mojfile_uploader_api_client/delete_file.rb +18 -0
- data/lib/mojfile_uploader_api_client/file_reference.rb +13 -0
- data/lib/mojfile_uploader_api_client/http_client.rb +66 -0
- data/lib/mojfile_uploader_api_client/list_files.rb +17 -0
- data/lib/mojfile_uploader_api_client/response.rb +27 -0
- data/lib/mojfile_uploader_api_client/status.rb +22 -0
- data/lib/mojfile_uploader_api_client/version.rb +3 -0
- data/lib/mojfile_uploader_api_client.rb +15 -0
- data/lib/tasks/mutant.rake +9 -0
- data/lib/tasks/rubocop.rake +6 -0
- data/mojfile_uploader_api_client.gemspec +26 -0
- metadata +180 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3de04810ed483b08e3f3b368d9b34421477e7356
|
4
|
+
data.tar.gz: 71a8e175d683e8e309afa66cdeab0989f39d6e73
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 345d2c21738de90f178ec49f6555157b750253171628d98dc2b1bb0b2334e87939ebb2eb176e9c55451daab8be05da38cafee3ae67cbec048629cdaef3027df4
|
7
|
+
data.tar.gz: a196d5de8ac3aead8d8293c9ffbcffed65ddf0512f81a639fdefeeb28a2caf2aa082d8df32cf1b2987c552537418789e42cadc51c354073d538298d3da516747
|
data/.gitignore
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/spec/examples.txt
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
# Used by dotenv library to load environment variables.
|
14
|
+
# .env
|
15
|
+
|
16
|
+
## Specific to RubyMotion:
|
17
|
+
.dat*
|
18
|
+
.repl_history
|
19
|
+
build/
|
20
|
+
*.bridgesupport
|
21
|
+
build-iPhoneOS/
|
22
|
+
build-iPhoneSimulator/
|
23
|
+
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
25
|
+
#
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
29
|
+
#
|
30
|
+
# vendor/Pods/
|
31
|
+
|
32
|
+
## Documentation cache and generated files:
|
33
|
+
/.yardoc/
|
34
|
+
/_yardoc/
|
35
|
+
/doc/
|
36
|
+
/rdoc/
|
37
|
+
|
38
|
+
## Environment normalization:
|
39
|
+
/.bundle/
|
40
|
+
/vendor/bundle
|
41
|
+
/lib/bundler/man/
|
42
|
+
|
43
|
+
# for a library or gem, you might want to ignore these files since the code is
|
44
|
+
# intended to run in multiple environments; otherwise, check them in:
|
45
|
+
# Gemfile.lock
|
46
|
+
# .ruby-version
|
47
|
+
# .ruby-gemset
|
48
|
+
|
49
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
50
|
+
.rvmrc
|