openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
I
IronRuby
Settings
|
Report Duplicate
3
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Inactive
Commits
: Listings
Analyzed
1 day
ago. based on code collected
1 day
ago.
Jun 08, 2024 — Jun 08, 2025
Showing page 51 of 69
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
- Array related fixes: o Array#== does not call #to_ary on its argument but it calls #to_a (it basically performs a conversion of the argument rather than casting it to a ruby array) o Array#zip calls #to_ary to cast the argument to an Array, therefore it overrides Enumerable#zip in which the argument is converted by calling #to_a.
Daniele Alessandri
More...
almost 16 years ago
Beginnings of "XAP-less" Silverlight application support.
Jimmy Schementi
More...
almost 16 years ago
- More fixes for String#unpack: o Fixed errors when unpacking data with 'Z' and '@' directives o Implemented 'Q' and 'q' directives
Daniele Alessandri
More...
almost 16 years ago
Default to Segoe UI in Silverlight, so fonts look closer to desktop. Fix newline/whitespace in SL.
Jimmy Schementi
More...
almost 16 years ago
- Implemented 'V' and 'v' directives for String#unpack. - Implemented 'B' and 'b' directives for String#unpack. - Cleared all the failing expectations in core/string related to an unthrown TypeError exception when calling in-place methods on frozen strings.
Daniele Alessandri
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Daniele Alessandri
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Shri Borde
More...
almost 16 years ago
More fixes to win32ole to get the ADO DBI driver working - Convert return values from DBNull to nil, from System::Decimal to String Also, removes support for indexed property syntax like excel.Workbooks[1]. Instead, like win32ole, you need to use excel.Worksheets(1) Added WIN32OLE#setproperty to set indexed properties like "worksheet.setproperty('Cells', i, j, value)"
Shri Borde
More...
almost 16 years ago
Ignore IronRuby.Tests.VS bin folder
Jimmy Schementi
More...
almost 16 years ago
first crack at the ironruby tutorial in Silverlight - design/TutorialSL ... needs to be merged with original - scripts for launching sl and wpf versions - refactor wpf_tutorial.rb into gui_tutorial.rb, and then wpf_tutorial.rb and sl_tutorial.rb launch in the respective technology - various tweaks to get SL working -- but doesn't have rich text yet - adds erb.rb and stringio.rb to Libs so SL can get them. - Tweak Chiron so it won't copy to test dir if not present - Tweak to RubyEncoding to utf-8 works in SL - Make sure console is loaded after the ScriptEngine - Make BrowserVirtualFilesytem.NormalizePath virtual so children can override it
Jimmy Schementi
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby.git
Jimmy Schementi
More...
almost 16 years ago
Build Silverlight.sln aliases (bsd/bsr), get Chiron building, and remove JS/TestConsoleHost from Silverlight.sln
Jimmy Schementi
More...
almost 16 years ago
syncing to head of tfs
Jim Deville
More...
almost 16 years ago
Add hosting of IronPython to hosting tutorial
Shri Borde
More...
almost 16 years ago
Converts COM interop tests to using win32ole. Hardly any changes were required! The only change required is that win32ole requires using parenthesis to access indexed properties, but the tests used square brackets. For now, I have added support to win32ole for square brackets instead of modifying the tests. Also, WIN32OLE_EVENT does not seem to have any way of unsubscribing from an event. adodb_spec has a weird failure only with non-managled names, and so I have left it using Type.GetTypeFromProgID for now
Shri Borde
More...
almost 16 years ago
Basic implementation of win32ole, building on top of IronRuby’s COM interop support. Simple samples work reasonably work. Features that work are: * Object instantiation with WIN32OLE.new * Calling methods, accessing properties * Converting Ruby type arguments (ie. String, Array, etc) to System.String, System.Array, etc * Enumeration via WIN32OLE#each * Accessing enum values from the type library via WIN32OLE.const_load
Shri Borde
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Ivan Porto Carrero
More...
almost 16 years ago
Implement StringIO#ungetc which is used in ActiveSupport Changes irtests.rb to print total time in minutes. A full run takes 45 mins on my machine, which is faster than before even though we have added Rake tests! Undo my change to paths in RakeTests.rb
Shri Borde
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Shri Borde
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Jimmy Schementi
More...
almost 16 years ago
syncing to head of tfs
Jim Deville
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Shri Borde
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Jimmy Schementi
More...
almost 16 years ago
Module#autoload call should be ignored if the constant is defined. Without this, a class definition was being lost if autoload was called after the class definition was executed (timeObj == "string") should return nil. It was throwing TypeError because method overload resolution was finding System.DateTime.op_Equality. Throwing a TypeError is ok for .NET types with strongly typed op_Equality, but not for those types that represent Ruby types. Fix typo in multi-line regex in YAML engine causing incorrect parsing of Time yaml strings
Shri Borde
More...
almost 16 years ago
syncing to head of tfs
Jim Deville
More...
almost 16 years ago
syncing to head of tfs
Jim Deville
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Daniele Alessandri
More...
almost 16 years ago
Merge branch 'master' of git://github.com/ironruby/ironruby
Ivan Porto Carrero
More...
almost 16 years ago
add the correct raketests to the repo
Jim Deville
More...
almost 16 years ago
Fix bug in LightLambda.CreateCustomDelegate - it was not dealing with valuetype arguments. Partial implementation of Kernel#test Effectively call Thread.critical=false when a thread exits after having done Thread.critical=true. monitor.rb in the standard library uses this pattern Adds support for YAML::Omap (used in ActiveRecord) by doing "require 'yaml/types.rb'" in our yaml.rb Changes path in RakeTests.rb Deletes redist-libs/ruby/site_ruby/1.8/ubygems.rb which seems like it was added by mistake
Shri Borde
More...
almost 16 years ago
←
1
2
…
47
48
49
50
51
52
53
54
55
…
68
69
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree