edge_cast 0.0.2 → 1.0.0
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +10 -3
- data/lib/edge_cast/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 781b5b09d39950414b0a8f6339dd4c587ea9b6ae
|
|
4
|
+
data.tar.gz: 7f8fcebdbf8a06613bf14adb1129d2f92c34f95a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54b8f607ee6cf6272ac41cc0a1b47397c850a33ed2611aef577bfccd091e823425ed6d9e30eda6b07a794646038d0446f7845cfe2f1c8fe47408a468be0c75cf
|
|
7
|
+
data.tar.gz: 5902b4f174a4a10e5ccdf1df1c6d005c6864977e6992c90a35478a0428600983a8bdec9f5b7214c65ee5aed8f0c84b0f6eaea9cc9862125f955cdfc5c8de683b
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# EdgeCast
|
|
2
|
+
[](http://badge.fury.io/rb/edge_cast) [](https://travis-ci.org/jilion/edge_cast)
|
|
2
3
|
|
|
3
4
|
EdgeCast Web Services REST API Ruby wrapper.
|
|
4
5
|
|
|
@@ -6,15 +7,21 @@ EdgeCast Web Services REST API Ruby wrapper.
|
|
|
6
7
|
|
|
7
8
|
Add this line to your application's Gemfile:
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
```ruby
|
|
11
|
+
gem 'edge_cast'
|
|
12
|
+
```
|
|
10
13
|
|
|
11
14
|
And then execute:
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
```bash
|
|
17
|
+
$ bundle
|
|
18
|
+
```
|
|
14
19
|
|
|
15
20
|
Or install it yourself as:
|
|
16
21
|
|
|
17
|
-
|
|
22
|
+
```bash
|
|
23
|
+
$ gem install edge_cast
|
|
24
|
+
```
|
|
18
25
|
|
|
19
26
|
## Usage
|
|
20
27
|
|
data/lib/edge_cast/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: edge_cast
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rémy Coutable
|
|
@@ -159,3 +159,4 @@ signing_key:
|
|
|
159
159
|
specification_version: 4
|
|
160
160
|
summary: EdgeCast Web Services REST API Ruby wrapper.
|
|
161
161
|
test_files: []
|
|
162
|
+
has_rdoc:
|