built.io 0.3 → 0.4

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/README.md CHANGED
@@ -3,6 +3,12 @@
3
3
  built.io is a Backend-as-a-Service. This is the ruby SDK providing convenient
4
4
  wrappers for working with built.io.
5
5
 
6
+ ## Installing
7
+
8
+ ```ruby
9
+ gem install built.io
10
+ ```
11
+
6
12
  ## Getting Started
7
13
 
8
14
  Call the `init` method on `Built` to initialize the SDK with your
@@ -33,8 +33,7 @@ module Built
33
33
  )
34
34
  end
35
35
 
36
- private
37
-
36
+ # @api private
38
37
  def uri
39
38
  "/applications/myapp" # no longer require a valid uid to get the application
40
39
  end
data/lib/built/i18n.rb CHANGED
@@ -1,3 +1,2 @@
1
1
  I18n.load_path += [File.join(Built.root, "locales", "en.yml")]
2
- I18n.enforce_available_locales = false
3
2
  I18n.default_locale = "en"
data/lib/built/object.rb CHANGED
@@ -48,10 +48,7 @@ module Built
48
48
  headers = {}
49
49
 
50
50
  headers[:timeless] = true if options[:timeless]
51
-
52
- if options[:draft]
53
- self["published"] = false
54
- end
51
+ self["published"] = false if options[:draft]
55
52
 
56
53
  # update
57
54
  self.merge!(
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: built.io
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.3'
4
+ version: '0.4'
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-03-24 00:00:00.000000000 Z
12
+ date: 2014-03-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: i18n
@@ -89,7 +89,7 @@ files:
89
89
  - doc/class_list.html
90
90
  - MIT-LICENSE
91
91
  - README.md
92
- homepage: https://github.com/vishy1618/built.io-ruby-sdk
92
+ homepage: https://github.com/raweng/built.io-ruby-sdk
93
93
  licenses:
94
94
  - MIT
95
95
  post_install_message: