blimp 0.0.2 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Changelog.md +37 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/blimp.gemspec +7 -7
- data/lib/blimp/version.rb +1 -1
- metadata +19 -36
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a5154ab1fa6d3bbe3d342294402d1e7456af85a3
|
4
|
+
data.tar.gz: 6a96c596585f00a408df4dd4165612ef7adf1622
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5754294288133c76d902c247387ba9e5709c5e21be23096dfd83662ef2b2c4921930d1ca1577cbbaef9a7827a99eb0c2057c88e246fae0a89203ee455ccbd0bb
|
7
|
+
data.tar.gz: 78569eb5c45c976009dad948f84e7247cbd9f3024cfe557d884fd5713ba314667267d802ac8c96d71e2608191a5ea742ba31836bbf9f1a1cdb245fa8c71a3646
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
blimp
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.0.0-p247
|
data/Changelog.md
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# Blimp Changelog
|
2
|
+
|
3
|
+
|
4
|
+
## 0.0.4
|
5
|
+
|
6
|
+
Released August 25, 2013 ([0.0.4](https://github.com/jonahoffline/blimp/tree/v0.0.4)).
|
7
|
+
|
8
|
+
* Fix incorrect dependency type in gemspec for httparty.
|
9
|
+
* Update gemspec gem name from 'jonahoffline-blimp' to 'blimp'.
|
10
|
+
* Update version to 0.0.4.
|
11
|
+
|
12
|
+
|
13
|
+
## 0.0.3
|
14
|
+
|
15
|
+
Released August 23, 2013 ([0.0.3](https://github.com/jonahoffline/blimp/tree/v0.0.3)).
|
16
|
+
|
17
|
+
* Remove unused active_support dependency (fixes [#1](https://github.com/sixteeneighty/blimp/issues/1) issue with bundle and previous gem).
|
18
|
+
* Add ruby-version and gemset.
|
19
|
+
* Update gemspec author, email and gem name for this fork.
|
20
|
+
* Update README.
|
21
|
+
* Add Changelog.
|
22
|
+
* Update version to 0.0.3.
|
23
|
+
|
24
|
+
|
25
|
+
## 0.0.2
|
26
|
+
|
27
|
+
Released February 6, 2013 ([0.0.1](https://github.com/sixteeneighty/blimp/tree/v0.0.2)).
|
28
|
+
|
29
|
+
* Save updates resource.
|
30
|
+
* Attributes are only set if they're defined.
|
31
|
+
|
32
|
+
|
33
|
+
## 0.0.1
|
34
|
+
|
35
|
+
Released February 6, 2013 ([0.0.1](https://github.com/sixteeneighty/blimp/tree/v0.0.1)).
|
36
|
+
|
37
|
+
* Initial Release.
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Blimp
|
1
|
+
# Blimp [![Gem Version](https://badge.fury.io/rb/jonahoffline-blimp.png)](http://badge.fury.io/rb/jonahoffline-blimp) [![Dependency Status](https://gemnasium.com/jonahoffline/blimp.png)](https://gemnasium.com/jonahoffline/blimp)
|
2
2
|
|
3
3
|
Ruby gem that implements [Blimp's](http://www.getblimp.com/) public API.
|
4
4
|
|
data/blimp.gemspec
CHANGED
@@ -4,18 +4,18 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'blimp/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |gem|
|
7
|
-
gem.name =
|
7
|
+
gem.name = 'blimp'
|
8
8
|
gem.version = Blimp::VERSION
|
9
|
-
gem.authors = [
|
10
|
-
gem.email = [
|
9
|
+
gem.authors = ['Blake Williams', 'Jonah Ruiz']
|
10
|
+
gem.email = ['jonah@pixelhipsters.com']
|
11
11
|
gem.description = %q{Ruby gem that implements the Blimp Public API http://dev.getblimp.com/}
|
12
12
|
gem.summary = %q{Ruby bindings to the Blimp API}
|
13
|
-
gem.homepage =
|
13
|
+
gem.homepage = 'https://github.com/jonahoffline/blimp'
|
14
|
+
gem.license = 'MIT'
|
14
15
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
18
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
-
gem.require_paths = [
|
19
|
-
gem.add_dependency
|
20
|
-
gem.add_dependency('active_support')
|
19
|
+
gem.require_paths = ['lib']
|
20
|
+
gem.add_dependency 'httparty', '~> 0.11.0'
|
21
21
|
end
|
data/lib/blimp/version.rb
CHANGED
metadata
CHANGED
@@ -1,57 +1,41 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blimp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.4
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Blake Williams
|
9
|
-
-
|
8
|
+
- Jonah Ruiz
|
10
9
|
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date: 2013-
|
12
|
+
date: 2013-08-25 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: httparty
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
17
|
requirements:
|
20
|
-
- -
|
18
|
+
- - ~>
|
21
19
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
20
|
+
version: 0.11.0
|
23
21
|
type: :runtime
|
24
22
|
prerelease: false
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
24
|
requirements:
|
28
|
-
- -
|
25
|
+
- - ~>
|
29
26
|
- !ruby/object:Gem::Version
|
30
|
-
version:
|
31
|
-
- !ruby/object:Gem::Dependency
|
32
|
-
name: active_support
|
33
|
-
requirement: !ruby/object:Gem::Requirement
|
34
|
-
none: false
|
35
|
-
requirements:
|
36
|
-
- - ! '>='
|
37
|
-
- !ruby/object:Gem::Version
|
38
|
-
version: '0'
|
39
|
-
type: :runtime
|
40
|
-
prerelease: false
|
41
|
-
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
|
-
requirements:
|
44
|
-
- - ! '>='
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
version: '0'
|
27
|
+
version: 0.11.0
|
47
28
|
description: Ruby gem that implements the Blimp Public API http://dev.getblimp.com/
|
48
29
|
email:
|
49
|
-
-
|
30
|
+
- jonah@pixelhipsters.com
|
50
31
|
executables: []
|
51
32
|
extensions: []
|
52
33
|
extra_rdoc_files: []
|
53
34
|
files:
|
54
35
|
- .gitignore
|
36
|
+
- .ruby-gemset
|
37
|
+
- .ruby-version
|
38
|
+
- Changelog.md
|
55
39
|
- Gemfile
|
56
40
|
- LICENSE.txt
|
57
41
|
- README.md
|
@@ -68,29 +52,28 @@ files:
|
|
68
52
|
- lib/blimp/task.rb
|
69
53
|
- lib/blimp/user.rb
|
70
54
|
- lib/blimp/version.rb
|
71
|
-
homepage:
|
72
|
-
licenses:
|
55
|
+
homepage: https://github.com/jonahoffline/blimp
|
56
|
+
licenses:
|
57
|
+
- MIT
|
58
|
+
metadata: {}
|
73
59
|
post_install_message:
|
74
60
|
rdoc_options: []
|
75
61
|
require_paths:
|
76
62
|
- lib
|
77
63
|
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
-
none: false
|
79
64
|
requirements:
|
80
|
-
- -
|
65
|
+
- - '>='
|
81
66
|
- !ruby/object:Gem::Version
|
82
67
|
version: '0'
|
83
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
-
none: false
|
85
69
|
requirements:
|
86
|
-
- -
|
70
|
+
- - '>='
|
87
71
|
- !ruby/object:Gem::Version
|
88
72
|
version: '0'
|
89
73
|
requirements: []
|
90
74
|
rubyforge_project:
|
91
|
-
rubygems_version:
|
75
|
+
rubygems_version: 2.0.3
|
92
76
|
signing_key:
|
93
|
-
specification_version:
|
77
|
+
specification_version: 4
|
94
78
|
summary: Ruby bindings to the Blimp API
|
95
79
|
test_files: []
|
96
|
-
has_rdoc:
|