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 CHANGED
@@ -1,4 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in motion-settings.gemspec
4
- gemspec
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 Jonathan Silverman
1
+ Copyright (c) 2012 Jonathan Silverman, Aaron Hurley
2
2
 
3
3
  MIT License
4
4
 
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
- Copy the `rmsettable.rb` and `rmsettings.rb` into your `/app` directory. As there isn't yet a convention for where to put these sorts of files, I'd recommend adding a `/app/lib/rm_settings` directory.
9
+ Put this in your Gemfile:
10
10
 
11
- /project
12
- /app
13
- /lib
14
- /rm_settings
15
- rmsettable.rb
16
- rmsettings.rb
11
+ gem 'motion-settings'
17
12
 
18
- Setup
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
  -----
@@ -1,5 +1,5 @@
1
1
  module Motion
2
2
  module Settings
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -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.1
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: []