Skip to content

Commit

Permalink
Add features
Browse files Browse the repository at this point in the history
  • Loading branch information
ludo committed Sep 7, 2011
1 parent 135d503 commit 64c4e13
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 20 deletions.
21 changes: 11 additions & 10 deletions Gemfile
Expand Up @@ -2,21 +2,22 @@ source 'http://rubygems.org'


gem 'rails', '3.1.0' gem 'rails', '3.1.0'


gem 'jquery-rails' gem 'jquery-rails', '1.0.13'
gem 'json' gem 'json', '1.5.4'
gem 'mysql2' gem 'mysql2', '0.3.7'
gem 'rake', '0.9.2'


# Gems used only for assets and not required # Gems used only for assets and not required
# in production environments by default. # in production environments by default.
group :assets do group :assets do
gem 'sass-rails', " ~> 3.1.0" gem 'sass-rails', '3.1.0'
gem 'coffee-rails', "~> 3.1.0" gem 'coffee-rails', '3.1.0'
gem 'uglifier' gem 'uglifier', '1.0.3'
end end


group :test, :development do group :test, :development do
gem 'cucumber-rails' gem 'cucumber-rails', '1.0.2'
gem 'database_cleaner' gem 'database_cleaner', '0.6.7'
gem 'factory_girl' gem 'factory_girl_rails', '1.2.0'
gem 'rspec-rails' gem 'rspec-rails', '2.6.1'
end end
24 changes: 14 additions & 10 deletions Gemfile.lock
Expand Up @@ -65,6 +65,9 @@ GEM
execjs (1.2.4) execjs (1.2.4)
multi_json (~> 1.0) multi_json (~> 1.0)
factory_girl (2.1.0) factory_girl (2.1.0)
factory_girl_rails (1.2.0)
factory_girl (~> 2.1.0)
railties (>= 3.0.0)
ffi (1.0.9) ffi (1.0.9)
gherkin (2.4.18) gherkin (2.4.18)
json (>= 1.4.6) json (>= 1.4.6)
Expand Down Expand Up @@ -157,14 +160,15 @@ PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
coffee-rails (~> 3.1.0) coffee-rails (= 3.1.0)
cucumber-rails cucumber-rails (= 1.0.2)
database_cleaner database_cleaner (= 0.6.7)
factory_girl factory_girl_rails (= 1.2.0)
jquery-rails jquery-rails (= 1.0.13)
json json (= 1.5.4)
mysql2 mysql2 (= 0.3.7)
rails (= 3.1.0) rails (= 3.1.0)
rspec-rails rake (= 0.9.2)
sass-rails (~> 3.1.0) rspec-rails (= 2.6.1)
uglifier sass-rails (= 3.1.0)
uglifier (= 1.0.3)
15 changes: 15 additions & 0 deletions db/schema.rb
@@ -0,0 +1,15 @@
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 0) do

end
4 changes: 4 additions & 0 deletions features/hashtags.feature
@@ -0,0 +1,4 @@
Feature: Hashtags
In order to track what I talk about
As a Twitter User
I want to see a list of the hashtags that I use
4 changes: 4 additions & 0 deletions features/mentions.feature
@@ -0,0 +1,4 @@
Feature: Mentions
In order to know with who I communicate
As a Twitter User
I want to see a list of users that I mention
4 changes: 4 additions & 0 deletions features/spy.feature
@@ -0,0 +1,4 @@
Feature: Spy
In order to spy on my visitors
As an Evil Developer
I want to log every search

0 comments on commit 64c4e13

Please sign in to comment.