restpack_activity 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cf52df6aecde80ecf559eb79e96052df069f71de
4
- data.tar.gz: aedeb4d4ee9d1000768068a1e3d4fffca9e63a6d
3
+ metadata.gz: 53efba83edf005114417206ae4bde20850c474bf
4
+ data.tar.gz: 6ad29dd7144c7c7af1052ff443ff481900466d5a
5
5
  SHA512:
6
- metadata.gz: 227d3558b3fea731cc24e77fc64543356d9350e0ece8ce048ee14fcbbdd3fbf275c2b4c19cb71d72019483d69d9118a211a50dbba6ddf34f8a4798bc9c491370
7
- data.tar.gz: df66d56d6ba512716e59c97b2199a1508f72a240e74e0d2f3aaaaf25d9cc93dec3d2acf6f94d5736e1bd1167dfc6df5a1a3d6ae65dce378b4c0789edc6019774
6
+ metadata.gz: 103112562ad21324f7f5b5a280df1f596007ff159b80412125fda1ee9432d16b33afdbc947b44a809ab9c12b1b805317e51bdff3da40dd2a00a4790f441885c2
7
+ data.tar.gz: a74ccd4c3ab6a6e59dc11a565abee3e2582097c724b6730a149c12c5fdf57a3f1d8fca1bf3720f5d64059163451df4f60ac7ec51d4ee2fea6e194f01108c1eff
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ script: bundle exec rake test
data/README.md CHANGED
@@ -1,29 +1,15 @@
1
- # RestpackActivity
1
+ # restpack_activity [![Build Status](https://api.travis-ci.org/RestPack/restpack_activity.png?branch=master)](https://travis-ci.org/RestPack/restpack_activity) [![Code Climate](https://codeclimate.com/github/RestPack/restpack_activity.png)](https://codeclimate.com/github/RestPack/restpack_activity) [![Dependency Status](https://gemnasium.com/RestPack/restpack_activity.png)](https://gemnasium.com/RestPack/restpack_activity)
2
2
 
3
- TODO: Write a gem description
3
+ A client gem to the RestPack Activity service
4
4
 
5
- ## Installation
5
+ ## Developer Environment Setup
6
6
 
7
- Add this line to your application's Gemfile:
7
+ ```
8
+ bundle install
9
+ ```
8
10
 
9
- gem 'restpack_activity'
11
+ ## Running Tests
10
12
 
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
16
-
17
- $ gem install restpack_activity
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
-
23
- ## Contributing
24
-
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
13
+ ```
14
+ rake test
15
+ ```
@@ -1,5 +1,5 @@
1
1
  module RestPack
2
2
  module Activity
3
- VERSION = "0.0.4"
3
+ VERSION = "0.0.5"
4
4
  end
5
5
  end
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency "restpack_activity_service", "~> 0.0.3"
21
+ spec.add_dependency "restpack_activity_service", "~> 0.0.8"
22
22
  spec.add_dependency "activemodel", "~> 4.0.0"
23
23
  spec.add_dependency "activesupport", "~> 4.0"
24
24
  spec.add_dependency "rest-client", "~> 1.6.7"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restpack_activity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gavin Joyce
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-06 00:00:00.000000000 Z
11
+ date: 2013-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: restpack_activity_service
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 0.0.3
19
+ version: 0.0.8
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 0.0.3
26
+ version: 0.0.8
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: activemodel
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -145,6 +145,7 @@ extra_rdoc_files: []
145
145
  files:
146
146
  - .gitignore
147
147
  - .rspec
148
+ - .travis.yml
148
149
  - Gemfile
149
150
  - LICENSE.txt
150
151
  - README.md