Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add move #13

Open
wants to merge 26 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
853470f
Added stroke defaults, callback spec
wasnotrice Apr 24, 2012
7f420d1
Added fill for oval
wasnotrice Apr 24, 2012
cc61fc9
Added fill to shape
wasnotrice Apr 24, 2012
a41cf32
Refactored shoes specs
wasnotrice Apr 16, 2012
958c3a2
Added style method to app
wasnotrice Apr 16, 2012
287c025
Added stroke spec for oval
wasnotrice Apr 16, 2012
bbd1e8a
Added style and paint modules
wasnotrice Apr 16, 2012
98e94cc
WIP: Adding style to SWT::SHAPE
wasnotrice Apr 16, 2012
a19b00d
Added SwtShoes native color, oval stroke
wasnotrice Apr 17, 2012
3443b4c
Added strokewidth to oval and line for Swt
wasnotrice Apr 17, 2012
a4bd706
Added app defaults for stroke and strokewidth
wasnotrice Apr 17, 2012
9be6d77
Made rake spec tasks include opts in RSPEC_OPTS
wasnotrice Apr 17, 2012
e77b488
Added Shape functionality, Line, Oval
wasnotrice Apr 21, 2012
102aa95
Added stroke defaults, callback spec
wasnotrice Apr 24, 2012
bee6a91
Added fill for oval
wasnotrice Apr 24, 2012
5181171
Added fill to shape
wasnotrice Apr 24, 2012
c2389b2
Use Swt.display
wasnotrice Apr 25, 2012
f087394
Animation
wasnotrice Apr 25, 2012
84ba0c9
Merge remote-tracking branch 'origin/master'
wasnotrice Apr 26, 2012
0d87993
Merge branch 'animate'
wasnotrice Apr 26, 2012
3c51c37
WIP: Move for oval, line, button
wasnotrice Apr 28, 2012
fa7b432
WIP: Adding move
wasnotrice May 10, 2012
57cba1f
Merge animate
wasnotrice May 10, 2012
7583d81
Add hash arg to Shoes::Animate
wasnotrice May 11, 2012
084936a
WIP: Add move
wasnotrice May 11, 2012
9767efd
Finish adding move
wasnotrice May 11, 2012
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ group :test do
end
gem "gherkin"
gem "cucumber"
gem "rspec", "~> 2.0"
gem "rspec"
gem "rake"
#gem "shoes-cucumber"
end
Expand Down
34 changes: 17 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,48 +3,48 @@ GEM
specs:
builder (3.0.0)
columnize (0.3.6)
cucumber (1.1.0)
cucumber (1.1.4)
builder (>= 2.1.2)
diff-lcs (>= 1.1.2)
gherkin (~> 2.5.0)
gherkin (~> 2.7.1)
json (>= 1.4.6)
term-ansicolor (>= 1.0.6)
diff-lcs (1.1.3)
facets (2.9.2)
facets (2.9.3)
ffi (1.0.11)
ffi (1.0.11-java)
gherkin (2.5.1)
gherkin (2.7.6)
json (>= 1.4.6)
gherkin (2.5.1-java)
gherkin (2.7.6-java)
json (>= 1.4.6)
guard (1.0.0)
ffi (>= 0.5.0)
thor (~> 0.14.6)
guard-rspec (0.6.0)
guard (>= 0.10.0)
json (1.6.1)
json (1.6.1-java)
json (1.6.5)
json (1.6.5-java)
linecache (0.46)
rbx-require-relative (> 0.0.4)
log4jruby (0.4.0)
rake (0.9.2)
rake (0.9.2.2)
rbx-require-relative (0.0.5)
rspec (2.6.0)
rspec-core (~> 2.6.0)
rspec-expectations (~> 2.6.0)
rspec-mocks (~> 2.6.0)
rspec-core (2.6.4)
rspec-expectations (2.6.0)
rspec (2.8.0)
rspec-core (~> 2.8.0)
rspec-expectations (~> 2.8.0)
rspec-mocks (~> 2.8.0)
rspec-core (2.8.0)
rspec-expectations (2.8.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.6.0)
rspec-mocks (2.8.0)
ruby-debug (0.10.4)
columnize (>= 0.1)
ruby-debug-base (~> 0.10.4.0)
ruby-debug-base (0.10.4)
linecache (>= 0.3)
ruby-debug-base (0.10.4-java)
swt (0.12)
term-ansicolor (1.0.6)
term-ansicolor (1.0.7)
thor (0.14.6)

PLATFORMS
Expand All @@ -59,6 +59,6 @@ DEPENDENCIES
guard-rspec
log4jruby
rake
rspec (~> 2.0)
rspec
ruby-debug
swt
8 changes: 0 additions & 8 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

A JRuby implementation of shoes

== Getting Started

rvm install jruby
gem install bundler
bundle install
./swing-shoooes testing/blank-window.rb
./swt-shoooes testing/blank-window.rb

==TODO:

Shoes Element Skeletons:
Expand Down
Loading