ib 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9877eb0ab9be9bf201b6f9dbe23416c7f5b5439
4
- data.tar.gz: 5e6aab594f8197db1be1da81d80dcfee9104fbe7
3
+ metadata.gz: 0ea52248a4f7ff0413027ee553fdb45c6f3cd95d
4
+ data.tar.gz: 85d3e69c6f1b9ab25a904637a6a3c40d7de8295d
5
5
  SHA512:
6
- metadata.gz: 8876b001e5e7a8bc17fb19a5c84bd4d721c9e44d4f3ceb3540f7e7f78e149156499460c878eb550ab65d7d2b40b209b669e43e8a9891f62b419069a9815134b6
7
- data.tar.gz: 32f58ddd91216fc1cf44af708597bc411356ab438f4199662d0d23d509fb4cf4b6a306bfdfeaa3375144747e4f9e9a07dfdbb2dcc76bd17e1f92c05121e89f7e
6
+ metadata.gz: fc0952cdb7beb7a43a589d3cb8bffc9530906744c010227c00de41914ce63f4dbfae123d7297cf0746f80159782875ca3811a27862b0dbaa9f7893856df4335e
7
+ data.tar.gz: 89e8ee5db2a7257cbe33726634fc5b4a83cf7c24f0c77075241f5ec51cfc269d240ab29e927d9a845bad67b183b018d57acaa3dcf5f03aecb7fd26a025f80d1b
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ib (0.4.7)
4
+ ib (0.7.0)
5
5
  thor (~> 0.15.4)
6
6
  tilt (~> 1.4.1)
7
7
  xcodeproj (~> 0.17)
@@ -9,9 +9,12 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (3.2.17)
13
- i18n (~> 0.6, >= 0.6.4)
14
- multi_json (~> 1.0)
12
+ activesupport (4.1.8)
13
+ i18n (~> 0.6, >= 0.6.9)
14
+ json (~> 1.7, >= 1.7.7)
15
+ minitest (~> 5.1)
16
+ thread_safe (~> 0.1)
17
+ tzinfo (~> 1.1)
15
18
  coderay (1.1.0)
16
19
  colored (1.2)
17
20
  diff-lcs (1.2.5)
@@ -29,14 +32,15 @@ GEM
29
32
  guard-rspec (3.1.0)
30
33
  guard (>= 1.8)
31
34
  rspec (~> 2.13)
32
- i18n (0.6.9)
35
+ i18n (0.6.11)
36
+ json (1.8.1)
33
37
  listen (1.3.1)
34
38
  rb-fsevent (>= 0.9.3)
35
39
  rb-inotify (>= 0.9)
36
40
  rb-kqueue (>= 0.2)
37
41
  lumberjack (1.0.5)
38
42
  method_source (0.8.2)
39
- multi_json (1.9.2)
43
+ minitest (5.4.3)
40
44
  pry (0.9.12.6)
41
45
  coderay (~> 1.0)
42
46
  method_source (~> 0.8)
@@ -57,9 +61,12 @@ GEM
57
61
  rspec-mocks (2.14.6)
58
62
  slop (3.5.0)
59
63
  thor (0.15.4)
64
+ thread_safe (0.3.4)
60
65
  tilt (1.4.1)
61
- xcodeproj (0.17.0)
62
- activesupport (~> 3.0)
66
+ tzinfo (1.2.2)
67
+ thread_safe (~> 0.1)
68
+ xcodeproj (0.20.2)
69
+ activesupport (>= 3)
63
70
  colored (~> 1.2)
64
71
 
65
72
  PLATFORMS
data/README.md CHANGED
@@ -38,6 +38,10 @@ Bundler.require
38
38
  require 'rubygems'
39
39
  require 'ib'
40
40
 
41
+ IB::RakeTask.new do |project|
42
+ # ...
43
+ end
44
+
41
45
  Motion::Project::App.setup do |app|
42
46
  # ...
43
47
  end
@@ -20,7 +20,7 @@ class IB::Generator
20
20
  end
21
21
 
22
22
  def write files, dest
23
- files = IB::Parser.new.find_all(files)
23
+ files = IB::Parser.new(@build_platform).find_all(files)
24
24
 
25
25
  FileUtils.mkpath dest
26
26
 
@@ -25,6 +25,7 @@ class IB::OCInterface
25
25
  @outlet_collections = create_instances(OutletCollection, params[:outlet_collections])
26
26
  @actions = create_instances(Action, params[:actions])
27
27
  @path = params[:path]
