sokobanrb 0.0.3 → 0.0.4

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/.gitignore CHANGED
@@ -1,5 +1,4 @@
1
1
  *.gem
2
- */**/*.swp
3
2
  .bundle
4
3
  Gemfile.lock
5
4
  pkg/*
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
Binary file
File without changes
Binary file
@@ -436,7 +436,7 @@ if __FILE__ == $0
436
436
 
437
437
 
438
438
 
439
- require File.dirname(__FILE__) + '/../lib/sokoban'
439
+ require File.dirname(__FILE__) + '/../lib/sokobanrb'
440
440
  #include Config1
441
441
  puts 'SHOW FFI?'
442
442
  Sokoban1::Config.detect
File without changes
File without changes
File without changes
@@ -4,7 +4,7 @@ $:.push File.expand_path("../lib", __FILE__)
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "sokobanrb"
7
- s.version = "0.0.3"
7
+ s.version = "0.0.4"
8
8
  s.authors = ["brownman"]
9
9
 
10
10
  s.email = ["ofer.shaham@gmail.com"]
Binary file
@@ -1,6 +1,6 @@
1
1
  require 'rubygems'
2
2
  require 'rspec'
3
- require File.dirname(__FILE__) + '/../lib/sokoban'
3
+ require File.dirname(__FILE__) + '/../lib/sokobanrb'
4
4
 
5
5
  #Spec::Runner.configure do |config|
6
6
  #config.mock_with :mocha
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
4
- require "rsokoban"
4
+ require "sokobanrb"
5
5
 
6
6
  require "test/unit"
7
7
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: sokobanrb
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.3
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - brownman
@@ -35,27 +35,25 @@ extra_rdoc_files: []
35
35
 
36
36
  files:
37
37
  - .gitignore
38
- - .rvmrc
38
+ - .rspec
39
+ - .rspec.swp
39
40
  - Gemfile
41
+ - OLD/lib2/sokobanrb.rb
42
+ - OLD/lib2/sokobanrb/version.rb
40
43
  - README
41
44
  - Rakefile
42
45
  - bin/.gears3.rb.swp
43
46
  - bin/.opengl_sokoban.rb.swp
44
47
  - bin/sokobanrb
45
- - lib/sokoban.rb
46
- - lib/sokoban/config.rb
47
- - lib/sokoban/game_engine.rb
48
- - lib/sokoban/render.rb
49
- - lib/sokoban/sokoban_levels.txt
50
- - lib/sokoban/sokoban_saved_game.yaml
48
+ - lib/sokobanrb.rb
49
+ - lib/sokobanrb/config.rb
50
+ - lib/sokobanrb/game_engine.rb
51
+ - lib/sokobanrb/render.rb
52
+ - lib/sokobanrb/sokoban_levels.txt
53
+ - lib/sokobanrb/sokoban_saved_game.yaml
51
54
  - sokobanrb.gemspec
52
- - sokobanrb/.gitignore
53
- - sokobanrb/Gemfile
54
- - sokobanrb/Rakefile
55
- - sokobanrb/lib/sokobanrb.rb
56
- - sokobanrb/lib/sokobanrb/version.rb
57
- - sokobanrb/sokobanrb.gemspec
58
- - spec/sokoban/board_spec.rb
55
+ - spec/.spec_helper.rb.swp
56
+ - spec/sokobanrb/board_spec.rb
59
57
  - spec/spec_helper.rb
60
58
  - test/sokoban/board_test.rb
61
59
  - test/sokoban/tc_moveable.rb
data/.rvmrc DELETED
@@ -1,3 +0,0 @@
1
- rvm use ruby-1.9.1-p376
2
- #it is possible to switch to use ruby 1.9.2 with ffi-opengl - if changing boolean switch: SHOW_FFI
3
-
@@ -1,4 +0,0 @@
1
- *.gem
2
- .bundle
3
- Gemfile.lock
4
- pkg/*
@@ -1,4 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- # Specify your gem's dependencies in sokobanrb.gemspec
4
- gemspec
@@ -1 +0,0 @@
1
- require 'bundler/gem_tasks'
@@ -1,20 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "sokobanrb/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "sokobanrb"
7
- s.version = Sokobanrb::VERSION
8
- s.authors = ["brownman"]
9
- s.email = ["ofer.shaham@gmail.com"]
10
- s.homepage = ""
11
- s.summary = %q{TODO: Write a gem summary}
12
- s.description = %q{TODO: Write a gem description}
13
-
14
- s.rubyforge_project = "sokobanrb"
15
-
16
- s.files = `git ls-files`.split("\n")
17
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
- s.require_paths = ["lib"]
20
- end