metro 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -31,7 +31,7 @@ Or install it yourself as:
31
31
  ## Usage
32
32
 
33
33
  ```
34
- bundle exec metro [gamefilename]
34
+ metro [gamefilename]
35
35
  ```
36
36
 
37
37
  By default Metro will look for a file named 'metro' within the current working directory if no *gamefilename* has been provided.
data/changelog.md ADDED
@@ -0,0 +1,14 @@
1
+ # Metro
2
+
3
+ ## 0.1.1 / 2012-10-25
4
+
5
+ * FIX: Requiring the sender gem
6
+
7
+ ## 0.1.0 / 2012-10-25
8
+
9
+ * Better error handling for missing metro file and missing scene
10
+ * FIX: Scenes without Scene suffix will work again
11
+ * Gosu::Color supports creation with various formats: rgb, rgba, and hex
12
+ * Animations can be defined with class level helpers
13
+ * Removed Scene#events as Events can be defined at the class level
14
+ * Scenes and Models can generate custom notification events
data/lib/metro/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Metro
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  WEBSITE = "https://github.com/burtlo/metro"
4
4
  CONTACT_EMAILS = ["franklin.webber@gmail.com"]
5
5
 
data/lib/metro.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  require 'gosu'
2
2
  require 'gosu_ext/color'
3
+ require 'sender'
3
4
 
4
5
  require 'logger'
5
6
  require 'erb'
data/metro.gemspec CHANGED
@@ -49,5 +49,4 @@ Gem::Specification.new do |gem|
49
49
  ---------------------------------------------------------------------
50
50
  EOM
51
51
 
52
-
53
52
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -77,6 +77,7 @@ files:
77
77
  - README.md
78
78
  - Rakefile
79
79
  - bin/metro
80
+ - changelog.md
80
81
  - lib/gosu_ext/color.rb
81
82
  - lib/metro.rb
82
83
  - lib/metro/animation/animation.rb
@@ -117,12 +118,8 @@ licenses: []
117
118
  post_install_message: ! " ______ ___ _____\n ___ |/ /_____ __ /_______________\n
118
119
  \ __ /|_/ / _ _ \\_ __/__ ___/_ __ \\\n _ / / / / __// /_ _ / /
119
120
  /_/ /\n /_/ /_/ \\___/ \\__/ /_/ \\____/\n\n Thank you for installing
120
- metro 0.1.0 / 2012-10-25.\n ---------------------------------------------------------------------\n
121
- \ Changes:\n \n * Better error handling for missing metro file and missing scene\n
122
- \ * FIX: Scenes without Scene suffix will work again\n * Gosu::Color supports creation
123
- with various formats: rgb, rgba, and hex\n * Animations can be defined with class
124
- level helpers\n * Removed Scene#events as Events can be defined at the class level\n
125
- \ * Scenes and Models can generate custom notification events\n ---------------------------------------------------------------------\n"
121
+ metro 0.1.1 / 2012-10-25.\n ---------------------------------------------------------------------\n
122
+ \ Changes:\n \n * FIX: Requiring the sender gem\n \n\n ---------------------------------------------------------------------\n"
126
123
  rdoc_options: []
127
124
  require_paths:
128
125
  - lib