Skip to content

Commit 8a20377

Browse files
committed
Set up gemspec, version, and .travis.yml
1 parent c718915 commit 8a20377

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: ruby
2+
rvm:
3+
- 1.9.3
4+
- 2.0.0
5+
- 2.1.1
6+
- jruby-19mode
7+
- rbx-2
8+
- ruby-head
9+
env:
10+
- "RAILS_VERSION=3.2"
11+
- "RAILS_VERSION=4.0"
12+
- "RAILS_VERSION=4.1"
13+
- "RAILS_VERSION=master"
14+
matrix:
15+
allow_failures:
16+
- rvm: ruby-head
17+
- env: "RAILS_VERSION=master"
18+

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
require "bundler/gem_tasks"
22

3+
task :default

active_model_serializers.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
88
spec.version = ActiveModelSerializers::VERSION
99
spec.authors = ["Steve Klabnik"]
1010
spec.email = ["steve@steveklabnik.com"]
11-
spec.summary = %q{TODO: Write a short summary. Required.}
12-
spec.description = %q{TODO: Write a longer description. Optional.}
13-
spec.homepage = ""
11+
spec.summary = %q{Conventions-based JSON generation for Rails.}
12+
spec.description = %q{ActiveModel::Serializers allows you to generate your JSON in an object-oriented and convention-driven manner.}
13+
spec.homepage = "https://github.com/rails-api/active_model_serializers"
1414
spec.license = "MIT"
1515

1616
spec.files = `git ls-files -z`.split("\x0")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ActiveModelSerializers
2-
VERSION = "0.0.1"
2+
VERSION = "0.9.0"
33
end

0 commit comments

Comments
 (0)