banister-texplay 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/CHANGELOG +5 -0
  2. data/README +1 -1
  3. data/README1st +1 -1
  4. data/Rakefile +3 -2
  5. data/lib/texplay.rb +1 -1
  6. metadata +14 -4
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ 2/9/09
2
+ version 0.2.1
3
+ * releasing a gem for TexPlay
4
+ * bumped version number so can add add gosu 0.7.14 dependency to github gem
5
+ * hopefully gem works on both github and rubyforge
1
6
  31/8/09
2
7
  version 0.2.0
3
8
  * added each iterator
data/README CHANGED
@@ -1,6 +1,6 @@
1
1
  INSTRUCTIONS
2
2
 
3
- TexPlay version 0.2.0
3
+ TexPlay version 0.2.1
4
4
 
5
5
  To compile TexPlay, ensure you are in the directory with the Rakefile and type:
6
6
  => rake
data/README1st CHANGED
@@ -1,6 +1,6 @@
1
1
  INSTRUCTIONS
2
2
 
3
- TexPlay version 0.2.0
3
+ TexPlay version 0.2.1
4
4
 
5
5
  *Ensure that ctexplay.so and gosu.so, and texplay.rb and texplay-contrib.rb are in the working directory for your project
6
6
  *require 'texplay' in your ruby program to access the TexPlay module
data/Rakefile CHANGED
@@ -38,12 +38,13 @@ end
38
38
  specification = Gem::Specification.new do |s|
39
39
  s.name = "texplay"
40
40
  s.summary = "TexPlay is a light-weight image manipulation framework for Ruby and Gosu"
41
- s.version = "0.2.0"
41
+ s.version = "0.2.1"
42
42
  s.date = "2009-09-02"
43
43
  s.author = "John Mair (banisterfiend)"
44
44
  s.email = 'jrmair@gmail.com'
45
45
  s.description = s.summary
46
46
  s.require_path = 'lib'
47
+ s.add_dependency("gosu",">=0.7.14")
47
48
  s.homepage = "http://banisterfiend.wordpress.com/2008/08/23/texplay-an-image-manipulation-tool-for-ruby-and-gosu/"
48
49
  s.has_rdoc = false
49
50
  s.files = ["Rakefile", "README", "CHANGELOG", "README1st",
@@ -51,7 +52,7 @@ specification = Gem::Specification.new do |s|
51
52
  FileList["src/*", "examples/*.rb", "examples/media/*"].to_a
52
53
 
53
54
  if RUBY_PLATFORM =~ /mswin/
54
- s.platform = Gem::Platform::WIN32
55
+ s.platform = Gem::Platform::CURRENT
55
56
  s.files += ["lib/ctexplay18.so", "lib/ctexplay19.so"]
56
57
 
57
58
  else
data/lib/texplay.rb CHANGED
@@ -10,7 +10,7 @@ require 'rbconfig'
10
10
  require 'gosu'
11
11
 
12
12
  module TexPlay
13
- TEXPLAY_VERSION = "0.2.0"
13
+ TEXPLAY_VERSION = "0.2.1"
14
14
 
15
15
  def self.on_setup(&block)
16
16
  raise "need a block" if !block
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: banister-texplay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Mair (banisterfiend)
@@ -11,8 +11,17 @@ cert_chain: []
11
11
 
12
12
  date: 2009-09-02 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: gosu
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.7.14
24
+ version:
16
25
  description: TexPlay is a light-weight image manipulation framework for Ruby and Gosu
17
26
  email: jrmair@gmail.com
18
27
  executables: []
@@ -30,6 +39,7 @@ files:
30
39
  - lib/texplay-contrib.rb
31
40
  has_rdoc: false
32
41
  homepage: http://banisterfiend.wordpress.com/2008/08/23/texplay-an-image-manipulation-tool-for-ruby-and-gosu/
42
+ licenses:
33
43
  post_install_message:
34
44
  rdoc_options: []
35
45
 
@@ -50,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
60
  requirements: []
51
61
 
52
62
  rubyforge_project:
53
- rubygems_version: 1.2.0
63
+ rubygems_version: 1.3.5
54
64
  signing_key:
55
65
  specification_version: 2
56
66
  summary: TexPlay is a light-weight image manipulation framework for Ruby and Gosu