metro 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +1 -1
- data/changelog.md +14 -0
- data/lib/metro/version.rb +1 -1
- data/lib/metro.rb +1 -0
- data/metro.gemspec +0 -1
- metadata +4 -7
data/README.md
CHANGED
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
data/lib/metro.rb
CHANGED
data/metro.gemspec
CHANGED
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.
|
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.
|
121
|
-
\ Changes:\n \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
|