28
+ @build_platform = params[:build_platform]
28
29
  end
29
30
 
30
31
  def [](key)
@@ -34,8 +35,8 @@ class IB::OCInterface
34
35
  def super_class
35
36
  # for support `ProMotion` gem https://github.com/yury/ib/pull/45
36
37
  return 'UIViewController' if @super_class =~ /^(?:PM::|ProMotion::)/
37
- delegate_class = App.template == :ios ? 'UIApplicationDelegate' : 'NSApplicationDelegate'
38
- responder_class = App.template == :ios ? 'UIResponder' : 'NSObject'
38
+ delegate_class = @build_platform == :ios ? 'UIApplicationDelegate' : 'NSApplicationDelegate'
39
+ responder_class = @build_platform == :ios ? 'UIResponder' : 'NSObject'
39
40
  @super_class ||
40
41
  ((@sub_class == 'AppDelegate') ? "#{responder_class} <#{delegate_class}>" : 'NSObject')
41
42
  end
@@ -13,6 +13,12 @@ class IB::Parser
13
13
  METHOD_DEF_REGEX = /^[ \t]+(def)[ \t]#{METHOD_ARGUMENT_REGEX}([ \t(]+)?#{METHOD_ARGUMENT_REGEX}?([ \t)]*)(#.*)?$/
14
14
  ACTION_REGEX = Regexp.union METHOD_DEF_REGEX, METHOD_REF_REGEX
15
15
 
16
+ def initialize(motion_template_type)
17
+ # NOTE: motion_template_type equal to Motion::Project::App.template
18
+ # but, this class use its value for judging build platform.
19
+ @build_platform = motion_template_type
20
+ end
21
+
16
22
  def find_all(dir_or_files)
17
23
  all = {}
18
24
  files = case dir_or_files
@@ -53,6 +59,7 @@ class IB::Parser
53
59
  info[:actions] = find_actions(s)
54
60
 
55
61
  info[:path] = path
62
+ info[:build_platform] = @build_platform
56
63
 
57
64
  infos << IB::OCInterface.new(info)
58
65
  end
@@ -2,6 +2,8 @@
2
2
  class IB::Project
3
3
  attr_accessor :platform
4
4
  attr_accessor :project_path
5
+ attr_accessor :app_files
6
+ attr_accessor :resource_directories
5
7
 
6
8
  IB_PROJECT_NAME = 'ib.xcodeproj'
7
9
  DEFAULT_FRAMEWORKS = %W{QuartzCore CoreGraphics CoreData}
@@ -9,9 +11,28 @@ class IB::Project
9
11
  xcdatamodeld png jpg jpeg storyboard xib lproj ttf otf
10
12
  }
11
13
 
12
- def initialize options={}
13
- @platform = options[:platform] || detect_platform
14
- @project_path = options[:project_path] || Dir.pwd
14
+ def initialize(options={})
15
+ @platform = options[:platform]
16
+ @project_path = options[:project_path] || Dir.pwd
17
+ end
18
+
19
+ def motion_config
20
+ Motion::Project::App.config
21
+ end
22
+ private :motion_config
23
+
24
+ def platform
25
+ @platform ||= motion_config.deploy_platform == 'MacOSX' ? :osx : :ios
26
+ end
27
+
28
+ def app_files
29
+ @app_files ||= motion_config.files.select do |file|
30
+ file =~ /^(\.\/)?app\//
31
+ end
32
+ end
33
+
34
+ def resource_directories
35
+ @resource_directories ||= motion_config.resources_dirs
15
36
  end
16
37
 
17
38
  # Writes a new ib.xcodeproj to the provided `#project_path`.
@@ -44,7 +65,7 @@ class IB::Project
44
65
  end
45
66
 
46
67
  def generator
47
- @generator ||= IB::Generator.new(detect_platform)
68
+ @generator ||= IB::Generator.new(platform)
48
69
  end
49
70
 
50
71
  def resources
@@ -59,24 +80,7 @@ class IB::Project
59
80
  @pods ||= project.new_group("Pods")
60
81
  end
61
82
 
62
- def detect_platform
63
- # TODO: find a better way to detect platform
64
- if defined?(Motion::Project::Config)
65
- if Motion::Project::App.config.respond_to?(:platforms)
66
- return Motion::Project::App.config.platforms[0] == 'MacOSX' ? :osx : :ios
67
- end
68
- end
69
- return :ios
70
- end
71
-
72
- def app_files
73
- Motion::Project::App.config.files.select do |file|
74
- file =~ /^(\.\/)?app\//
75
- end
76
- end
77
-
78
83
  def setup_paths
