a9s_swift 0.1.1 → 0.1.2
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/VERSION +1 -1
- data/a9s_swift.gemspec +4 -5
- data/examples/rails_paperclip_initializer.rb +1 -1
- data/lib/a9s_swift.rb +5 -5
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a11d98cbd1d10d3da60aad28cfe25a4aa92d282c
|
|
4
|
+
data.tar.gz: af34161ec34cdba399320897dab476bcf11b6c3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 288d90dd946099a164cacec5b5a6dd639694cd4d9b71056e2c72f3477b2b6d4885aa531cc2fd891577dee57a73160b4fbe882d1532789576b070ed3e37759a50
|
|
7
|
+
data.tar.gz: 7391562bc3c588d25dadf2658c0ef5c9a4a70b69e853c17d3a2319fa14fb4e95d29ecf2b5147446f2a53cdc0f6b13a6977632c3996157b97001c5014fe4ba9bf
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/a9s_swift.gemspec
CHANGED
|
@@ -2,16 +2,14 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: a9s_swift 0.1.1 ruby lib
|
|
6
5
|
|
|
7
6
|
Gem::Specification.new do |s|
|
|
8
7
|
s.name = "a9s_swift"
|
|
9
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.2"
|
|
10
9
|
|
|
11
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
|
-
s.require_paths = ["lib"]
|
|
13
11
|
s.authors = ["Julian Weber"]
|
|
14
|
-
s.date = "2014-04-
|
|
12
|
+
s.date = "2014-04-08"
|
|
15
13
|
s.description = "anynines.com swift service utility library for simplifying app acces to the a9s swift service."
|
|
16
14
|
s.email = "jweber@anynines.com"
|
|
17
15
|
s.extra_rdoc_files = [
|
|
@@ -36,7 +34,8 @@ Gem::Specification.new do |s|
|
|
|
36
34
|
]
|
|
37
35
|
s.homepage = "http://github.com/anynines/a9s_swift"
|
|
38
36
|
s.licenses = ["MIT"]
|
|
39
|
-
s.
|
|
37
|
+
s.require_paths = ["lib"]
|
|
38
|
+
s.rubygems_version = "2.0.6"
|
|
40
39
|
s.summary = "anynines.com swift service utility library for simplifying app acces to the a9s swift service."
|
|
41
40
|
|
|
42
41
|
if s.respond_to? :specification_version then
|
data/lib/a9s_swift.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
module Anynines
|
|
2
2
|
module Swift
|
|
3
3
|
autoload :Utility, File.expand_path('../a9s_swift/utility', __FILE__)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
|
|
5
|
+
def self.version
|
|
6
|
+
file = File.open(File.expand_path("../../VERSION", __FILE__))
|
|
7
|
+
return file.read.to_s.tr("\n","")
|
|
8
|
+
end
|
|
9
9
|
end
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: a9s_swift
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julian Weber
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-04-
|
|
11
|
+
date: 2014-04-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: shoulda
|
|
@@ -123,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
123
123
|
version: '0'
|
|
124
124
|
requirements: []
|
|
125
125
|
rubyforge_project:
|
|
126
|
-
rubygems_version: 2.
|
|
126
|
+
rubygems_version: 2.0.6
|
|
127
127
|
signing_key:
|
|
128
128
|
specification_version: 4
|
|
129
129
|
summary: anynines.com swift service utility library for simplifying app acces to the
|