motion-settings 0.0.1 → 0.0.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.
- data/Gemfile +0 -1
- data/LICENSE +1 -1
- data/README.md +3 -19
- data/lib/motion-settings/version.rb +1 -1
- data/motion-settings.gemspec +2 -2
- metadata +3 -1
data/Gemfile
CHANGED
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -6,27 +6,11 @@ An extension to allow RubyMotion apps easy access to reading, writing, and persi
|
|
6
6
|
Installation
|
7
7
|
------------
|
8
8
|
|
9
|
-
|
9
|
+
Put this in your Gemfile:
|
10
10
|
|
11
|
-
|
12
|
-
/app
|
13
|
-
/lib
|
14
|
-
/rm_settings
|
15
|
-
rmsettable.rb
|
16
|
-
rmsettings.rb
|
11
|
+
gem 'motion-settings'
|
17
12
|
|
18
|
-
|
19
|
-
-----
|
20
|
-
|
21
|
-
Given the way RubyMotion compiles files, you will probably need to add the RMSettings files to your `Rakefile` files_dependencies options.
|
22
|
-
|
23
|
-
```ruby
|
24
|
-
Motion::Project::App.setup do |app|
|
25
|
-
app.files_dependencies 'app/app_delegate.rb' => 'app/lib/rm_settings/rmsettable.rb',
|
26
|
-
'app/lib/rm_settings/rmsettable.rb' => 'app/lib/rm_settings/rmsettings.rb'
|
27
|
-
|
28
|
-
...
|
29
|
-
```
|
13
|
+
Done!
|
30
14
|
|
31
15
|
Usage
|
32
16
|
-----
|
data/motion-settings.gemspec
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
require File.expand_path('../lib/motion-settings/version', __FILE__)
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
|
-
gem.authors = ["Jonathan Silverman"]
|
6
|
-
gem.email = ["jsilver@mdx.la"]
|
5
|
+
gem.authors = ["Jonathan Silverman", "Aaron Hurley"]
|
6
|
+
gem.email = ["jsilver@mdx.la", "aaron@showtimefu.com"]
|
7
7
|
gem.description = %q{A convenience wrapper to allow RubyMotion apps easy access to reading, writing, and persisting values via NSUserDefaults.}
|
8
8
|
gem.summary = %q{RubyMotion Settings Library}
|
9
9
|
gem.homepage = "https://github.com/jsilverMDX/RubyMotion-UserSettings"
|
metadata
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-settings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Jonathan Silverman
|
9
|
+
- Aaron Hurley
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
@@ -15,6 +16,7 @@ description: A convenience wrapper to allow RubyMotion apps easy access to readi
|
|
15
16
|
writing, and persisting values via NSUserDefaults.
|
16
17
|
email:
|
17
18
|
- jsilver@mdx.la
|
19
|
+
- aaron@showtimefu.com
|
18
20
|
executables: []
|
19
21
|
extensions: []
|
20
22
|
extra_rdoc_files: []
|