79
- resources.path = File.join(project_path, 'resources')
80
84
  support_files.path = File.join(project_path, IB_PROJECT_NAME)
81
85
  pods.path = File.join(project_path, 'vendor/Pods/Headers')
82
86
  end
@@ -90,14 +94,17 @@ class IB::Project
90
94
  end
91
95
 
92
96
  def add_resources
93
- # First add reference to any asset catalogs.
94
- Dir.glob("#{resources.path}/**/*.xcassets") do |file|
95
- resources.new_reference(file)
96
- end
97
- # Add all other resources, ignoring files in existing asset catalogs
98
- Dir["#{resources.path}/**/*.{#{RESOURCE_EXTENSIONS.join(",")}}"]
99
- .reject {|f| f[%r{.*\.xcassets/.*}] }.each do |file|
100
- resources.new_reference(file)
97
+ resource_directories.each do |dir|
98
+ group = resources.new_group(File.basename(dir), dir)
99
+ # First add reference to any asset catalogs.
100
+ Dir.glob(File.join(dir, "**/*.xcassets")) do |file|
101
+ group.new_reference(File.basename(file))
102
+ end
103
+ # Add all other resources, ignoring files in existing asset catalogs
104
+ Dir.glob(File.join(dir, "**/*.{#{RESOURCE_EXTENSIONS.join(",")}}"))
105
+ .reject {|f| f[%r{.*\.xcassets/.*}] }.each do |file|
106
+ group.new_reference(File.basename(file))
107
+ end
101
108
  end
102
109
  end
103
110
 
@@ -1,15 +1,31 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  require 'rake' unless defined? Rake
3
3
 
4
- namespace :ib do
5
- desc "Generates ib.xcodeproj and opens it in XCode"
6
- task :open => :project do
7
- system "open ib.xcodeproj"
8
- end
4
+ module IB
5
+ class RakeTask
6
+ include Rake::DSL
7
+
8
+ def initialize
9
+ require 'ib/project'
10
+ @project = IB::Project.new
11
+ yield @project if block_given?
12
+ define_tasks
13
+ end
14
+
15
+ def define_tasks
16
+ namespace :ib do
17
+ desc "Generates ib.xcodeproj"
18
+ task :project do
19
+ @project.write
20
+ end
9
21
 
10
- desc "Generates ib.xcodeproj"
11
- task :project do
12
- IB::Project.new.write
22
+ desc "Generates ib.xcodeproj and opens it in XCode"
23
+ task :open => :project do
24
+ system "open ib.xcodeproj"
25
+ end
26
+ end
27
+ desc "Same as 'ib:open'"
28
+ task :ib => "ib:open"
29
+ end
13
30
  end
14
31
  end
15
- task :ib => "ib:open"
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module IB
3
- VERSION = '0.6.0'
3
+ VERSION = '0.7.0'
4
4
  end
@@ -4,7 +4,7 @@ require "ib/generator"
4
4
 
5
5
  describe IB::Generator do
6
6
  describe "generates stubs header with ios platform" do
7
- files = IB::Parser.new.find_all("spec/fixtures/common")
7
+ files = IB::Parser.new(:ios).find_all("spec/fixtures/common")
8
8
  stubs = IB::Generator.new(:ios).render_stub_file('generator/templates/Stubs.h.erb', files)
9
9
 
10
10
  it 'should output valid values from IB::Generator::RenderingHelpers and template file' do
@@ -65,7 +65,7 @@ OBJC
65
65
  end
66
66
 
67
67
  describe "generates stubs header with osx platform" do
68
- files = IB::Parser.new.find_all("spec/fixtures/common")
68
+ files = IB::Parser.new(:osx).find_all("spec/fixtures/common")
69
69
  stubs = IB::Generator.new(:osx).render_stub_file('generator/templates/Stubs.h.erb', files)
70
70
 
71
71
  it 'should output valid values from IB::Generator::RenderingHelpers and template file' do
@@ -77,7 +77,7 @@ OBJC
77
77
  #import <CoreData/CoreData.h>
78
78
  #import <Cocoa/Cocoa.h>
79
79
 
80
- @interface AppDelegate: UIResponder <UIApplicationDelegate>
80
+ @interface AppDelegate: NSObject <NSApplicationDelegate>
81
81
 
82
82
  @property IBOutlet UIWindow * window;
83
83
  @property IBOutlet UINavigationController * navigationController;
@@ -126,7 +126,7 @@ OBJC
126
126
  end
