mio-config 1.3.0 → 2.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 +4 -4
- data/README.md +7 -0
- data/mio-config-1.3.0.gem +0 -0
- data/mio-config.gemspec +4 -4
- metadata +4 -4
- data/notes +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 580c0c9a7259591cbf3483eaa79d620cff143405
|
|
4
|
+
data.tar.gz: 8e205d76035c944341280d0db77c3f82b997a76e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f81b3d985fd667e504cd270ed48a6dc4c7b9d60debf14ba41dfc5aa2fd936b57a5071ff80d3af08b85614374ee97c4fc802aa6d16823f5599f19166c1bc74f0e
|
|
7
|
+
data.tar.gz: a270d91cf647cd2fa234f8714650d99c4bad3276ae0c3ad3f22a2709471ba972e7ea594461a0a765ff801400d6ffe0a33cebb748b7c3cd47ef33ea235e70142b
|
data/README.md
CHANGED
|
@@ -14,6 +14,13 @@ In your Gemfile:
|
|
|
14
14
|
gem 'mio-config', github: 'financial-times/mio-config.git'
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
or
|
|
18
|
+
|
|
19
|
+
```ruby
|
|
20
|
+
source 'https://rubygems.org'
|
|
21
|
+
gem 'mio-config'
|
|
22
|
+
```
|
|
23
|
+
|
|
17
24
|
### Configuration
|
|
18
25
|
|
|
19
26
|
`mio-config` relies on the config file: `./config/mio.yml`, which must live in the root of your project. It looks like:
|
|
Binary file
|
data/mio-config.gemspec
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "mio-config"
|
|
3
|
-
s.version = "
|
|
3
|
+
s.version = "2.0.1"
|
|
4
4
|
s.license = 'MIT'
|
|
5
5
|
|
|
6
6
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
7
|
-
|
|
8
|
-
s.date = "2016-
|
|
9
|
-
s.description = "Configure MIO
|
|
7
|
+
s.authors = ["jspc","jemrayfield"]
|
|
8
|
+
s.date = "2016-04-29"
|
|
9
|
+
s.description = "Configure MIO"
|
|
10
10
|
s.summary = "Financial Times MIO mangler"
|
|
11
11
|
s.email = "james.condron@ft.com"
|
|
12
12
|
s.homepage = "https://ft.com"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mio-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- jspc
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-04-29 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -81,7 +81,7 @@ dependencies:
|
|
|
81
81
|
- - "~>"
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
83
|
version: '0.7'
|
|
84
|
-
description: Configure MIO
|
|
84
|
+
description: Configure MIO
|
|
85
85
|
email: james.condron@ft.com
|
|
86
86
|
executables: []
|
|
87
87
|
extensions: []
|
|
@@ -143,8 +143,8 @@ files:
|
|
|
143
143
|
- "./lib/mio/tasks/migrations.rb"
|
|
144
144
|
- "./lib/mio/tasks/skeletons.rb"
|
|
145
145
|
- "./migrations/20160429130853_create-an-s3-bucket-for-ingestion.rb"
|
|
146
|
+
- "./mio-config-1.3.0.gem"
|
|
146
147
|
- "./mio-config.gemspec"
|
|
147
|
-
- "./notes"
|
|
148
148
|
- "./spec/factories/client_factories.rb"
|
|
149
149
|
- "./spec/factories/mio_factories.rb"
|
|
150
150
|
- "./spec/factories/model_factories.rb"
|
data/notes
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
$:<<'.' ; require 'client' ; require 'models/events' ; Mio::Events.all
|