Skip to content

Commit

Permalink
A gem spec might be handy!
Browse files Browse the repository at this point in the history
  • Loading branch information
pushmatrix committed Jul 24, 2012
1 parent c63c8f1 commit 5d33ff5
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*DS_STORE
*DS_STORE
/Gemfile.lock
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gemspec
25 changes: 25 additions & 0 deletions allthethings.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Gem::Specification.new do |s|
s.name = 'allthethings'
s.version = '0.1.0'
s.date = '2012-07-24'
s.executables << 'att'


s.summary = "A simple & flexible framework for creating dashboards."
s.description = "An elegant, simple, beautiful, & flexible framework for creating dashboards."
s.authors = ["Daniel Beauchamp"]
s.email = '[email protected]'
s.files = ["lib/allthethings.rb"]
s.homepage = 'http://allthethings.shopify.com'

s.files = Dir['README.md', 'vendor/**/*', 'templates/**/*','templates/**/.[a-z]*', 'lib/**/*']

s.add_dependency('sass')
s.add_dependency('coffee-script')
s.add_dependency('sinatra')
s.add_dependency('sinatra-contrib')
s.add_dependency('thin')
s.add_dependency('rufus-scheduler')
s.add_dependency('thor')

end
3 changes: 3 additions & 0 deletions templates/project/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source :rubygems

gem 'allthethings', '0.1.0', :git => '[email protected]:Shopify/allthethings.git'

0 comments on commit 5d33ff5

Please sign in to comment.