127
127
 
128
128
  describe "generates stubs implement" do
129
- files = IB::Parser.new.find_all("spec/fixtures/common")
129
+ files = IB::Parser.new(:ios).find_all("spec/fixtures/common")
130
130
  stubs = IB::Generator.new(:ios).render_stub_file('generator/templates/Stubs.m.erb', files)
131
131
 
132
132
  it 'should output valid values from IB::Generator::RenderingHelpers and template file' do
@@ -163,7 +163,7 @@ OBJC
163
163
 
164
164
  describe "generates stubs header with ios platform of dependency_test fixtures" do
165
165
  it 'should output definitions which sorterd by its own dependencies' do
166
- files = IB::Parser.new.find_all("spec/fixtures/dependency_test")
166
+ files = IB::Parser.new(:ios).find_all("spec/fixtures/dependency_test")
167
167
  stubs = IB::Generator.new(:ios).render_stub_file('generator/templates/Stubs.h.erb', files)
168
168
 
169
169
  stubs.should == <<-OBJC
@@ -212,7 +212,7 @@ OBJC
212
212
 
213
213
  describe "generates stubs header with ios platform of ProMotion's fixtures" do
214
214
  it 'should replace super_class from PM::* or ProMotion::* to UIViewController' do
215
- files = IB::Parser.new.find_all("spec/fixtures/for_promotion")
215
+ files = IB::Parser.new(:ios).find_all("spec/fixtures/for_promotion")
216
216
  stubs = IB::Generator.new(:ios).render_stub_file('generator/templates/Stubs.h.erb', files)
217
217
 
218
218
  stubs.should == <<-OBJC
@@ -4,7 +4,7 @@ require "ib/parser"
4
4
 
5
5
  describe IB::Parser do
6
6
  it "finds outlets and actions" do
7
- info = IB::Parser.new.find("spec/fixtures/common/custom_view.rb").first
7
+ info = IB::Parser.new(:ios).find("spec/fixtures/common/custom_view.rb").first
8
8
  info[:class].should == [["CustomView", "UIView"]]
