osx-status-bar-app-template 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MDJjMTI0ODI0Yzk2MzY3NDRhYzM5MzRkMzU5Mzc2MTQ2OTE1ZGQ3ZQ==
5
- data.tar.gz: !binary |-
6
- MDdiOGJmNTUyZWIzZmQ0ZWVhYWRkYzExNjRmMmM3NzJiN2ZmMGFkYQ==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- MjhiZDMyYTBiNmUwODUyYzJmNmJlNjRlMjVmOTE4NWY1NDJkNWI5N2JjMGJm
10
- NGU3OWIwYTE3Y2Q1YjIzYjRlYzM1ZmJhY2U4YjA1NTMzMTg1NzAxMDQwNDEw
11
- NjIwNzJjNWM1NGYyNmJkNmRkMGVlNjAwNTVkZWQ3ZmRkZmJlNDQ=
12
- data.tar.gz: !binary |-
13
- ZTdlNDRjMGFmYWQwZGRlNWQzZjIyYmMwZDM5M2EyYTdlNmQwYzEyODc0OGE4
14
- NzRhNWRiOGYzMmZkNjVjMjk0NmU0YzdkYmExNTMwMTU3NmIwOWMxNzcyNmZi
15
- MGE5MzNlZmM4OGZhNTI3MGE3OWUyMWFiY2NlZDcyZTRkOTNkYjM=
2
+ SHA1:
3
+ metadata.gz: be78175cc0d66b4be286739cd593183be15fae39
4
+ data.tar.gz: d2d7d886a33f2dfa21ff948f78a141e696f95cbd
5
+ SHA512:
6
+ metadata.gz: a52302be567ccaaac65e455518e6afd1f7e942e90c946c9f5a4ebb5cbd054b8f1741032fa56a93add0a8caa15e501c07bd079a00e244e2b8b0812128f9ea3ead
7
+ data.tar.gz: 4db7ec7a92e48e47e44208fc361460624ad6298891d1278a82a5fa5843c69217c03376e11c0a80e4364fc826fa4c5fea8840c916ac494af859939800d2fc88bc
data/README.md CHANGED
@@ -18,7 +18,7 @@ A RubyMotion template to allow you to quickly create a new OS X status bar app u
18
18
 
19
19
  ## License
20
20
 
21
- Copyright 2013 Elliott Draper <el@kickcode.com>
21
+ Copyright 2015 Elliott Draper <el@kickcode.com>
22
22
 
23
23
  Permission is hereby granted, free of charge, to any person obtaining
24
24
  a copy of this software and associated documentation files (the
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = "osx-status-bar-app-template"
3
- gem.version = "0.0.1"
4
- gem.date = "2013-10-17"
3
+ gem.version = "0.0.2"
4
+ gem.date = "2015-06-22"
5
5
  gem.summary = "OS X Status Bar App Template for RubyMotion"
6
6
  gem.description = "A RubyMotion app template to quickly start a new OS X status bar app"
7
7
  gem.authors = ["Elliott Draper"]
@@ -12,4 +12,5 @@ Motion::Project::App.setup do |app|
12
12
  # Use `rake config' to see complete project settings.
13
13
  app.name = '<%= name %>'
14
14
  app.info_plist['LSUIElement'] = true
15
+ app.deployment_target = '10.8'
15
16
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: osx-status-bar-app-template
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elliott Draper
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-17 00:00:00.000000000 Z
11
+ date: 2015-06-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A RubyMotion app template to quickly start a new OS X status bar app
14
14
  email: el@kickcode.com
@@ -31,7 +31,7 @@ homepage:
31
31
  licenses:
32
32
  - MIT
33
33
  metadata: {}
34
- post_install_message: ! "\n * osx-status-bar-app-template *\n\n Thanks for installing
34
+ post_install_message: "\n * osx-status-bar-app-template *\n\n Thanks for installing
35
35
  this gem, now you can create a new \n OS X status bar app using RubyMotion by running:\n\n
36
36
  \ motion create --template=osx-status-bar-app <app-name>\n\n This will create you
37
37
  a status bar only app, with example\n menu items to trigger the about window, to
@@ -41,17 +41,17 @@ require_paths:
41
41
  - lib
42
42
  required_ruby_version: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - ! '>='
44
+ - - '>='
45
45
  - !ruby/object:Gem::Version
46
46
  version: '0'
47
47
  required_rubygems_version: !ruby/object:Gem::Requirement
48
48
  requirements:
49
- - - ! '>='
49
+ - - '>='
50
50
  - !ruby/object:Gem::Version
51
51
  version: '0'
52
52
  requirements: []
53
53
  rubyforge_project:
54
- rubygems_version: 2.0.7
54
+ rubygems_version: 2.4.6
55
55
  signing_key:
56
56
  specification_version: 4
57
57
  summary: OS X Status Bar App Template for RubyMotion