devstructure 0.0.5 → 0.0.6
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.
- data/lib/devstructure/api.rb +6 -0
- metadata +21 -6
data/lib/devstructure/api.rb
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
require 'devstructure'
|
|
2
2
|
require 'devstructure/blueprint'
|
|
3
3
|
|
|
4
|
+
# HERE BE DRAGONS The 1.4.3 version of the JSON gem is crap-tastic,
|
|
5
|
+
# which forces me to pin to 1.4.2, which in turn forces me to load
|
|
6
|
+
# RubyGems manually here, which in turn pretty much makes me cry.
|
|
7
|
+
require 'rubygems'
|
|
8
|
+
gem 'json', '= 1.4.2'
|
|
4
9
|
require 'json'
|
|
10
|
+
|
|
5
11
|
require 'net/http'
|
|
6
12
|
require 'net/https'
|
|
7
13
|
require 'uri'
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devstructure
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.0.6
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Richard Crowley
|
|
@@ -15,10 +15,25 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-06-
|
|
18
|
+
date: 2010-06-13 00:00:00 +00:00
|
|
19
19
|
default_executable:
|
|
20
|
-
dependencies:
|
|
21
|
-
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: json
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - "="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
30
|
+
segments:
|
|
31
|
+
- 1
|
|
32
|
+
- 4
|
|
33
|
+
- 2
|
|
34
|
+
version: 1.4.2
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
22
37
|
description: Ruby bindings to the DevStructure API
|
|
23
38
|
email: richard@devstructure.com
|
|
24
39
|
executables: []
|