9
9
  info[:outlets].should == [
10
10
  ["greenLabel", "UIGreenLabel"],
@@ -30,17 +30,17 @@ describe IB::Parser do
30
30
  end
31
31
 
32
32
  it "can parse complex superclasses" do
33
- info = IB::Parser.new.find("spec/fixtures/common/complex_superclass.rb")
33
+ info = IB::Parser.new(:ios).find("spec/fixtures/common/complex_superclass.rb")
34
34
  info.first[:class].should == [["HasComplexSuperClass", "Complex::SuperClass"]]
35
35
  info.last[:class].should == [["HasLessComplexSuperClass", "PM::Screen"]]
36
36
  end
37
37
 
38
38
  it "can output simple classes" do
39
- IB::Parser.new.find("spec/fixtures/common/simple_class.rb").length.should == 1
39
+ IB::Parser.new(:ios).find("spec/fixtures/common/simple_class.rb").length.should == 1
40
40
  end
41
41
 
42
42
  it "finds all infos" do
43
- infos = IB::Parser.new.find_all("spec/fixtures/dependency_test")
43
+ infos = IB::Parser.new(:ios).find_all("spec/fixtures/dependency_test")
44
44
  infos.values.each do |vals|
45
45
  vals.each do |v|
46
46
  expect(v).to be_kind_of(IB::OCInterface)
@@ -3,6 +3,9 @@ require "spec_helper"
3
3
  require "ib/project"
4
4
 
5
5
  describe IB::Project do
6
+ after do
7
+ Motion::Project::App.config = nil
8
+ end
6
9
 
7
10
  context 'structure' do
8
11
  let(:project) { described_class.new(project_path: 'spec/fixtures/common')}
@@ -35,10 +38,6 @@ describe IB::Project do
35
38
  it "defines #pods" do
36
39
  expect(project).to respond_to :pods
37
40
  end
38
-
39
- it "defines #detect_platform" do
40
- expect(project).to respond_to :detect_platform
41
- end
42
41
  end
43
42
 
44
43
  describe '#initialize' do
@@ -82,12 +81,36 @@ describe IB::Project do
82
81
  expect(project.platform).to eq :ios
83
82
  end
84
83
 
84
+ it 'defaults to the application platform' do
85
+ Motion::Project::App.config = Motion::Project::Config.new(:ios)
86
+ project = described_class.new
87
+ expect(project.platform).to eq :ios
88
+ Motion::Project::App.config = Motion::Project::Config.new(:osx)
89
+ project = described_class.new
90
+ expect(project.platform).to eq :osx
91
+ end
92
+
85
93
  it 'can be set from parameter' do
86
94
  project = described_class.new platform: :osx
87
95
  expect(project.platform).to eq :osx
88
96
  end
89
97
  end
90
98
 
99
+ describe '#resource_directories' do
100
+ it 'defaults to "resources"' do
101
+ project = described_class.new
102
+ expect(project.resource_directories).to eq ['resources']
103
+ end
104
+
105
+ it 'defaults to the application directories' do
106
+ config = Motion::Project::Config.new
107
+ config.resources_dirs << 'other_resources'
108
+ Motion::Project::App.config = config
109
+ project = described_class.new
110
+ expect(project.resource_directories).to eq ['resources', 'other_resources']
111
+ end
112
+ end
113
+
91
114
  describe '#app_files' do
92
115
  before do
93
116
  Motion::Project::App.config.stub('files').and_return(
@@ -6,16 +6,29 @@
6
6
  require 'ib'
7
7
 
8
8
  module Motion
9
- class Config
10
- def self.files
11
- []
9
+ module Project
10
+ class Config
11
+ attr_reader :files
12
+ attr_reader :resources_dirs
13
+
14
+ def initialize(platform = :ios)
15
+ @platform = platform
16
+ @files = []
17
+ @resources_dirs = ['resources']
18
+ end
19
+
20
+ def deploy_platform
21
+ @platform == :ios ? 'iPhoneOS' : 'MacOSX'
22
+ end
12
23
  end
13
- end
14
24
 
15
- module Project
16
25
  class App
17
- def self.config
18
- Motion::Config
26
+ class << self
27
+ attr_writer :config
28
+
29
+ def config
30
+ @config ||= Config.new
31
+ end
19
32
  end
20
33
  end
21
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yury Korolev
@@ -9,104 +9,104 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-09-08 00:00:00.000000000 Z
12
+ date: 2014-12-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: xcodeproj
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ~>
18
+ - - "~>"
19
19
  - !ruby/object:Gem::Version
20
20
  version: '0.17'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0.17'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: thor
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ~>
32
+ - - "~>"
33
33
  - !ruby/object:Gem::Version
34
34
  version: 0.15.4
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ~>
39
+ - - "~>"
40
40
  - !ruby/object:Gem::Version
41
41
  version: 0.15.4
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: tilt
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ~>
46
+ - - "~>"
47
47
  - !ruby/object:Gem::Version
48
48
  version: 1.4.1
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ~>
53
+ - - "~>"
54
54
  - !ruby/object:Gem::Version
55
55
  version: 1.4.1
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: rspec
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ~>
60
+ - - "~>"
61
61
  - !ruby/object:Gem::Version
62
62
  version: '2.0'
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ~>
67
+ - - "~>"
68
68
  - !ruby/object:Gem::Version
69
69
  version: '2.0'
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: rake
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - '>='
74
+ - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  type: :development
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - '>='
81
+ - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: guard-rspec
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - '>='
88
+ - - ">="
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  type: :development
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - '>='
95
+ - - ">="
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: guard-bundler
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - '>='
102
+ - - ">="
103
103
  - !ruby/object:Gem::Version
104
104
  version: '0'
105
105
  type: :development
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - '>='
109
+ - - ">="
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  description: Magic rubymotion ib outlets support
@@ -118,9 +118,9 @@ executables:
118
118
  extensions: []
119
119
  extra_rdoc_files: []
120
120
  files:
121
- - .gitignore
122
- - .rspec
123
- - .travis.yml
121
+ - ".gitignore"
122
+ - ".rspec"
123
+ - ".travis.yml"
124
124
  - Gemfile
125
125
  - Gemfile.lock
126
126
  - Guardfile
@@ -174,17 +174,17 @@ require_paths:
174
174
  - lib
175
175
  required_ruby_version: !ruby/object:Gem::Requirement
176
176
  requirements:
177
- - - '>='
177
+ - - ">="
178
178
  - !ruby/object:Gem::Version
179
179
  version: '0'
180
180
  required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  requirements:
182
- - - '>='
182
+ - - ">="
183
183
  - !ruby/object:Gem::Version
184
184
  version: '0'
185
185
  requirements: []
186
186
  rubyforge_project:
187
- rubygems_version: 2.0.3
187
+ rubygems_version: 2.0.14
188
188
  signing_key:
189
189
  specification_version: 4
190
190
  summary: Small portion of love to interface builder with rubymotion