appjam 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -4,6 +4,18 @@ Appjam is iphone app generator, which generate iphone app skeleton based on Pure
4
4
 
5
5
  for PureMVC framework, see http://trac.puremvc.org/PureMVC_ObjectiveC/
6
6
 
7
+ == Prerequisites
8
+
9
+ ==== Ruby
10
+
11
+ Appjam require ruby installed on your mac machine. Since now all Mac OSX system preinstalled ruby enviroment, that's not a big issue.
12
+
13
+ ==== Rubygem(latest)
14
+
15
+ Appjam has an dependency on "thor" gem , which require latest rubygem installed, so you need to update your rubygem to latest version, run command below to update your rubygem to the latest one.
16
+
17
+ $ gem update --system
18
+
7
19
  == Installation
8
20
 
9
21
  $ gem install appjam
data/lib/appjam.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'thread'
1
2
  require 'appjam/version.rb'
2
3
  require 'active_support'
3
4
 
@@ -2,7 +2,7 @@ module Appjam
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- PATCH = 1
5
+ PATCH = 2
6
6
  BUILD = ''
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.').chomp('.')
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appjam
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Eiffel Q