teacup 1.2.2 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- teacup (1.2.2)
4
+ teacup (1.2.3)
5
5
  rake
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -8,5 +8,4 @@ Motion::Project::App.setup do |app|
8
8
  # Use `rake config' to see complete project settings.
9
9
  app.name = 'teacup'
10
10
  app.identifier = 'com.rubymotion.teacup'
11
- app.vendor_project 'vendor/TeacupDummy', :static
12
11
  end
@@ -21,6 +21,4 @@ Motion::Project::App.setup do |app|
21
21
  Dir.glob(File.join(File.dirname(__FILE__), 'teacup/**/*.rb')).reverse.each do |file|
22
22
  app.files.insert(insert_point, file)
23
23
  end
24
-
25
- app.vendor_project File.join(File.dirname(__FILE__), '../vendor/TeacupDummy'), :static
26
24
  end
@@ -1,5 +1,5 @@
1
1
  module Teacup
2
2
 
3
- VERSION = '1.2.2'
3
+ VERSION = '1.2.3'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teacup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
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: 2013-02-02 00:00:00.000000000 Z
12
+ date: 2013-02-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -108,8 +108,6 @@ files:
108
108
  - spec/stylesheet_spec.rb
109
109
  - spec/view_spec.rb
110
110
  - teacup.gemspec
111
- - vendor/TeacupDummy/TeacupDummy.h
112
- - vendor/TeacupDummy/TeacupDummy.m
113
111
  homepage: https://github.com/rubymotion/teacup
114
112
  licenses: []
115
113
  post_install_message:
@@ -1,11 +0,0 @@
1
- #import <Foundation/Foundation.h>
2
-
3
- enum {
4
- AnyType = 0,
5
- };
6
- typedef char AnyOldType;
7
-
8
- @interface TeacupDummy : NSObject
9
- - (void) setType:(AnyOldType)type;
10
- - (AnyOldType) type;
11
- @end
@@ -1,8 +0,0 @@
1
- #import "TeacupDummy.h"
2
-
3
- @implementation TeacupDummy
4
- - (void) setType:(AnyOldType)type {}
5
- - (AnyOldType) type {
6
- return AnyType;
7
- }
8
- @end