Skip to content

Commit

Permalink
Switch to "fixme" style project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
copiousfreetime committed Oct 3, 2012
1 parent bb1497a commit a9b8414
Show file tree
Hide file tree
Showing 12 changed files with 646 additions and 692 deletions.
1 change: 1 addition & 0 deletions .rvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rvm use @amalgalite
45 changes: 45 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Hi there!

I see you are interested in contributing. That is wonderful. I love
contributions.

I guarantee that there are bugs in this software. And I guarantee that there is
a feature you want that is not in here yet. As such, any and all bugs reports
are gratefully accepted, bugfixes even more so. Helping out with bugs is the
easiest way to contribute.


## The Quick Version

* Have a [GitHub Account][].
* Search the [GitHub Issues][] and see if your issue already present. If so
add your comments, :thumbsup:, etc.
* Issue not there? Not a problem, open up a [new issue][].
* **Bug reports** please be as detailed as possible. Include:
* full ruby engine and version: `ruby -e 'puts RUBY_DESCRIPTION'`
* operating system and version
* version of fixme `ruby -e 'ruby -rubygems -e "require 'fixme'; puts Fixme::VERSION'`
* as much detail about the bug as possible so I can replicated it. Feel free
to link in a [gist][]
* **New Feature**
* What the new feature should do.
* What benefit the new feature brings to the project.
* Fork the [repo][].
* Create a new branch for your issue: `git checkout -b issue/my-issue`
* Lovingly craft your contribution:
* `rake develop` to get started, or if you prefer bundler `rake develop:using_bunder && bundle`.
* `rake test` to run tests
* Make sure that `rake test` passes. Its important, I said it twice.
* Add yourself to the contributors section below.
* Submit your [pull request][].

# Contributors

* Jeremy Hinegardner

[GitHub Account]: https://github.com/signup/free "GitHub Signup"
[GitHub Issues]: https://github.com/copiousfreetime/fixme/issues "Fixme Issues"
[new issue]: https://github.com/copiousfreetime/fixme/issues/new "New Fixme Issue"
[gist]: https://gist.github.com/ "New Gist"
[repo]: https://github.com/copiousfreetime/fixme "Fixme Repo"
[pull request]: https://help.github.com/articles/using-pull-requests "Using Pull Requests"
106 changes: 106 additions & 0 deletions Manifest.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
HISTORY.rdoc
LICENSE
README.rdoc
Rakefile
TODO.taskpaper
bin/amalgalite-pack
examples/a.rb
examples/blob.rb
examples/bootstrap.rb
examples/define_aggregate.rb
examples/define_function.rb
examples/fts3.rb
examples/gem-db.rb
examples/require_me.rb
examples/requires.rb
examples/schema-info.rb
ext/amalgalite/amalgalite3.c
ext/amalgalite/amalgalite3.h
ext/amalgalite/amalgalite3_blob.c
ext/amalgalite/amalgalite3_constants.c
ext/amalgalite/amalgalite3_database.c
ext/amalgalite/amalgalite3_requires_bootstrap.c
ext/amalgalite/amalgalite3_statement.c
ext/amalgalite/extconf.rb
ext/amalgalite/gen_constants.rb
ext/amalgalite/notes.txt
ext/amalgalite/sqlite3.c
ext/amalgalite/sqlite3.h
ext/amalgalite/sqlite3_options.h
ext/amalgalite/sqlite3ext.h
gemspec.rb
lib/amalgalite.rb
lib/amalgalite/aggregate.rb
lib/amalgalite/blob.rb
lib/amalgalite/boolean.rb
lib/amalgalite/busy_timeout.rb
lib/amalgalite/column.rb
lib/amalgalite/core_ext/kernel/require.rb
lib/amalgalite/csv_table_importer.rb
lib/amalgalite/database.rb
lib/amalgalite/function.rb
lib/amalgalite/index.rb
lib/amalgalite/memory_database.rb
lib/amalgalite/packer.rb
lib/amalgalite/paths.rb
lib/amalgalite/profile_tap.rb
lib/amalgalite/progress_handler.rb
lib/amalgalite/requires.rb
lib/amalgalite/schema.rb
lib/amalgalite/sqlite3.rb
lib/amalgalite/sqlite3/constants.rb
lib/amalgalite/sqlite3/database/function.rb
lib/amalgalite/sqlite3/database/status.rb
lib/amalgalite/sqlite3/status.rb
lib/amalgalite/sqlite3/version.rb
lib/amalgalite/statement.rb
lib/amalgalite/table.rb
lib/amalgalite/taps.rb
lib/amalgalite/taps/console.rb
lib/amalgalite/taps/io.rb
lib/amalgalite/trace_tap.rb
lib/amalgalite/type_map.rb
lib/amalgalite/type_maps/default_map.rb
lib/amalgalite/type_maps/storage_map.rb
lib/amalgalite/type_maps/text_map.rb
lib/amalgalite/version.rb
lib/amalgalite/view.rb
spec/aggregate_spec.rb
spec/amalgalite_spec.rb
spec/blob_spec.rb
spec/boolean_spec.rb
spec/busy_handler.rb
spec/data/iso-3166-country.txt
spec/data/iso-3166-schema.sql
spec/data/iso-3166-subcountry.txt
spec/data/make-iso-db.sh
spec/database_spec.rb
spec/default_map_spec.rb
spec/function_spec.rb
spec/integeration_spec.rb
spec/iso_3166_database.rb
spec/packer_spec.rb
spec/paths_spec.rb
spec/progress_handler_spec.rb
spec/requires_spec.rb
spec/rtree_spec.rb
spec/schema_spec.rb
spec/spec_helper.rb
spec/sqlite3/constants_spec.rb
spec/sqlite3/database_status_spec.rb
spec/sqlite3/status_spec.rb
spec/sqlite3/version_spec.rb
spec/sqlite3_spec.rb
spec/statement_spec.rb
spec/storage_map_spec.rb
spec/tap_spec.rb
spec/text_map_spec.rb
spec/type_map_spec.rb
spec/version_spec.rb
tasks/announce.rake
tasks/config.rb
tasks/distribution.rake
tasks/documentation.rake
tasks/extension.rake
tasks/rspec.rake
tasks/utils.rb
Loading

0 comments on commit a9b8414

Please sign in to comment.